@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&family=Lato:wght@300;400;700&display=swap');

:root {
  --green-deep: #1a3a2a;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #b7e4c7;
  --cream: #f5f0e8;
  --cream-dark: #ede6d3;
  --earth: #6b4c3b;
  --earth-light: #a47551;
  --text-main: #1c2a1e;
  --text-muted: #5a6b5a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26,58,42,0.12);
  --shadow-lg: 0 12px 48px rgba(26,58,42,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-main);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-leaf {
  width: 48px; height: 48px;
  border: 3px solid rgba(183,228,199,0.3);
  border-top-color: var(--green-pale);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(82,183,136,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.1;
}
.logo-sub { font-size: 0.65rem; color: var(--green-pale); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Lato', sans-serif; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--green-pale);
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active { background: rgba(82,183,136,0.15); color: var(--white); }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-pale);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--green-deep);
  border-top: 1px solid rgba(82,183,136,0.2);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--green-pale);
  padding: 12px 16px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(82,183,136,0.1);
  transition: background 0.2s;
}
.mobile-nav a:hover { background: rgba(82,183,136,0.12); color: var(--white); }

/* HERO */
.hero {
  position: relative;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  background: var(--green-deep);
  padding: 80px 56px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.hero-content::after {
  content: '';
  position: absolute;
  right: -40px; top: 0; bottom: 0;
  width: 80px;
  background: var(--green-deep);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
}
.hero-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--green-light);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--cream);
}
.hero h1 em { font-style: italic; color: var(--green-light); }
.hero-lead {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  max-width: 440px;
  line-height: 1.75;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-deep);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 8px;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-pale); transform: translateY(-2px); }
.hero-img {
  position: relative;
  overflow: hidden;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,58,42,0.3), transparent);
}

/* SECTION HEADERS */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.25;
  color: var(--green-deep);
}
.section-title em { font-style: italic; color: var(--earth-light); }

/* FEATURED ARTICLES */
.featured { padding: 80px 0; }
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 40px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card.featured-main { grid-row: 1 / 3; }
.card-img { position: relative; overflow: hidden; }
.article-card.featured-main .card-img { height: 320px; }
.article-card:not(.featured-main) .card-img { height: 200px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .card-img img { transform: scale(1.04); }
.card-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--green-mid);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.card-body { padding: 24px; }
.card-body h2, .card-body h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.article-card.featured-main .card-body h2 { font-size: 1.5rem; }
.article-card:not(.featured-main) .card-body h3 { font-size: 1.05rem; }
.card-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Lato', sans-serif;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-top: 16px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }
.card-link::after { content: '→'; }

/* TOPICS STRIP */
.topics-strip { background: var(--green-deep); padding: 56px 0; }
.topics-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.topics-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  flex-shrink: 0;
  max-width: 200px;
  line-height: 1.3;
}
.topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.topic-chip {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: var(--green-pale);
  border: 1px solid rgba(82,183,136,0.35);
  padding: 8px 18px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.topic-chip:hover { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); }

/* ABOUT STRIP */
.about-strip { padding: 88px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--earth);
  color: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Playfair Display', serif;
}
.about-badge strong { display: block; font-size: 2rem; line-height: 1; }
.about-badge span { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Lato', sans-serif; opacity: 0.85; }
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.8; }
.expertise-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.expertise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
}
.expertise-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ARTICLES GRID */
.articles-section { padding: 80px 0; background: var(--cream-dark); }
.articles-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* COMMUNITY CTA */
.cta-section {
  background: var(--green-mid);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 14px 28px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--green-mid); }

/* FOOTER */
.site-footer {
  background: var(--green-deep);
  color: var(--green-pale);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; color: rgba(183,228,199,0.65); line-height: 1.7; margin-top: 16px; }
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(183,228,199,0.7);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(82,183,136,0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom a { font-size: 0.8rem; color: rgba(183,228,199,0.5); }
.footer-bottom a:hover { color: var(--green-pale); }

/* ARTICLE PAGE */
.article-hero {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.85) 0%, rgba(26,58,42,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 48px;
}
.article-hero-content { max-width: 780px; }
.article-hero-content .card-category { position: static; margin-bottom: 16px; display: inline-block; }
.article-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-hero-content .article-meta {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 64px 0;
}

.article-body { min-width: 0; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-deep);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-deep);
  margin: 28px 0 12px;
}
.article-body p { color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; color: var(--text-muted); line-height: 1.8; }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--text-main); }
.article-body a { color: var(--green-mid); text-decoration: underline; }
.article-body blockquote {
  border-left: 4px solid var(--green-light);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(82,183,136,0.08);
  border-radius: 0 8px 8px 0;
}
.article-body blockquote p { margin: 0; color: var(--green-deep); font-style: italic; }
.article-figure { margin: 32px 0; }
.article-figure img { width: 100%; border-radius: var(--radius); }
.article-figure figcaption { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; text-align: center; font-style: italic; }

.article-sidebar { position: sticky; top: 96px; align-self: start; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.sidebar-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}
.sidebar-link { display: flex; flex-direction: column; gap: 12px; }
.sidebar-link a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.2s;
}
.sidebar-link a:last-child { border: none; }
.sidebar-link a:hover { color: var(--green-mid); }
.source-list { display: flex; flex-direction: column; gap: 8px; }
.source-list a { font-size: 0.8rem; color: var(--green-mid); }

/* ABOUT PAGE */
.page-hero {
  background: var(--green-deep);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 16px;
}
.page-hero p { color: rgba(245,240,232,0.7); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.about-page-content { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.expertise-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.exp-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.exp-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.exp-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--green-deep); margin-bottom: 6px; }
.exp-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: 80px 0; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-deep); margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-deep);
  font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; font-family: 'Lato', sans-serif; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--text-main); }
.contact-note {
  background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.3);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 40px;
}
.contact-note h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 8px; }
.contact-note p { font-size: 0.875rem; color: var(--text-muted); }

/* POLICY */
.policy-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.policy-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-deep); margin: 36px 0 12px; }
.policy-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { margin: 0 0 16px 24px; color: var(--text-muted); line-height: 1.8; }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-deep);
  border-top: 2px solid var(--green-light);
  padding: 20px 24px;
  z-index: 1000;
  display: none;
}
#cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 0.875rem; color: rgba(183,228,199,0.85); min-width: 240px; }
.cookie-text a { color: var(--green-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--green-light);
  color: var(--green-deep);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--green-pale); }
.btn-cookie-reject {
  background: transparent;
  color: rgba(183,228,199,0.7);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  padding: 10px 20px;
  border: 1px solid rgba(82,183,136,0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cookie-reject:hover { border-color: rgba(82,183,136,0.6); color: var(--green-pale); }

/* BREADCRUMBS */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--green-mid); }
.breadcrumbs span { margin: 0 6px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 56px 32px; }
  .hero-content::after { display: none; }
  .hero-img { height: 300px; }
  .featured-grid { grid-template-columns: 1fr; }
  .article-card.featured-main { grid-row: auto; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: 16px; right: 16px; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .cta-inner { grid-template-columns: 1fr; }
  .topics-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .topics-heading { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .burger-btn { display: flex; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding: 40px 24px; }
  .article-hero-overlay { padding: 24px; }
  .featured-grid { gap: 16px; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
