/* ══════════════════════════════════════════════════════════
   LUMIA CLINIC — BLOG / JOURNAL STYLESHEET
   Shared by all blog hub + article pages (EN + ML).
   Design tokens mirror index.html so the journal reads as
   one continuous brand with the rest of the site.
   ══════════════════════════════════════════════════════════ */

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

:root {
  --indigo:    #1B1F3B;
  --amber:     #E8A87C;
  --blush:     #F2D4C8;
  --lumen:     #FDFAF7;
  --celestial: #6B8FBF;
  --celestial-deep: #46699c;
  --celestial-light: #aac0de;
  --sky:       #E3ECF7;
  --sky-deep:  #C9D9EF;
  --indigo-light: #2a304f;
  --amber-light: #f0c09c;
  --text-muted: #888097;
  --champagne: #D9C39A;
  --silver: #CBD0D6;
  --rule: rgba(27,31,59,0.10);
}

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--lumen);
  color: var(--indigo);
  overflow-x: hidden;
  line-height: 1.75;
}

/* Malayalam typography — mirrors the rules used on index.html */
html[lang="ml"] body { font-family: 'Anek Malayalam', sans-serif; }
html[lang="ml"] .post-title,
html[lang="ml"] .hub-title,
html[lang="ml"] .prose h2,
html[lang="ml"] .prose h3,
html[lang="ml"] .card-title,
html[lang="ml"] .nav-logo,
html[lang="ml"] .footer-brand-name,
html[lang="ml"] .cta-title,
html[lang="ml"] .related-title,
html[lang="ml"] .faq-q {
  font-family: 'Noto Serif Malayalam', serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.45;
}
html[lang="ml"] .post-title em,
html[lang="ml"] .hub-title em,
html[lang="ml"] .cta-title em { font-style: normal; font-weight: 600; }
html[lang="ml"] .eyebrow,
html[lang="ml"] .nav-links a,
html[lang="ml"] .lang-toggle a,
html[lang="ml"] .mobile-nav a,
html[lang="ml"] .footer-col h4,
html[lang="ml"] .cat-pill,
html[lang="ml"] .btn-primary,
html[lang="ml"] .btn-outline,
html[lang="ml"] .post-meta,
html[lang="ml"] .breadcrumb {
  font-family: 'Anek Malayalam', sans-serif;
  letter-spacing: 0;
}
html[lang="ml"] .prose { line-height: 1.95; }

::selection { background: var(--amber); color: var(--indigo); }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--lumen); }
::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip link — accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--indigo); color: var(--lumen);
  padding: 0.8rem 1.4rem; z-index: 500;
  font-size: 0.85rem; letter-spacing: 0.05em;
}
.skip-link:focus { left: 0; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--celestial));
  z-index: 200;
  transition: width 0.1s linear;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(253, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--indigo); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--amber); }
.nav-mark { width: 26px; height: 26px; flex-shrink: 0; color: var(--indigo); }
.nav-links {
  display: flex; align-items: center; gap: 1.9rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--celestial-deep); }
.nav-links a.active { opacity: 1; color: var(--amber); }
.nav-cta {
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--indigo);
  border-radius: 100px;
  opacity: 1 !important;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--indigo); color: var(--lumen) !important; }

.lang-toggle {
  display: flex; align-items: center;
  border: 1px solid var(--rule);
  border-radius: 100px;
  overflow: hidden;
}
.lang-toggle a {
  padding: 0.4rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--indigo);
  opacity: 0.6;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.lang-toggle a.active {
  background: var(--indigo);
  color: var(--lumen);
  opacity: 1;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--indigo); transition: 0.3s; }

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--lumen);
  z-index: 150;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  text-decoration: none;
}
.mobile-nav-close {
  position: absolute; top: 1.6rem; right: 2rem;
  background: none; border: none;
  font-size: 1.6rem; color: var(--indigo); cursor: pointer;
}

@media (max-width: 1100px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ══ SHARED ATOMS ══ */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--celestial-deep);
  margin-bottom: 1.1rem;
}
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-primary {
  background: var(--indigo);
  color: var(--lumen);
  border: 1px solid var(--indigo);
}
.btn-primary:hover {
  background: var(--indigo-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27,31,59,0.18);
}
.btn-outline {
  background: transparent;
  color: var(--indigo);
  border: 1px solid var(--indigo);
}
.btn-outline:hover { background: var(--indigo); color: var(--lumen); transform: translateY(-2px); }

/* ══ BLOG HUB ══ */
.hub-hero {
  padding: 11rem 4rem 3.5rem;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.hub-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.hub-title em { color: var(--amber); font-style: italic; }
.hub-lede {
  max-width: 62ch;
  margin: 0 auto;
  font-size: 1.06rem;
  color: var(--indigo);
  opacity: 0.72;
}

.cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 4rem 3rem;
}
.cat-pill {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: transparent;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--indigo);
  opacity: 0.66;
  cursor: pointer;
  transition: all 0.3s;
}
.cat-pill:hover { opacity: 1; border-color: var(--amber); }
.cat-pill.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--lumen);
  opacity: 1;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 4rem 6rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--indigo);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(27,31,59,0.10);
  border-color: var(--blush);
}
.card-img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  display: block;
  background: var(--sky);
}
.card-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.card-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--celestial-deep);
  margin-bottom: 0.7rem;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.22;
  margin-bottom: 0.7rem;
}
.card-excerpt {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.65;
  flex: 1;
}
.card-meta {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hub-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
  opacity: 0.6;
  font-size: 0.95rem;
}

/* ══ ARTICLE ══ */
.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8.5rem 4rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}
.breadcrumb a { color: var(--indigo); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { margin: 0 0.5rem; }

.post-head {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.2rem 4rem 0;
  text-align: center;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.13;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.post-title em { color: var(--amber); font-style: italic; }
.post-standfirst {
  font-size: 1.12rem;
  line-height: 1.7;
  opacity: 0.75;
  max-width: 60ch;
  margin: 0 auto 1.9rem;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  justify-content: center;
  font-size: 0.71rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.6;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.post-hero {
  max-width: 1000px;
  margin: 2.8rem auto 0;
  padding: 0 4rem;
}
.post-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Article prose */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.2rem 4rem 1rem;
  font-size: 1.045rem;
}
.prose > p, .prose > ul, .prose > ol { margin-bottom: 1.45rem; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.95rem;
  line-height: 1.2;
  margin: 3.1rem 0 1.1rem;
  letter-spacing: -0.005em;
}
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 2.2rem 0 0.8rem;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose a { color: var(--celestial-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--amber); }
.prose strong { font-weight: 500; }
.prose em { font-style: italic; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li { margin-bottom: 0.6rem; }
.prose li::marker { color: var(--amber); }
.prose blockquote {
  margin: 2.2rem 0;
  padding: 0.4rem 0 0.4rem 1.6rem;
  border-left: 2px solid var(--amber);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.45;
  opacity: 0.88;
}
html[lang="ml"] .prose blockquote {
  font-family: 'Noto Serif Malayalam', serif;
  font-style: normal;
  font-size: 1.15rem;
}
.prose img { width: 100%; border-radius: 4px; margin: 2rem 0; }
.prose hr { border: none; border-top: 1px solid var(--rule); margin: 2.8rem 0; }

/* Key-takeaway / callout box */
.callout {
  background: var(--sky);
  border-left: 2px solid var(--celestial);
  border-radius: 3px;
  padding: 1.5rem 1.7rem;
  margin: 2.3rem 0;
  font-size: 0.98rem;
}
.callout-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--celestial-deep);
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.callout p:last-child, .callout ul:last-child, .callout li:last-child { margin-bottom: 0; }
.callout ul { padding-left: 1.2rem; }

.callout.warn {
  background: #FBF0E8;
  border-left-color: var(--amber);
}
.callout.warn .callout-title { color: #b5713c; }

/* Myth vs fact */
.myth-fact { margin: 2.3rem 0; display: grid; gap: 1rem; }
.mf-item {
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  background: #fff;
}
.mf-myth {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #b5713c; margin-bottom: 0.5rem; font-weight: 500;
}
.mf-fact {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--celestial-deep); margin: 0.9rem 0 0.4rem; font-weight: 500;
}

/* Data table */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.2rem 0;
  font-size: 0.93rem;
}
.table-wrap { overflow-x: auto; margin: 2.2rem 0; }
.table-wrap table { margin: 0; }
.prose th, .prose td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.prose th {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--celestial-deep);
  background: rgba(227,236,247,0.5);
}
html[lang="ml"] .prose th { letter-spacing: 0.04em; }

/* Table of contents */
.toc {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.4rem 4rem 0;
}
.toc-inner {
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1.5rem 1.8rem;
  background: #fff;
}
.toc-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--celestial-deep);
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.toc ol { list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; margin-bottom: 0.45rem; font-size: 0.93rem; }
.toc li::before {
  content: counter(toc) ".";
  color: var(--amber);
  margin-right: 0.55rem;
}
.toc a { color: var(--indigo); text-decoration: none; opacity: 0.78; }
.toc a:hover { opacity: 1; color: var(--celestial-deep); text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq-section {
  max-width: 720px;
  margin: 3.4rem auto 0;
  padding: 0 4rem;
}
.faq-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.95rem;
  margin-bottom: 1.5rem;
}
html[lang="ml"] .faq-heading { font-family: 'Noto Serif Malayalam', serif; font-weight: 500; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.15rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2rem;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--indigo);
  line-height: 1.35;
  padding: 0;
}
.faq-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  position: relative;
  margin-top: 6px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--amber);
  transition: transform 0.3s;
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 1.5px; }
.faq-icon::after  { left: 8px; top: 0; width: 1.5px; height: 18px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.98rem;
  opacity: 0.78;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 900px; padding-top: 0.85rem; }

/* Medical disclaimer */
.disclaimer {
  max-width: 720px;
  margin: 3.4rem auto 0;
  padding: 0 4rem;
}
.disclaimer-inner {
  border: 1px dashed var(--rule);
  border-radius: 3px;
  padding: 1.4rem 1.6rem;
  font-size: 0.86rem;
  line-height: 1.65;
  opacity: 0.7;
}
.disclaimer-inner strong { font-weight: 500; opacity: 1; }

/* Author box */
.author-box {
  max-width: 720px;
  margin: 3.4rem auto 0;
  padding: 0 4rem;
}
.author-inner {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.9rem 0;
}
.author-photo {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--sky);
}
.author-role {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--celestial-deep);
  margin-bottom: 0.35rem;
}
.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}
html[lang="ml"] .author-name { font-family: 'Noto Serif Malayalam', serif; }
.author-bio { font-size: 0.89rem; opacity: 0.72; line-height: 1.65; }

/* Related posts */
.related {
  max-width: 1180px;
  margin: 5rem auto 0;
  padding: 0 4rem;
}
.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 1.8rem;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

/* Article CTA */
.post-cta {
  margin: 5.5rem 0 0;
  padding: 4.5rem 4rem;
  background: var(--indigo);
  color: var(--lumen);
  text-align: center;
}
.post-cta .eyebrow { color: var(--amber); }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.cta-title em { color: var(--amber); font-style: italic; }
.cta-text {
  max-width: 54ch;
  margin: 0 auto 2.1rem;
  opacity: 0.8;
  font-size: 1rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.post-cta .btn-primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--indigo);
}
.post-cta .btn-primary:hover { background: var(--amber-light); border-color: var(--amber-light); }
.post-cta .btn-outline { color: var(--lumen); border-color: rgba(253,250,247,0.5); }
.post-cta .btn-outline:hover { background: var(--lumen); color: var(--indigo); border-color: var(--lumen); }

/* ══ FOOTER ══ */
footer {
  background: var(--lumen);
  border-top: 1px solid var(--rule);
  padding: 4.5rem 4rem 2rem;
}
.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.footer-brand-name span { color: var(--amber); }
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--celestial-deep);
  margin-bottom: 1.1rem;
}
.footer-desc { font-size: 0.88rem; opacity: 0.68; line-height: 1.7; max-width: 40ch; }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.1rem;
  opacity: 0.85;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--indigo);
  text-decoration: none;
  opacity: 0.68;
  transition: opacity 0.3s, color 0.3s;
}
.footer-col a:hover { opacity: 1; color: var(--celestial-deep); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  opacity: 0.6;
}
.footer-bottom a { color: var(--indigo); text-decoration: none; }
.footer-bottom a:hover { color: var(--amber); }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}
@media (max-width: 780px) {
  .hub-hero { padding: 8.5rem 1.5rem 2.5rem; }
  .cat-bar { padding: 0 1.5rem 2.2rem; }
  .post-grid { padding: 0 1.5rem 4rem; gap: 1.6rem; grid-template-columns: 1fr; }
  .breadcrumb { padding: 6.8rem 1.5rem 0; }
  .post-head { padding: 1.8rem 1.5rem 0; }
  .post-hero { padding: 0 1.5rem; }
  .prose, .toc, .faq-section, .disclaimer, .author-box { padding-left: 1.5rem; padding-right: 1.5rem; }
  .prose { font-size: 1rem; padding-top: 2.4rem; }
  .related { padding: 0 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
  .post-cta { padding: 3.5rem 1.5rem; }
  footer { padding: 3.5rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .author-inner { flex-direction: column; gap: 1rem; }
}

/* ══ PRINT ══ */
@media print {
  nav, .mobile-nav, .post-cta, .related, .scroll-progress, .cat-bar, .lang-toggle { display: none !important; }
  body { background: #fff; }
  .faq-a { max-height: none !important; padding-top: 0.85rem !important; }
  .prose { max-width: none; }
}
