/* Pro Athlete Academy — 2026 redesign
   Shared stylesheet for all pages. */

:root {
  --red: #c31c0a;
  --red-dark: #9a1507;
  --gold: #ecc019;
  --ink: #0f1729;
  --ink-2: #1c2438;
  --text: #24303f;
  --muted: #63708a;
  --line: #e6e9f0;
  --bg: #ffffff;
  --bg-soft: #f5f6f9;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(15, 23, 41, .08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 41, .16);
  --max: 1180px;
  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600; }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--muted); }
.container { width: min(var(--max), 100% - 2rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark { background: var(--ink); color: #d7dce6; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-soft { background: var(--bg-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--gold); border-radius: 2px; }
.section-dark .eyebrow { color: var(--gold); }
.accent { color: var(--red); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(195, 28, 10, .3); }
.btn-primary:hover { background: var(--red-dark); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(236, 192, 25, .3); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-wa { background: #25d366; color: #fff; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 23, 41, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 78px; }
.brand { display: flex; align-items: center; gap: .8rem; color: #fff; font-family: var(--font-head); font-weight: 700; }
.brand img { width: 52px; height: 52px; }
.brand span { line-height: 1.1; font-size: .95rem; }
.brand small { display: block; font-weight: 400; font-size: .72rem; color: #aab2c5; letter-spacing: .08em; text-transform: uppercase; }
.menu { display: flex; align-items: center; gap: 1.8rem; list-style: none; margin: 0; padding: 0; }
.menu a { color: #d7dce6; font-weight: 500; font-size: .95rem; position: relative; padding: .4rem 0; }
.menu a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width .2s; }
.menu a:hover::after, .menu a.active::after { width: 100%; }
.menu .has-sub { position: relative; }
.menu .sub {
  position: absolute; top: 120%; left: -1rem; min-width: 240px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: .6rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s;
}
.menu .has-sub:hover .sub, .menu .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.menu .sub a { display: block; color: var(--ink); padding: .6rem .9rem; border-radius: 9px; }
.menu .sub a:hover { background: var(--bg-soft); }
.menu .sub a::after { display: none; }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-cta .btn { padding: .7rem 1.2rem; font-size: .88rem; }
.burger { display: none; background: none; border: 0; color: #fff; width: 44px; height: 44px; cursor: pointer; }
.burger svg { width: 28px; height: 28px; }

/* Mobile nav */
@media (max-width: 960px) {
  .menu, .nav-cta .btn-ghost { display: none; }
  .burger { display: grid; place-items: center; }
  .nav.open .menu {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; left: 0; right: 0; top: 78px;
    background: var(--ink); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav.open .menu > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav.open .menu a { display: block; padding: .9rem 0; font-size: 1.05rem; }
  .menu .sub { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; padding: 0 0 .5rem 1rem; }
  .menu .sub a { color: #aab2c5; padding: .5rem 0; }
}

/* Hero */
.hero {
  position: relative; min-height: min(88vh, 820px); display: flex; align-items: center;
  color: #fff; overflow: hidden; background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,23,41,.92) 0%, rgba(15,23,41,.7) 45%, rgba(15,23,41,.25) 100%);
}
.hero .container { position: relative; padding: 5rem 0; }
.hero-inner { max-width: 680px; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 1.15rem; color: #d7dce6; max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; align-items: center; }
.hero-badges img { height: 44px; width: auto; }
.hero-badges .pill { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; color: #d7dce6; }
.hero-badges .pill b { color: var(--gold); font-family: var(--font-head); font-size: 1.15rem; }

/* Stats strip */
.stats { background: var(--gold); color: var(--ink); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 1.6rem 1rem; text-align: center; border-left: 1px solid rgba(15,23,41,.12); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; line-height: 1; }
.stat span { font-size: .85rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; opacity: .8; }
@media (max-width: 720px) { .stats .container { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(3) { border-left: 0; } }

/* Feature cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .grid-4, .grid-2 { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon { width: 56px; height: 56px; border-radius: 14px; background: var(--bg-soft); display: grid; place-items: center; margin-bottom: 1.2rem; }
.card .icon img { width: 34px; height: 34px; }
.card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .97rem; margin: 0; }

/* Image blocks */
.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure-tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem; background: #fff; color: var(--ink);
  padding: .8rem 1.1rem; border-radius: 12px; box-shadow: var(--shadow); font-size: .9rem; line-height: 1.3;
}
.figure-tag b { display: block; font-family: var(--font-head); color: var(--red); font-size: 1.1rem; }
.checks { list-style: none; padding: 0; margin: 1.2rem 0 1.8rem; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; }
.checks li::before {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: .15rem;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Programme cards */
.prog {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 440px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow);
}
.prog img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prog:hover img { transform: scale(1.05); }
.prog::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,41,0) 30%, rgba(15,23,41,.92) 100%); }
.prog-body { position: relative; z-index: 1; padding: 1.8rem; }
.prog-body h3 { color: #fff; margin-bottom: .4rem; }
.prog-body p { color: #d7dce6; font-size: .95rem; margin-bottom: 1rem; }
.prog-body .link { color: var(--gold); font-family: var(--font-head); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .4rem; }
.prog-body .link svg { width: 16px; height: 16px; transition: transform .2s; }
.prog:hover .link svg { transform: translateX(4px); }

/* Coach section */
.coach { position: relative; }
.coach .figure { max-width: 440px; margin-inline: auto; }
.quote {
  border-left: 4px solid var(--gold); padding: .2rem 0 .2rem 1.2rem; margin: 1.5rem 0;
  font-size: 1.1rem; color: var(--ink); font-style: italic;
}
.creds { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0; }
.creds span { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; font-size: .85rem; font-weight: 500; }

/* Fitness split */
.fit-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fit-gallery .figure:first-child { grid-row: span 2; }
.fit-gallery .figure { min-height: 220px; }
@media (max-width: 720px) { .fit-gallery { grid-template-columns: 1fr; } .fit-gallery .figure:first-child { grid-row: auto; } }

/* CTA band */
.cta {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: linear-gradient(120deg, var(--red-dark), var(--red) 60%, #e0361f);
}
.cta::before {
  content: ""; position: absolute; inset: 0; opacity: .18;
  background: url("../images/img/bg-02.jpg") center/cover;
  mix-blend-mode: luminosity;
}
.cta .container { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.85); max-width: 600px; margin-inline: auto; margin-bottom: 2rem; }

/* Footer */
.footer { background: #0b1220; color: #aab2c5; padding: 4rem 0 2rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer a:hover { color: #fff; }
.footer .brand { margin-bottom: 1rem; }
.footer address { font-style: normal; margin-bottom: 1rem; }
.footer address b { color: #fff; display: block; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 3rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .85rem;
}
.social { display: flex; gap: .6rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); }
.social a:hover { background: var(--red); color: #fff; }
.social svg { width: 18px; height: 18px; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37, 211, 102, .4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Small-screen header tidy-up */
@media (max-width: 600px) {
  .header .brand span { display: none; }
  .nav-cta .btn { padding: .6rem 1rem; font-size: .82rem; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(15,23,41,.75) 0%, rgba(15,23,41,.85) 100%); }
  .hero .container { padding: 3.5rem 0; }
}

/* ===== Inner pages ===== */
.page-hero {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,23,41,.95), rgba(15,23,41,.6)); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; max-width: 820px; margin-bottom: .8rem; font-size: clamp(2rem, 4.4vw, 3.4rem); }
.page-hero p { color: #d7dce6; max-width: 640px; font-size: 1.1rem; margin: 0; }
.crumbs { display: flex; gap: .5rem; font-size: .85rem; color: #aab2c5; margin-bottom: 1.2rem; }
.crumbs a:hover { color: #fff; }
.crumbs span::before { content: "/"; margin-right: .5rem; opacity: .5; }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 2.4rem; }
.prose h3 { margin-top: 2rem; }
.prose h4, .prose h5 { font-size: 1.15rem; margin-top: 1.8rem; }
.prose p { margin-bottom: 1.2em; }
.prose ul { padding-left: 1.3rem; margin: 0 0 1.4em; }
.prose li { margin-bottom: .5em; }
.prose li b, .prose p b { color: var(--ink); }
.prose img { border-radius: var(--radius); margin: 2rem 0; box-shadow: var(--shadow); }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 2rem 0; }

.layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 960px) { .layout { grid-template-columns: 1fr; } }
.aside { position: sticky; top: 100px; display: grid; gap: 1.2rem; }
.aside-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.aside-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.aside-card li a { display: block; padding: .55rem .8rem; border-radius: 10px; font-weight: 500; font-size: .95rem; }
.aside-card li a:hover, .aside-card li a.active { background: #fff; color: var(--red); box-shadow: var(--shadow); }
.aside-cta { background: var(--ink); color: #d7dce6; }
.aside-cta h3 { color: #fff; }
.aside-cta p { font-size: .95rem; }
.aside-cta .btn { width: 100%; justify-content: center; margin-top: .6rem; }

.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.2rem; box-shadow: var(--shadow); }
.feature-list li::before {
  content: ""; flex: none; width: 34px; height: 34px; border-radius: 10px;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/16px no-repeat;
}
.feature-list b { display: block; color: var(--ink); font-family: var(--font-head); font-size: 1rem; margin-bottom: .15rem; }
.feature-list span { font-size: .95rem; color: var(--muted); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2rem 0; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--bg-soft); border-radius: 14px; padding: 1.4rem; }
.pillar b { display: block; font-family: var(--font-head); color: var(--red); font-size: 1.05rem; margin-bottom: .4rem; }
.pillar span { font-size: .95rem; color: var(--muted); }

/* Team / mentor */
.mentor { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; }
@media (max-width: 960px) { .mentor { grid-template-columns: 1fr; } }
.mentor .figure img { object-fit: contain; background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.clubs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.clubs span { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .35rem .8rem; font-size: .85rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; color: var(--red); }
.contact-list .ico svg { width: 22px; height: 22px; }
.contact-list b { display: block; color: var(--ink); font-family: var(--font-head); font-size: .95rem; }
.contact-list a:hover { color: var(--red); }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 300px; border: 0; display: block; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font: inherit; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg-soft); transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.captcha { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.captcha .q { font-family: var(--font-head); font-weight: 600; background: var(--gold); color: var(--ink); padding: .6rem .9rem; border-radius: 10px; white-space: nowrap; }
.captcha input { max-width: 140px; }
.captcha button { background: none; border: 0; color: var(--muted); cursor: pointer; font: inherit; font-size: .85rem; text-decoration: underline; }
.alert { padding: .9rem 1.1rem; border-radius: 12px; margin-top: 1rem; font-size: .95rem; }
.alert-success { background: #e7f7ec; color: #14652e; }
.alert-danger { background: #fdecea; color: #9a1507; }
.alert-info { background: var(--bg-soft); color: var(--muted); }

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 960px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card .body { padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post-card h3 { font-size: 1.15rem; margin: 0; }
.post-card p { color: var(--muted); font-size: .95rem; margin: 0; flex: 1; }
.post-card .link { color: var(--red); font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.post-hero img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); margin: -3rem 0 2.5rem; position: relative; }
.post-meta { color: var(--muted); font-size: .9rem; }
.share { display: flex; gap: .6rem; align-items: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.share a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); }
.share a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.share svg { width: 16px; height: 16px; }

/* Sitemap */
.sitemap-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 760px) { .sitemap-cols { grid-template-columns: 1fr; } }
.sitemap-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.sitemap-cols a { color: var(--text); }
.sitemap-cols a:hover { color: var(--red); }
.prose .btn { text-decoration: none; }
.prose .btn-primary { color: #fff; }
.prose .feature-list, .prose .pillars { max-width: none; }
