.home-image {
    max-width: 500px;
    display: block;
    margin: 8rem auto 0;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  background-color: #f9f9f9;
  direction: rtl;
  text-align: right;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.6rem;
}

h1 { font-size: 4.2rem; }
h2 { font-size: 3.4rem; }
h3 { font-size: 2.6rem; }
h4 { font-size: 2.0rem; }

p {
  margin-bottom: 1.8rem;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #004080;
}

/* ==========================================================================
   Container & Grid
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  /* padding: 1.5rem 0; */
}

.branding {
  text-align: center;
  margin-bottom: 1.5rem;
}

.site-title a {
  font-size: 3.8rem;
  color: #1a3c6d;
  font-weight: 900;
}

.site-description {
  font-size: 1.5rem;
  color: #666;
  margin-top: 0.5rem;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-navigation a {
  font-size: 1.7rem;
  font-weight: 500;
  color: #333;
  padding: 0.8rem 1.2rem;
  transition: all 0.2s;
}

.main-navigation a.nav-item:hover,
.main-navigation .current-menu-item > a {
  color: #0066cc;
  background: rgba(0, 102, 204, 0.08);
  border-radius: 6px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  background: linear-gradient(135deg, #e6f0ff 0%, #f0f7ff 100%);
  padding: 4rem 0 6rem;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  max-width: 1000px;
  margin: 0 auto 5rem;
  color: #1a3c6d;
  line-height: 1.5;
}

.hero-subtitle {
  font-size: 2.2rem;
  color: #555;
  margin-bottom: 4rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: #0066cc;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #0055aa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.btn-outline {
  background: transparent;
  border: 2px solid #0066cc;
  color: #0066cc;
}

.btn-outline:hover {
  background: #0066cc;
  color: white;
}

/* ==========================================================================
   Section Titles & Content
   ========================================================================== */

.section-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 3rem;
  color: #1a3c6d;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 300px;
  height: 1px;
  background: #1a3c6d;
  margin: 1rem auto 4rem;
  border-radius: 2px;
}

.overview-section {
  margin: 8rem auto;
  border-bottom: 1px solid #cccccc;
  width: 1100px;
}

.theory-section {
  margin: 8rem auto;
  border-bottom: 1px solid #cccccc;
  width: 1100px;
}
.iranian-music-section {
  margin: 8rem auto;
  border-bottom: 1px solid #cccccc;
  width: 1100px;
}

.overview-section p,
.theory-section p,
.iranian-music-section p {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.8rem;
  color: #444;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #1a3c6d;
  color: white;
  padding: 5rem 0 3rem;
  margin-top: 6rem;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.widget h4 {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
}

.widget ul {
  list-style: none;
}

.widget a {
  color: #d0e0ff;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.widget a:hover {
  color: white;
}

.site-info {
  text-align: center;
  font-size: 1.5rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 3rem;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 992px) {
  .hero-title   { font-size: 3.8rem; }
  .hero-subtitle { font-size: 2rem; }
  h1 { font-size: 3.6rem; }
  h2 { font-size: 3rem; }
  h3 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-section {
    padding: 7rem 0 5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
}



/* ==========================================================================
   Site Logo
   ========================================================================== */



.logo-link {
    display: block;
    margin-bottom: 0.8rem;
}

.site-logo {
    max-width: 60px;           /* اندازه دلخواه - می‌توانی تغییر بدهی */
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 50px;
    }
}


/* ==========================================================================
   hero-image
   ========================================================================== */


.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #3399ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    margin-bottom: 4rem;
}


/* ==========================================================================
   ==========================================================================
   ==========================================================================
   ==========================================================================
   ========================================================================== */


   /* ==========================================================================
   Articles Page
   ========================================================================== */

.articles-section {
    padding: 6rem 0 8rem;
    background: #f9f9f9;
}

.page-title {
    text-align: center;
    font-size: 4.2rem;
    color: #1a3c6d;
    margin-bottom: 2.5rem;
}

.page-intro {
    text-align: center;
    font-size: 1.9rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 4.5rem;
}

.articles-list {
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.article-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2.5rem;
    margin-bottom: 3rem;
    transition: transform 0.25s ease;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.article-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.article-title a {
    color: #1a3c6d;
    text-decoration: none;
}

.article-title a:hover {
    color: #0066cc;
}

.article-excerpt {
    font-size: 1.7rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-meta {
    font-size: 1.4rem;
    color: #777;
    display: block;
}

/* صفحه‌بندی اگر لازم باشد */
.pagination {
    text-align: center;
    margin-top: 4rem;
}

.pagination a, .pagination span {
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    background: #e6f0ff;
    color: #0066cc;
    border-radius: 6px;
    text-decoration: none;
}

.pagination .current {
    background: #0066cc;
    color: white;
}

.pagination a:hover {
    background: #0055aa;
    color: white;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .page-title { font-size: 3.4rem; }
    .article-title { font-size: 2.4rem; }
    .article-excerpt { font-size: 1.6rem; }
    .article-item { padding: 2rem; }
}


/* ==========================================================================
   Articles Filter
   ========================================================================== */

.articles-filter {
    padding: 3rem 0 4rem;
    background: #f9f9f9;
}

.filter-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 102, 204, 0.06);
    padding: 3rem 2.5rem;
    border: 1px solid #e8f0ff;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    max-width: 1100px;
    margin: 0 auto;
}

.filter-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 102, 204, 0.12);
    border-color: #cce0ff;
}

/* خط رنگی بالای کارت (برای جذابیت و تمایز) */
.filter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0066cc, #3399ff);
    opacity: 0.95;
}

.filter-title {
    font-size: 2.6rem;
    color: #1a3c6d;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem 2rem;
}

.filter-btn {
    font-size: 1.7rem;
    font-weight: 500;
    font-family:  'Vazirmatn', system-ui, -apple-system, sans-serif;
    padding: 1.2rem 2.6rem;
    border: 2px solid #0066cc;
    background: transparent;
    color: #0066cc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.08);
}

.filter-btn:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.filter-btn.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.3);
}

/* رسپانسیو */
@media (max-width: 768px) {
    .filter-card {
        padding: 2.2rem 1.8rem;
    }
    
    .filter-title {
        font-size: 2.2rem;
    }
    
    .filter-buttons {
        gap: 1rem 1.5rem;
    }
    
    .filter-btn {
        font-size: 1.6rem;
        padding: 1rem 2rem;
    }
}





/* 
  =========================================================================================================
  =========================================================================================================
  =========================================================================================================
  =========================================================================================================
*/


/* ==========================================================================
   Article with Thumbnail & Tags
   ========================================================================== */

.article-item {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,102,204,0.06);
    padding: 2.5rem;
    margin-bottom: 3.5rem;
    transition: all 0.35s ease;
    border: 1px solid #e8f0ff;
    gap: 2.5rem;
}

.article-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 20px rgba(0,102,204,0.12);
}

.article-thumbnail {
    flex: 0 0 280px; /* عرض ثابت برای عکس */
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-tags {
    margin: 1.2rem 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    font-size: 1.3rem;
    padding: 0.6rem 1.4rem;
    background: #e6f0ff;
    color: #0066cc;
    border-radius: 30px;
    font-weight: 500;
}

/* رسپانسیو - در موبایل عکس بالای متن */
@media (max-width: 768px) {
    .article-item {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .article-thumbnail {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .article-tags {
        gap: 0.8rem;
    }
    
    .tag {
        font-size: 1.25rem;
        padding: 0.5rem 1.2rem;
    }
}

.article-date {
  width: 100%;
  text-align: end;
}



/* ==========================================================================
   About Section - 9 کارت زیبا
   ========================================================================== */

.about-section {
    padding: 6rem 0 8rem;
    background: #f9f9f9;
}

.page-title {
    text-align: center;
    font-size: 4.2rem;
    color: #1a3c6d;
    margin-bottom: 1.5rem;
}

.about-us-page-intro {
    text-align: justify;
    font-size: 1.9rem;
    color: #555;
    max-width: 1000px;
    margin: 0 auto 5rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.08),
        0 4px 10px rgba(0,102,204,0.06);
    padding: 2.8rem 2.2rem;
    border: 1px solid #e8f0ff;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 8px 20px rgba(0,102,204,0.12);
    border-color: #cce0ff;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #3399ff);
}

.card-title {
    font-size: 2.2rem;
    
    /* font-family:  'Vazirmatn', system-ui, -apple-system, sans-serif; */
    color: #1a3c6d;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 1rem;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0066cc;
    border-radius: 2px;
}

.about-card p {
    font-size: 1.65rem;
    color: #444;
    line-height: 1.85;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .page-title { font-size: 3.4rem; }
    .page-intro { font-size: 1.7rem; }
    .about-card { padding: 2.2rem 1.8rem; }
    .card-title { font-size: 2rem; }
}



/* ==========================================================================
   Accordion - دقیقاً شبیه عکس نمونه
   ========================================================================== */

.about-section {
    padding: 6rem 0 8rem;
    background: #f9f9f9;
}

.page-title {
    text-align: center;
    font-size: 4.2rem;
    color: #1a3c6d;
    margin-bottom: 1.5rem;
}

.page-intro {
    text-align: center;
    font-size: 1.9rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 5rem;
    line-height: 1.8;
}

.accordion {
    max-width: 1100px;
    margin: 0 auto;
}

.accordion-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-bottom: 1.8rem;
    overflow: hidden;
    border: 1px solid #e8f0ff;
}

.accordion-header {
    width: 100%;
    padding: 1.8rem 2.5rem;
    background: #ffffff;
    border: none;
    text-align: right;
    font-size: 2.1rem;
    font-weight: 600;
    font-family:  'Vazirmatn', system-ui, -apple-system, sans-serif;
    color: #1a3c6d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f0f7ff;
}

.header-icon {
    font-size: 2.4rem;
    margin-left: 1.2rem;
    min-width: 40px;
    text-align: center;
}

.accordion-toggle {
    font-size: 3rem;
    font-weight: bold;
    color: #0066cc;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2.5rem;
    background: #fafcff;
    transition: max-height 0.45s ease, padding 0.3s ease;
    font-size: 1.7rem;
    color: #444;
    line-height: 1.9;
}

.accordion-content p {
    margin: 2rem 0;
}

/* وقتی باز است */
.accordion-item.active .accordion-content {
    padding: 2rem 2.5rem;
    max-height: 800px; /* مقدار بزرگ برای محتواهای طولانی */
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}



/* ==========================================================================
   Single Article Page
   ========================================================================== */

.single-article {
    padding: 5rem 0 8rem;
    background: #f9f9f9;
}

.article-main-title {
    font-size: 4.2rem;
    color: #1a3c6d;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-meta {
    font-size: 1.5rem;
    color: #777;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.featured-image {
    margin-bottom: 3.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    font-size: 1.8rem;
    line-height: 2;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 3rem;
    color: #1a3c6d;
    margin: 3rem 0 1.5rem;
}

.article-body h3 {
    font-size: 2.4rem;
    margin: 2.5rem 0 1.2rem;
}

.article-body blockquote {
    border-right: 5px solid #0066cc;
    padding-right: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #555;
    background: #f0f7ff;
    padding: 2rem;
    border-radius: 8px;
}

.article-tags {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    font-size: 1.4rem;
    padding: 0.7rem 1.6rem;
    background: #e6f0ff;
    color: #0066cc;
    border-radius: 30px;
}

.back-to-list {
    text-align: center;
    margin-top: 4rem;
}



/* ==========================================================================
   Comments Section
   ========================================================================== */

.comments-section {
    padding: 5rem 0 7rem;
    /* background: #ffffff; */
    /* border-top: 1px solid #e0e0e0; */
}

.comments-title {
    font-size: 3.2rem;
    color: #1a3c6d;
    margin-bottom: 3rem;
    text-align: center;
}

.comments-list {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.comment-item, .comment-reply {
    background: #f9fcff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-right: 5px solid #0066cc;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: #555;
}

.comment-author {
    font-weight: 600;
    color: #1a3c6d;
}

.comment-date {
    font-size: 1.4rem;
}

.comment-text {
    font-size: 1.7rem;
    line-height: 1.9;
    color: #333;
}

.reply-btn {
    background: transparent;
    border: 1px solid #0066cc;
    color: #0066cc;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.25s;
}

.reply-btn:hover {
    background: #0066cc;
    color: white;
}

.comment-reply {
    margin-right: 4rem;
    border-right-color: #3399ff;
    background: #f0f7ff;
}

.comment-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 2.6rem;
    color: #1a3c6d;
    margin-bottom: 2rem;
    text-align: center;
}

.comment-form {
    display: grid;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #444;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.6rem;
    font-family: 'Vazirmatn', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.required {
    color: #d32f2f;
}

.form-note {
    text-align: center;
    font-size: 1.4rem;
    color: #777;
    margin-top: 1.5rem;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .comments-section { padding: 4rem 0 6rem; }
    .comment-item, .comment-reply { padding: 1.6rem; }
    .comment-reply { margin-right: 2rem; }
}

/* ==========================================================================
   Related Articles Section
   ========================================================================== */

.related-articles {
    padding: 5rem 0 7rem;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.related-title {
    text-align: center;
    font-size: 3.2rem;
    color: #1a3c6d;
    margin-bottom: 3.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,102,204,0.06);
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #e8f0ff;
}

.related-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 20px rgba(0,102,204,0.12);
    border-color: #cce0ff;
}

.related-thumbnail {
    height: 220px;
    overflow: hidden;
}

.related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-item:hover .related-image {
    transform: scale(1.08);
}

.related-content {
    padding: 2rem;
}

.related-article-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.related-article-title a {
    color: #1a3c6d;
    text-decoration: none;
}

.related-article-title a:hover {
    color: #0066cc;
}

.related-excerpt {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-tags {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.related-tags .tag {
    font-size: 1.3rem;
    padding: 0.5rem 1.2rem;
    background: #e6f0ff;
    color: #0066cc;
    border-radius: 20px;
}

.related-meta {
    font-size: 1.4rem;
    color: #777;
    display: block;
}

/* رسپانسیو */
@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .related-thumbnail {
        height: 200px;
    }
}