body {
    font-family: vazir;
    margin: 0;
    background-color: #dfe2e6;
    color: #222;
  }
  
  /* بخش اصلی خبر */
  #single_blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*padding: 20px;*/
  }
  
  .blog_post {
    width: calc(100% - 60px);
    max-width: 1400px;
    background: #dfe2e6;
    padding: 30px;
    /*border-radius: 14px;*/
   /* box-shadow: 0px -10px 15px rgba(0, 0, 0, 0.08);*/
  }
  
  /* عنوان خبر */
  .blog_title {
    font-size: 32px;
    font-weight: 700;
    color: #FF6A00;
    margin: 12px auto;
  }
  
  /* اطلاعات متا */
  .meta_info {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  /* تصویر با نسبت 16:9 */
  .thumb_wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 9/16 */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
  }
  .blog_cover {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  
  /* متن اصلی */
  .blog_content p {
    font-size: 17px;
    margin-bottom: 18px;
    text-align: justify;
  }
  
  /* نقل قول */
  .blog_content blockquote {
    border-right: 4px solid #FF6A00;
    padding: 10px 20px;
    margin: 25px 0;
    background: #fdf1e6;
    font-style: italic;
    color: #444;
    border-radius: 8px;
  }

  .blog_content{
    line-height: 1.9;

  }
  
  /* ریسپانسیو */
  @media (max-width: 768px) {
    .blog_post {
      width: calc(100% - 40px);
      padding: 20px;
    }
    .blog_title {
      font-size: 24px;
    }
    .blog_content p {
      font-size: 15px;
    }
    h1.blog_title {
      font-size: 30px;
    }
  }
  @media (max-width: 450px) {
    .blog_content p {
      font-size: 13px;
    }
    h1.blog_title {
      font-size: 25px;
    }
  }
  #content:not(.p_ad){
      width: 100%;
  }
  #head{
      height: 70px;
  }