/* ========================================
   ARTICLES - HOME PAGE LAYOUT - MAXIMIZED
   ======================================== */

.home-articles {
  display: flex;
  margin: 10px;
  justify-content: space-between;
  margin-top: -12px;
  height: 87vh;
  gap: 12px;
}

.articleList {
  display: flex;
  flex-direction: column;
  width: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  padding: 0;
}

.article-section-latest {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.article-section-latest h2 {
  margin: 10px 0 15px 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.article-section-latest .article {
  min-height: 80%;
  height: 80%;
}

/* Compact Square Layout for Side Sections - MAXIMIZED */
.article-section-side {
  width: 270px;
  margin-right: 30px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  font-size: 0.8rem;
  unicode-bidi: normal !important;
}

/* Most Liked Section - Grid Layout MAXIMIZED */
.article-section-like {
  width: 100%;
  flex: 1; /* Take equal space */
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 0.6fr; /* More space for main article */
  gap: 6px; /* Reduced gap */
  unicode-bidi: normal !important;
}

.article-section-like h2 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 4px 0; /* Reduced margin */
  text-align: center;
  padding: 4px 0; /* Minimal padding */
}

.article-section-like .article:nth-child(2) {
  grid-column: 1 / -1; /* First article spans full width */
  grid-row: 2;
  margin: 0;
  min-height: auto; /* Let grid control height */
}

.article-section-like .article:nth-child(3) {
  grid-column: 1; /* Second article bottom left */
  grid-row: 3;
  margin: 0;
  min-height: auto;
}

.article-section-like .article:nth-child(4) {
  grid-column: 2; /* Third article bottom right */
  grid-row: 3;
  margin: 0;
  min-height: auto;
}

/* Most Commented Section - Grid Layout MAXIMIZED */
.article-section-comment {
  width: 100%;
  flex: 1; /* Take equal space */
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 0.6fr; /* More space for main article */
  gap: 6px; /* Reduced gap */
  unicode-bidi: normal !important;
}

.article-section-comment h2 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 4px 0; /* Reduced margin */
  text-align: center;
  padding: 4px 0; /* Minimal padding */
}

.article-section-side .article-section-like .article,
.article-section-side .article-section-comment .article {
  min-height: 80px; /* Ensure articles have a minimum height */
}

.article-section-comment .article:nth-child(2) {
  grid-column: 1 / -1; /* First article spans full width */
  grid-row: 2;
  margin: 0;
}

.article-section-comment .article:nth-child(3) {
  grid-column: 1; /* Second article bottom left */
  grid-row: 3;
  margin: 0;
}

.article-section-comment .article:nth-child(4) {
  grid-column: 2; /* Third article bottom right */
  grid-row: 3;
  margin: 0;
}

/* MAXIMIZED content styling for better space usage */
.article-section-like .article .article-content,
.article-section-comment .article .article-content {
  padding: 0.8rem; /* Reduced from 2rem */
}

/* Main articles (2nd child) - larger content */
.article-section-like .article:nth-child(2) .article-content,
.article-section-comment .article:nth-child(2) .article-content {
  padding: 1rem;
}

.article-section-like .article:nth-child(2) .article-content h2,
.article-section-comment .article:nth-child(2) .article-content h2 {
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

/* Smaller articles (3rd & 4th child) - compact content */
.article-section-like .article:nth-child(n + 3) .article-content,
.article-section-comment .article:nth-child(n + 3) .article-content {
  padding: 0.6rem; /* Very compact */
}

.article-section-like .article:nth-child(n + 3) .article-content h2,
.article-section-comment .article:nth-child(n + 3) .article-content h2 {
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.article-section-like .article:nth-child(n + 3) .preview,
.article-section-comment .article:nth-child(n + 3) .preview {
  line-height: 1.2;
  margin: 0.2rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-section-like .article:nth-child(n + 3) small,
.article-section-comment .article:nth-child(n + 3) small {
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.article-section-like .article:nth-child(n + 3) .read-more,
.article-section-comment .article:nth-child(n + 3) .read-more {
  padding: 0.2rem 0.4rem; /* Tiny button */
  margin-top: 0.3rem;
}

/* Maximize main article content */
.article-section-latest .article .article-content {
  padding: 1.5rem; /* Slightly reduced from 2rem */
}

/* Optimize list articles */
.articleList li {
  padding: 3px; /* Reduced from 5px */
  margin-bottom: 3px; /* Reduced from 5px */
}

.article-list-item {
  padding: 3px; /* Reduced from 5px */
  margin-bottom: 3px; /* Reduced from 5px */
  text-align: center;
}

/* Adjust content padding for compact layout */
.article-section-side .article .article-content {
  padding: 1rem;
}

.article-section-side .article:not(:first-child) .article-content {
  padding: 0.75rem;
}

.article-section-side .article:not(:first-child) .article-content h2 {
  line-height: 1;
  margin-bottom: 0.25rem;
}

.article-section-side .article:not(:first-child) .preview {
  line-height: 1.3;
  margin: 0.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-section-side .article:not(:first-child) small {
  margin-bottom: 0.25rem;
}

.article-section-side .article:not(:first-child) .read-more {
  padding: 0.25rem 0.5rem;
}

.latest-featured .article {
  height: 250px;
  width: 300px;
  background-size: cover;
  border-radius: 12px;
}

/* Latest Articles Section */
.latest-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  margin: 0;
  width: 100%;
}

.latest-article-small {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-article-small:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.latest-article-main {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-article-main:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.latest-article-content {
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  padding: 1rem;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  height: 100%;
}

.latest-article-content h2 {
  text-align: start;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}

.latest-article-content small {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  word-wrap: break-word;
  font-size: 0.85rem;
  opacity: 0.9;
  display: block;
}

.latest-preview {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-read-more {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
  width: 110px;
}

.latest-read-more:hover {
  background: white;
  color: black;
}

/* Featured big card */
.latest-article-main {
  height: 450px;
  width: 500px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Smaller cards (grid 2 side by side) */
.latest-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.latest-article-small {
  height: 215px;
  width: 300px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.latest-grid .latest-article-content p {
  font-size: 0.75rem;
  line-height: 1.4;
}

.latest-article-small .latest-article-content h2 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.latest-article-small .latest-article-content small {
  font-size: 0.75rem;
  opacity: 0.9;
}

.latest-article-small .latest-article-content button {
  padding: 0.3rem 0.5rem;
  width: 90px;
  font-size: 0.75rem;
}

/* ========================================
   ARTICLE CARDS & CONTENT // Most Liked, Most Commented
   ======================================== */

.article {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  overflow-wrap: break-word;
}

.article::before {
  inset: 0;
  background: inherit;
  filter: blur(0px);
  z-index: 0;
}

.article:hover::before {
  filter: blur(5px);
}

.article {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.article:hover .preview {
  opacity: 1;
  visibility: visible;
}

.article-content {
  position: relative;
  color: white;
  padding: 2rem;
  width: 100%;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.8)
  );
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  transition: all 0.3s ease;
}

.article-content h2 {
  transform: translateY(10px);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.article:hover h2 {
  transform: translateY(0);
}

.article:hover .article-content {
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 1)
  );
}

.article-content small {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  word-wrap: break-word;
  opacity: 0.9;
}

.preview {
  opacity: 0;
  visibility: hidden;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: all 0.3s ease;
}

.read-more {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.read-more:hover {
  background: white;
  color: black;
}

/* ========================================
   ARTICLE VIEW PAGE // Most Popular, Most Liked, Most Commented
   ======================================== */

.article-view {
  display: flex;
  flex-direction: column;
}

.article-body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 105px;
}

.article-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  padding: clamp(1rem, 3%, 2rem);
  box-sizing: border-box;
}

.article-meta p {
  font-size: 0.7rem;
  color: #666;
}

.article-container h1 {
  margin-bottom: 0;
  text-align: center;
  font-weight: bolder;
}

.article-desc {
  text-indent: 50px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 30px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.article-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.article img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ========================================
   ARTICLE LIST ITEMS INSIDE ARTICLE VIEW PAGE
   ======================================== */

.article-list-item {
  padding: 5px;
  margin-bottom: 5px;
}

.article-list-item a,
.articleList li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
}

.article-list-item a:hover,
.articleList li a:hover {
  text-decoration: underline;
  color: maroon;
}

.article-list-item small,
.articleList li small {
  display: block;
  margin: 0.5rem 0;
  color: #1b1b1b;
}

/* ========================================
   ARTICLE VIEW SIDE PAGE
   ======================================== */

.article-article-section-side .article {
  margin-bottom: 10px;
}

.article-article-section-side .article-content {
  text-align: center;
}

.article-section-side .article-content {
  text-align: center;
}

.article.article-list-item {
  padding: 5px;
  margin-bottom: 5px;
}

.article.article-list-item a,
.article.articleList li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
}

.article.article-list-item a:hover,
.article.articleList li a:hover {
  text-decoration: underline;
  color: maroon;
}

.article.article-list-item small,
.article.articleList li small {
  display: block;
  margin: 0.5rem 0;
  color: #1b1b1b;
}

.article-image {
  max-height: 600px; /* pick your limit */
  width: auto; /* keeps the aspect ratio */
  height: auto; /* default, but makes the intent clear */
  display: block;
  border-radius: 4px;
  margin: 0 auto;
}

/* ========================================
   POPULAR ARTICLES ADDITIONS - APPEND TO EXISTING index.css
   ======================================== */

/* Responsive positioning for popular articles */




.popular-articles-section .container {
  text-align: center;
}

.section-title {
  font-size: 1rem;
  font-weight: bold;
}

.popular-articles-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(8px, 1.2%, 15px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}

/* Hide 6th article by default */
.popular-articles-grid .popular-article:nth-child(6) {
  display: none;
}

/* Hide 5th and 6th articles on medium screens */

@media (max-width: 1657px) {
  .popular-articles-grid .popular-article:nth-child(n+5) {
    display: none;
  }
  
  .popular-articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    max-width: 1000px;
  }
}

@media (max-width: 1440px) {
  .popular-articles-grid .popular-article:nth-child(n+5) {
    display: none;
  }
  
  .popular-articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    max-width: 1000px;
  }
}

/* Show only 3 articles on smaller screens */
@media (max-width: 1280px) {
  .popular-articles-grid .popular-article:nth-child(n+4) {
    display: none;
  }
  
  .popular-articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    max-width: 800px;
    gap: clamp(6px, 1%, 12px);
  }
}

.popular-article {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: all 0.3s ease;
  height: clamp(85px, 11vh, 115px);
  width: 100%;
  min-width: 140px;
}

.popular-article:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.popular-article-content {
  position: relative;
  color: white;
  padding: 0.5rem;
  width: 100%;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.8)
  );
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: all 0.3s ease;
}

.popular-article:hover .popular-article-content {
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 1)
  );
}

.popular-article-content h3 {
  font-size: 0.8rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.popular-article:hover h3 {
  transform: translateY(-5px);
}

.popular-preview {
  font-size: 0.5rem;
  margin-top: 0px;
  line-height: 1;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.popular-article:hover .popular-preview {
  opacity: 1;
}

.popularity-stats {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  display: inline-block;
  backdrop-filter: blur(4px);
}

.popularity-stats small {
  color: #fff;
  font-weight: bold;
  font-size: 0.5rem;
}

/* Article Section Popular (for article.php sidebar) */
.article-section-popular {
  width: 100%;
  flex: 1;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 0.6fr 0.6fr;
  gap: 5px;
  unicode-bidi: normal !important;
}

.article-section-popular h2 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 4px 0;
  text-align: center;
  padding: 4px 0;
}

.article-section-popular .article:nth-child(2) {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  min-height: auto;
}

.article-section-popular .article:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  min-height: auto;
}

.article-section-popular .article:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
  min-height: auto;
}

.article-section-popular .article:nth-child(5) {
  grid-column: 1;
  grid-row: 4;
  margin: 0;
  min-height: auto;
}

.article-section-popular .article:nth-child(6) {
  grid-column: 2;
  grid-row: 4;
  margin: 0;
  min-height: auto;
}

.article-content .popularity-stats {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  backdrop-filter: blur(2px);
}

.article-content .popularity-stats small {
  color: #fff;
  font-weight: bold;
  font-size: 0.65rem;
}

/* Compatibility fix for line-clamp */
.article-section-like .article:nth-child(n + 3) .preview,
.article-section-comment .article:nth-child(n + 3) .preview {
  line-clamp: 2;
}

.article-body {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 300px);
  gap: clamp(1rem, 3vw, 3rem);
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(0.5rem, 2%, 2rem);
}

/* ========================================
   RESPONSIVE FIXES FOR ZOOM & MEDIUM SCREENS
   ======================================== */

/* Desktop responsive scaling (1024px and above) */
@media (min-width: 1024px) {
  .home-articles {
    flex-wrap: wrap;
    margin: 0.5%;
    justify-content: center;
    margin-top: -0.5%;
    gap: 1%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .articleList {
    width: clamp(200px, 17vw, 300px);
    min-height: 70vh;
    max-height: 87vh;
    flex-shrink: 0;
  }
  
  .article-section-latest {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 1%;
  }
  
  .article-section-side {
    width: clamp(200px, 17vw, 280px);
    margin-right: 1.5%;
    min-height: 70vh;
    max-height: 87vh;
    font-size: clamp(0.7rem, 0.85vw, 0.8rem);
    flex-shrink: 0;
  }
  
  .latest-article-main {
    height: clamp(320px, 48vh, 480px);
    width: clamp(380px, 33vw, 550px);
  }
  
  .latest-article-small {
    height: clamp(170px, 23vh, 230px);
    width: clamp(230px, 19vw, 320px);
  }
  
  .latest-featured .article {
    height: clamp(190px, 28vh, 270px);
    width: clamp(230px, 19vw, 320px);
  }
  
  .latest-content {
    gap: clamp(8px, 1.2vw, 18px);
    flex-wrap: wrap;
  }
  
  .latest-grid {
    gap: clamp(10px, 1.5vw, 18px);
  }
}

/* Handle zoom levels and screens between 1024-1440px (150% zoom on 1920x1080) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .home-articles {
    gap: 0.5%;
    margin: 0.3%;
    height: auto;
    min-height: 85vh;
  }
  
  .articleList {
    width: 16vw;
    min-width: 200px;
    max-width: 220px;
    font-size: 0.75rem;
  }
  
  .article-section-side {
    width: 16vw;
    min-width: 200px;
    max-width: 220px;
    gap: 6px;
    margin-right: 0.5%;
  }
  
  .article-section-side h2 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .article-section-latest {
    padding: 0.5%;
  }
  
  .article-section-latest h2 {
    font-size: 1.2rem;
    margin: 6px 0 10px 0;
  }
  
  .latest-article-main {
    width: 30vw;
    min-width: 320px;
    max-width: 450px;
    height: 42vh;
    min-height: 280px;
  }
  
  .latest-article-small {
    width: 18vw;
    min-width: 200px;
    max-width: 280px;
    height: 20vh;
    min-height: 150px;
  }
  
  .latest-content {
    gap: 0.8vw;
  }
  
  .latest-grid {
    gap: 0.8vw;
  }
  
  .latest-article-content h2 {
    font-size: 1.1rem;
  }
  
  .latest-article-small .latest-article-content h2 {
    font-size: 0.9rem;
  }
  
  .article-content {
    padding: 1.2rem;
  }
  
  .article-content h2 {
    font-size: 0.9rem;
  }
  
  .article-section-side .article-content {
    padding: 0.8rem;
  }
}

/* More aggressive scaling for 175% zoom (desktop only) */
@media (min-width: 1024px) and (max-width: 1280px) {
  .home-articles {
    gap: 0.4%;
    margin: 0.2%;
  }
  
  .articleList {
    width: 15vw;
    min-width: 180px;
    max-width: 200px;
    font-size: 0.7rem;
  }
  
  .article-section-side {
    width: 15vw;
    min-width: 180px;
    max-width: 200px;
    gap: 4px;
  }
  
  .latest-article-main {
    width: 32vw;
    min-width: 300px;
    max-width: 420px;
    height: 38vh;
    min-height: 250px;
  }
  
  .latest-article-small {
    width: 20vw;
    min-width: 180px;
    max-width: 260px;
    height: 18vh;
    min-height: 130px;
  }
  
  .article-section-side h2,
  .article-section-latest h2 {
    font-size: 0.95rem;
  }
  
  .latest-article-content h2 {
    font-size: 1rem;
  }
  
  .latest-article-small .latest-article-content h2 {
    font-size: 0.85rem;
  }
  
  .popular-article-content h3 {
    font-size: 0.7rem;
  }
}
