/* ============================================================
   Capaz — Blog stylesheet
   Shared by /blog/ index pages and every article page.
   Design tokens mirror the ones inlined in the site's index*.html
   so the blog reads as part of the same product.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2a4a;
  --orange: #f97316;
  --orange-light: #fff1e6;
  --orange-dark: #c2410c;
  --coral: #ff6b6b;
  --yellow: #ffd166;
  --bg: #f8fbff;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f1f5f9;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(26,42,74,0.10);
  --shadow-lg: 0 12px 48px rgba(26,42,74,0.15);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Nunito', sans-serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { max-width: 1120px; margin: 0 auto; }

/* ─────────────── NAV (identical to the site) ─────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,115,22,0.12);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--navy);
}
.nav-logo img { width: 38px; height: 38px; border-radius: 10px; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.92rem;
  color: var(--navy); opacity: 0.8;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--orange); }
.nav-links a.current { opacity: 1; color: var(--orange); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 6px; }
.lang-btn {
  background: none;
  border: 1.5px solid rgba(26,42,74,0.2);
  border-radius: 8px;
  padding: 4px 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  cursor: pointer; color: var(--navy);
  transition: all .2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--orange); border-color: var(--orange); color: white;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  border-radius: 12px; padding: 13px 26px;
  font-size: 0.95rem; cursor: pointer;
  transition: all .22s; border: none;
}
.btn-primary { background: var(--orange); color: white; box-shadow: 0 4px 14px rgba(249,115,22,0.4); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--orange); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid rgba(26,42,74,0.2); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ─────────────── BLOG HEADER BAND ─────────────── */
.blog-head {
  position: relative;
  padding: 150px 40px 70px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(249,115,22,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(255,209,102,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #f0faff 0%, #f8fbff 50%, #fff8f0 100%);
}
.blog-head .container { position: relative; }
.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-dark); background: var(--orange-light);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.blog-head h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  font-weight: 900; color: var(--navy); margin-bottom: 16px;
}
.blog-head p.lede {
  font-size: 1.1rem; color: var(--gray); max-width: 620px;
}

/* ─────────────── ARTICLE CARDS (index) ─────────────── */
.blog-list { padding: 60px 40px 90px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.post-card {
  display: flex; flex-direction: column;
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid rgba(249,115,22,0.10);
  padding: 30px 28px 26px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.post-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(249,115,22,0.28); }
.post-card:hover::before { transform: scaleX(1); }

.post-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, var(--orange-light) 100%);
  border-color: rgba(249,115,22,0.20);
}
.post-card.featured .post-body { flex: 1; }
.post-card.featured .post-title { font-size: 1.75rem; }
.post-card.featured .post-excerpt { font-size: 1rem; }
.post-emblem {
  flex-shrink: 0;
  width: 150px; height: 150px;
  border-radius: 28px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(249,115,22,0.14);
}

.post-cat {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange-dark); background: var(--orange-light);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.post-card.featured .post-cat { background: white; }

.post-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.22rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}
.post-excerpt { font-size: 0.93rem; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 18px; }

.post-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--gray);
  font-family: 'Nunito', sans-serif; font-weight: 600;
}
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(26,42,74,0.28); }
.post-more {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.88rem;
  color: var(--orange-dark);
}
.post-card:hover .post-more { gap: 11px; }
.post-more svg { transition: transform .25s; }

/* ─────────────── ARTICLE PAGE ─────────────── */
.article-head {
  position: relative;
  padding: 140px 40px 50px;
  background:
    radial-gradient(ellipse 70% 60% at 75% 20%, rgba(249,115,22,0.10) 0%, transparent 70%),
    linear-gradient(160deg, #f0faff 0%, #f8fbff 55%, #fff8f0 100%);
}
.article-wrap { max-width: 760px; margin: 0 auto; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--gray); margin-bottom: 22px;
  transition: color .2s;
}
.breadcrumb:hover { color: var(--orange); }

.article-head h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  font-weight: 900; color: var(--navy);
  margin-bottom: 18px;
}
.article-lede {
  font-size: 1.13rem; color: var(--gray); line-height: 1.65; margin-bottom: 26px;
}
.article-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.84rem; color: var(--gray);
  padding-top: 20px; border-top: 1.5px solid rgba(26,42,74,0.08);
}
.article-meta .author { display: flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 800; }
.article-meta .author img { width: 32px; height: 32px; border-radius: 9px; }

.article-body { background: var(--bg); padding: 50px 40px 20px; }

/* Prose */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.045rem; }
.prose > * + * { margin-top: 22px; }
.prose h2 {
  font-size: 1.55rem; font-weight: 900; color: var(--navy);
  margin-top: 52px; margin-bottom: 4px;
  padding-left: 16px; border-left: 4px solid var(--orange);
}
.prose h3 {
  font-size: 1.18rem; font-weight: 800; color: var(--navy);
  margin-top: 34px; margin-bottom: -6px;
}
.prose p { color: #33415c; }
.prose strong { color: var(--navy); font-weight: 700; }
.prose a { color: var(--orange-dark); font-weight: 600; border-bottom: 1.5px solid rgba(249,115,22,0.35); transition: all .2s; }
.prose a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.prose ul, .prose ol { padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { position: relative; padding-left: 30px; color: #33415c; }
.prose ul li::before {
  content: '\2713'; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange-light); color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 900;
}
.prose ol { counter-reset: li; }
.prose ol li { position: relative; padding-left: 34px; color: #33415c; counter-increment: li; }
.prose ol li::before {
  content: counter(li); position: absolute; left: 0; top: 1px;
  width: 23px; height: 23px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-size: 0.72rem; font-weight: 900;
}

/* Callouts */
.callout {
  background: white;
  border: 1.5px solid rgba(249,115,22,0.18);
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: var(--shadow);
}
.callout .callout-title {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  color: var(--navy); font-size: 1rem; margin-bottom: 10px;
  display: flex; align-items: center; gap: 9px;
}
.callout p, .callout li { font-size: 0.95rem; }
.callout > * + * { margin-top: 12px; }

.callout-navy {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1d36 100%);
  border-color: rgba(249,115,22,0.35);
  border-left-color: var(--orange);
  color: rgba(255,255,255,0.86);
}
.callout-navy .callout-title { color: white; }
.callout-navy p { color: rgba(255,255,255,0.82); }
.callout-navy strong { color: white; }
.callout-navy li { color: rgba(255,255,255,0.82); }
.callout-navy ul li::before { background: rgba(249,115,22,0.2); color: var(--orange); }

.pullquote {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem; font-weight: 700; font-style: italic;
  color: var(--navy); line-height: 1.45;
  padding: 8px 0 8px 26px;
  border-left: 4px solid var(--yellow);
  margin: 38px 0;
}

.keyfacts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px; margin: 34px 0;
}
.keyfact {
  background: white; border-radius: 16px; padding: 20px 18px;
  border: 1.5px solid rgba(249,115,22,0.12); text-align: center;
}
.keyfact .kf-num {
  font-family: 'Nunito', sans-serif; font-size: 1.7rem; font-weight: 900;
  color: var(--orange-dark); display: block; line-height: 1.1; margin-bottom: 6px;
}
.keyfact .kf-label { font-size: 0.8rem; color: var(--gray); line-height: 1.4; }

/* ─────────────── ARTICLE HERO IMAGE ─────────────── */
.article-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  transform: translateY(-30px);
}
.article-hero img {
  width: 100%;
  height: clamp(200px, 34vw, 380px);
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
/* Photos where the subject sits above the optical centre */
.article-hero img.focus-upper { object-position: 50% 12%; }
/* Vector illustrations: show the whole composition, never crop it */
.article-hero img.is-illustration {
  height: auto;
  aspect-ratio: 1000 / 450;
  object-fit: contain;
  background: #0d1729;
  border-color: #0d1729;
}

/* ─────────────── FIGURES ─────────────── */
figure.fig { margin: 40px 0; }
figure.fig img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: var(--shadow);
  border: 3px solid white;
}
figure.fig figcaption {
  margin-top: 12px;
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* ─────────────── IMAGE CREDITS (CC attribution) ─────────────── */
.img-credit {
  max-width: 1000px;
  margin: 10px auto 0;
  padding: 0 40px;
  font-size: 0.73rem;
  color: var(--gray);
  text-align: right;
  line-height: 1.45;
}
.img-credit a { color: var(--gray); border-bottom: 1px solid rgba(107,114,128,0.35); }
.img-credit a:hover { color: var(--orange); border-bottom-color: var(--orange); }
figure.fig .img-credit { padding: 0; max-width: none; margin-top: 6px; }

/* ─────────────── BRAND NOTE (third-party logo + context) ─────────────── */
.brand-note {
  display: flex;
  align-items: center;
  gap: 22px;
  background: white;
  border: 1.5px solid rgba(26,42,74,0.10);
  border-radius: 18px;
  padding: 20px 26px;
  margin: 34px 0;
  box-shadow: var(--shadow);
}
.brand-note img { height: 42px; width: auto; flex-shrink: 0; }
.brand-note p { font-size: 0.92rem; color: var(--gray); line-height: 1.55; margin: 0; }
.brand-note p strong { color: var(--navy); }

/* ─────────────── INFRA GRID (where the data lives) ─────────────── */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 34px 0;
}
.infra-card {
  background: white;
  border: 1.5px solid rgba(249,115,22,0.14);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.infra-card .infra-flag { font-size: 1.7rem; line-height: 1; margin-bottom: 6px; }
.infra-card .infra-role {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--navy);
}
.infra-card .infra-where {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.8rem;
  color: var(--orange-dark); letter-spacing: .04em; text-transform: uppercase;
}
.infra-card .infra-note { font-size: 0.82rem; color: var(--gray); line-height: 1.45; margin-top: 4px; }

/* ─────────────── COMPARE (two-column contrast) ─────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 34px 0;
}
.compare-col {
  border-radius: 18px;
  padding: 24px 22px;
  border: 1.5px solid;
}
.compare-col h4 {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1rem;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.compare-col li { position: relative; padding-left: 22px; font-size: 0.92rem; line-height: 1.5; }
.compare-col li::before {
  position: absolute; left: 0; top: 0; font-weight: 900; font-size: 0.9rem;
}
.compare-gone {
  background: rgba(255,107,107,0.07);
  border-color: rgba(255,107,107,0.28);
}
.compare-gone h4 { color: #b3352f; }
.compare-gone li { color: #5b3a3a; }
.compare-gone li::before { content: '\2715'; color: var(--coral); }
.compare-stays {
  background: var(--orange-light);
  border-color: rgba(249,115,22,0.28);
}
.compare-stays h4 { color: var(--orange-dark); }
.compare-stays li { color: #5c4030; }
.compare-stays li::before { content: '\2713'; color: var(--orange-dark); }

/* ─────────────── EMOJI GLOSSARY ─────────────── */
.emoji-glossary {
  display: flex; flex-direction: column; gap: 12px;
  margin: 34px 0;
}
.eg-item {
  display: flex; align-items: center; gap: 18px;
  background: white;
  border: 1.5px solid rgba(26,42,74,0.10);
  border-left: 5px solid var(--yellow);
  border-radius: 16px;
  padding: 16px 20px;
}
.eg-emoji { font-size: 2.1rem; line-height: 1; flex-shrink: 0; }
.eg-text { font-size: 0.93rem; color: #33415c; line-height: 1.5; }
.eg-text strong { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--navy); margin-bottom: 2px; }

/* ─────────────── INDEX CARD COVERS ─────────────── */
.post-cover {
  display: block;
  /* Bleed to the card's inner edges: the card has 28px side padding.
     max-width must be released — the global `img { max-width: 100% }`
     would otherwise clamp the calc() back to the content box. */
  width: calc(100% + 56px);
  max-width: none;
  margin: -30px -28px 20px;
  height: 168px;
  object-fit: cover;
}
.post-card.featured .post-cover {
  width: 300px; height: 220px;
  margin: 0; border-radius: 20px;
  flex-shrink: 0;
}

/* Sources */
.sources { margin-top: 56px; padding-top: 26px; border-top: 1.5px solid rgba(26,42,74,0.10); }
.sources h2 {
  font-family: 'Nunito', sans-serif; font-size: 0.82rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gray);
  border: none; padding: 0; margin: 0 0 14px;
}
/* The source list reuses the numbered-list styling from .prose ol, so it must
   reset the SAME counter ("li") — resetting a differently named one let the
   numbering continue from the last ordered list in the article body. */
.sources ol { counter-reset: li; display: flex; flex-direction: column; gap: 9px; list-style: none; padding: 0; }
.sources li { font-size: 0.86rem; color: var(--gray); }
.sources a { color: var(--orange-dark); font-weight: 600; word-break: break-word; }
.sources a:hover { color: var(--orange); }

/* End-of-article CTA */
.article-cta {
  max-width: 760px; margin: 60px auto 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0f1d36 100%);
  border-radius: 24px; padding: 44px 40px;
  text-align: center; color: white;
  position: relative; overflow: hidden;
}
.article-cta::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.16), transparent 70%);
}
.article-cta > * { position: relative; }
.article-cta h2 { font-size: 1.6rem; font-weight: 900; color: white; margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,0.68); font-size: 0.98rem; max-width: 460px; margin: 0 auto 26px; }
.cta-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-badges a { display: block; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform .22s; }
.cta-badges a:hover { transform: translateY(-3px); }
.cta-badges img { height: 46px; display: block; }

/* Related posts */
.related { max-width: 1120px; margin: 0 auto; padding: 70px 0 20px; }
.related h2 {
  font-family: 'Nunito', sans-serif; font-size: 1.35rem; font-weight: 900;
  color: var(--navy); margin-bottom: 26px; text-align: center;
}
.related .post-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ─────────────── FOOTER (identical to the site) ─────────────── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  text-align: center; padding: 40px; font-size: 0.85rem;
  margin-top: 80px;
}
footer a { color: var(--orange); font-weight: 600; }
footer .footer-logo {
  font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900;
  color: white; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
footer .footer-logo img { width: 28px; height: 28px; border-radius: 8px; }
footer .footer-nav { margin-top: 10px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
footer .footer-nav a { color: rgba(255,255,255,0.6); font-weight: 600; }
footer .footer-nav a:hover { color: var(--orange); }

/* ─────────────── ANIMATIONS ─────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.reveal { animation: fadeUp .6s ease both; }
.reveal-delay-1 { animation-delay: .1s; }
.reveal-delay-2 { animation-delay: .2s; }
.reveal-delay-3 { animation-delay: .3s; }
.reveal-delay-4 { animation-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─────────────── MOBILE ─────────────── */
@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .blog-head { padding: 120px 22px 50px; }
  .blog-list { padding: 44px 22px 70px; }
  .article-head { padding: 118px 22px 40px; }
  .article-body { padding: 40px 22px 20px; }

  .post-card.featured { flex-direction: column; align-items: flex-start; gap: 24px; padding: 30px 26px; }
  .post-card.featured .post-title { font-size: 1.4rem; }
  .post-emblem { width: 88px; height: 88px; border-radius: 22px; font-size: 2.3rem; }

  .prose h2 { font-size: 1.35rem; margin-top: 42px; }
  .pullquote { font-size: 1.12rem; margin: 30px 0; }
  .article-cta { padding: 34px 24px; border-radius: 20px; }
  .related { padding: 50px 0 10px; }

  .article-hero { padding: 0 22px; transform: translateY(-20px); }
  .article-hero img { border-radius: 18px; border-width: 3px; }
  .img-credit { padding: 0 22px; text-align: left; }
  .brand-note { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }
  .compare { grid-template-columns: 1fr; }
  .post-cover { height: 150px; }
  .post-card.featured .post-cover { width: 100%; height: 190px; }
  .eg-item { gap: 14px; padding: 14px 16px; }
  .eg-emoji { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .nav-right .lang-switch { display: none; }
  .nav-logo { font-size: 1.3rem; }
  .cta-badges img { height: 42px; }
}
