.article-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 20px 40px; /* top | sides | bottom */
    box-sizing: border-box;  /* include padding in width */
}  

.article-header {
    text-align: left;      /* keep left-aligned */
    margin: 0 0 40px 0;    /* reset top/bottom margin */
    padding: 0;            /* ensure no extra padding */
  }

.article-meta {
  margin-bottom: 45px;
}  

.article-title {
  font-size: 3.5rem;
}  

.article-subtitle {
  margin-top: 60px;
}

.article-eyebrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0a2472;
    margin-top: 8px;
}

/* ==========================
   ARTICLE CONTENT
========================== */
  
  .article-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #444;
  }

  .article-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 1.25rem;
    color: #444;
  }
  

/* ==========================
   STATS
========================== */
.article-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 40px;
  }
  
  /* Card */
  .stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }
  
  /* Typography */
  .stat-card strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .stat-card span {
    font-size: 0.9rem;
    color: #6e6e73;
  }
  
  
/* ==========================
   IMAGE & CAPTION
========================== */
.article-figure {
  max-width: 700px;
  margin: 65px auto 20px; /* top | left/right | bottom */
}
  
  .article-figure img {
    width: 100%;
    display: block;
    border-radius: 16px;
  }
  
  /* Caption */
  .article-figure figcaption {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6e6e73;
    line-height: 1.4;
    max-width: 720px; /* keeps caption readable */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }    
  
  
/* ==========================
   QUOTATION
========================== */
  .quote {
    font-size: 1.25rem;
    font-style: italic;
    border-left: 4px solid #0a2472;
    margin: 2rem 0;
    padding-left: 1rem;
  }
  .quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
  }

/* ==========================
   More Stories Section
========================== */
.more-stories {
    padding: 15px 20px;
    background-color: #f9f9f9; /* subtle background for separation */
  }
  
  .more-stories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
    color: #111;
  }
  
  /* Grid layout */
  .story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Individual story card */
  .story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  }
  
  /* Card image */
  .story-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 180px;
    transition: transform 0.3s ease;
  }
  
  /* Card text content */
  .story-card h3 {
    font-size: 1.2rem;
    margin: 16px;
    color: #111;
  }
  
  .story-card p {
    font-size: 0.95rem;
    margin: 0 16px 16px;
    color: #555;
    line-height: 1.5;
  }
  
  /* Link overlay (makes whole card clickable) */
  .story-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .article-stats {
      grid-template-columns: 1fr;
    }

    .article-title {
      font-size: 34px;
    }

    .article-subtitle {
      font-size: 24px;
    }
  }
  