/* ======================================================
   Zambia Viral 100 — Design System v3
   Hyper-modern dark editorial · Red brand · Mobile-first
   Shared across: index.html · category.html · post.html
   ====================================================== */

/* ── Custom properties ──────────────────────────────── */
:root {
  --bg:         #04060d;
  --text:       #eef0f5;
  --muted:      rgba(238,240,245,.58);
  --brand:      #e63946;
  --brand-2:    #4cc9f0;
  --brand-3:    #2bbd72;
  --glass:      rgba(255,255,255,.052);
  --glass-2:    rgba(255,255,255,.092);
  --border:     rgba(255,255,255,.09);
  --card-bg:    linear-gradient(180deg, rgba(255,255,255,.058) 0%, rgba(255,255,255,.026) 100%);
  --shadow-sm:  0 2px  8px rgba(0,0,0,.24), 0 1px 2px rgba(0,0,0,.18);
  --shadow:     0 8px 28px rgba(0,0,0,.32), 0 2px 6px rgba(0,0,0,.20);
  --shadow-lg:  0 20px 56px rgba(0,0,0,.46), 0 4px 12px rgba(0,0,0,.22);
  --r:          14px;
  --r-sm:       9px;
  --topbar-h:   62px;
  --cat-accent: var(--brand);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(ellipse 1400px 500px at 12% -8%,  rgba(230,57,70,.13),  transparent 62%),
    radial-gradient(ellipse  900px 380px at 90%  2%,  rgba(76,201,240,.09), transparent 58%),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a   { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { margin: 0; }
p   { margin: 0; }

/* ── Container ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ════════════════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(4,6,13,.97);
  border-bottom: 2.5px solid var(--brand);
  height: var(--topbar-h);
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ── Brand ──────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand__mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), rgba(230,57,70,.30));
  box-shadow: 0 4px 18px rgba(230,57,70,.38), 0 0 0 1px rgba(230,57,70,.22);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
}
.brand__title {
  font-weight: 900;
  font-size: 15.5px;
  letter-spacing: -.04em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__subtitle {
  font-size: 11px;
  color: rgba(238,240,245,.44);
  margin-top: 2px;
  letter-spacing: .01em;
}

/* ── Live pill (pulsing dot via ::before — zero extra HTML) ── */
.pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(230,57,70,.10);
  border: 1.5px solid rgba(230,57,70,.34);
  color: rgba(238,240,245,.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  user-select: none;
  white-space: nowrap;
}
.pill::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(230,57,70,.65);
  animation: livepulse 1.8s ease-in-out infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0   rgba(230,57,70,.65); }
  70%  { box-shadow: 0 0 0 7px rgba(230,57,70,.00); }
  100% { box-shadow: 0 0 0 0   rgba(230,57,70,.00); }
}

/* ════════════════════════════════════════════════════════
   CATEGORY BAR
   ════════════════════════════════════════════════════════ */
.catbar-wrap {
  position: sticky;
  top: var(--topbar-h);
  z-index: 19;
  background: rgba(4,6,13,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.catbar {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.catbar::-webkit-scrollbar { display: none; }
.catbtn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: rgba(238,240,245,.65);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: border-color .15s, background .15s, color .15s,
              transform .12s, box-shadow .15s;
}
.catbtn:hover {
  transform: translateY(-1px);
  border-color: var(--cat-accent);
  background: rgba(255,255,255,.08);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0,0,0,.26);
}
/* Active = solid colour fill */
.catbtn.is-active {
  background: var(--cat-accent) !important;
  border-color:  var(--cat-accent) !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.32), 0 0 0 1px var(--cat-accent);
}
.catbtn__icon { font-size: 13px; line-height: 1; }

/* ════════════════════════════════════════════════════════
   SECTION INTRO  (above hero — shows live date)
   ════════════════════════════════════════════════════════ */
.section-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 0 10px;
}
.section-intro__label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}
.section-intro__date {
  font-size: 11.5px;
  color: rgba(238,240,245,.36);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Feed section heading ───────────────────────────── */
.feed-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0 10px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.feed-head::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 3px;
  height: 14px;
  background: var(--brand);
  border-radius: 2px;
}
.feed-head span { color: rgba(238,240,245,.85); }
.feed-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}

/* ── Main ───────────────────────────────────────────── */
.main { padding: 0 0 52px; }

/* ════════════════════════════════════════════════════════
   FEED GRID
   ════════════════════════════════════════════════════════ */
.feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .feed { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 960px) {
  .feed { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.feed > .ad-zone { grid-column: 1 / -1; }

/* ── Hero wrapper ───────────────────────────────────── */
.hero-wrap { margin-top: 0; }

/* ════════════════════════════════════════════════════════
   BASE CARD  —  gradient bg + top-border hover signal
   ════════════════════════════════════════════════════════ */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-top-color: rgba(255,255,255,.13);  /* subtle top highlight (light source) */
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 270px;
  position: relative;
  /* top-border animates to brand red on hover */
  transition: border-top-color .20s, background .20s, transform .20s, box-shadow .20s;
}
.card:hover {
  border-top-color: var(--brand);
  background: linear-gradient(180deg, rgba(255,255,255,.072) 0%, rgba(255,255,255,.038) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.card__media {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.04);
  overflow: hidden;
  position: relative;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(4,6,13,.56));
  pointer-events: none;
}
.card__content {
  padding: 13px 15px 9px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card__title {
  font-size: 16px;
  line-height: 1.20;
  font-weight: 900;
  letter-spacing: -.03em;
}
.card__excerpt {
  color: rgba(238,240,245,.52);
  font-size: 13px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__footer {
  padding: 8px 15px 15px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__read-cta {
  font-size: 12px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: .01em;
}
.card__date {
  font-size: 10.5px;
  color: rgba(238,240,245,.34);
  letter-spacing: .01em;
}

/* ── Category badge overlaid on image ───────────────── */
.card__cat-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(4,6,13,.78);
  border: 1px solid rgba(255,255,255,.13);
  font-size: 9px;
  font-weight: 900;
  color: rgba(238,240,245,.82);
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  max-width: calc(100% - 18px);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════════════════════════════
   HERO CARD  (always full-width)
   ════════════════════════════════════════════════════════ */
.card--hero {
  min-height: 390px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  box-shadow:
    0 0   0 1px rgba(255,255,255,.06),
    0 36px 88px rgba(0,0,0,.64);
}
/* Override top-border hover (hero has its own CTA signal) */
.card--hero:hover { border-top-color: rgba(255,255,255,.09); }
.card__hero-link {
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.card__hero-link .card__media {
  aspect-ratio: unset;
  height: 100%;
  min-height: 390px;
}
@media (min-width: 600px) {
  .card--hero { min-height: 470px; }
  .card__hero-link .card__media { min-height: 470px; }
}
@media (min-width: 960px) {
  .card--hero { min-height: 560px; }
  .card__hero-link .card__media { min-height: 560px; }
}
.card__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px 38px;
  background: linear-gradient(
    to top,
    rgba(4,6,13,1.00)  0%,
    rgba(4,6,13,.90)   22%,
    rgba(4,6,13,.46)   54%,
    rgba(4,6,13,.04)   100%
  );
}
.card__hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 13px;
}
.card__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 5px;
  background: rgba(230,57,70,.22);
  border: 1.5px solid rgba(230,57,70,.55);
  font-size: 10px;
  font-weight: 900;
  color: #fc8f97;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
}
.card__hero-cat {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.17);
  font-size: 10px;
  font-weight: 800;
  color: rgba(238,240,245,.80);
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Billboard headline — maximum visual impact */
.card__hero-title {
  font-size: 27px;
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -.048em;
  text-shadow: 0 4px 32px rgba(0,0,0,.80);
  margin-bottom: 18px;
}
@media (min-width: 600px) { .card__hero-title { font-size: 42px; } }
@media (min-width: 960px) { .card__hero-title { font-size: 62px; max-width: 900px; } }
.card__hero-excerpt {
  font-size: 15px;
  line-height: 1.52;
  color: rgba(238,240,245,.66);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 599px) { .card__hero-excerpt { display: none; } }
.card__hero-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.card__hero-date {
  font-size: 12px;
  color: rgba(238,240,245,.40);
  font-weight: 600;
}
/* Solid red CTA */
.card__hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--brand);
  border: 2px solid var(--brand);
  color: #fff;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: -.01em;
  width: fit-content;
  transition: background .15s, border-color .15s;
}
.card--hero:hover .card__hero-cta {
  background: #c32d38;
  border-color: #c32d38;
}

/* ════════════════════════════════════════════════════════
   CATEGORY PAGE HEADER  (category.html)
   ════════════════════════════════════════════════════════ */
.cat-page-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--r);
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-top-color: rgba(255,255,255,.13);
  box-shadow: var(--shadow);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.cat-page-header::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--cat-accent, var(--brand));
  border-radius: 999px 0 0 999px;
}
.cat-page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 200px at -5% 50%, rgba(230,57,70,.08), transparent);
  pointer-events: none;
}
.cat-page-header__icon {
  font-size: 38px;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cat-page-header__text { min-width: 0; position: relative; z-index: 1; }
.cat-page-header__title {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.cat-page-header__desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.48;
}

/* ════════════════════════════════════════════════════════
   AD ZONES  —  look like sponsored content cards, not placeholders
   ════════════════════════════════════════════════════════ */
.ad-zone {
  border-radius: var(--r);
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}
/* Subtle diagonal hatching — distinguishes ad from editorial content */
.ad-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 22px,
    rgba(255,255,255,.012) 22px,
    rgba(255,255,255,.012) 23px
  );
  pointer-events: none;
}
/* "SPONSORED" label — looks like editorial tag, not broken placeholder */
.ad-zone::before {
  content: "SPONSORED";
  position: absolute;
  top: 8px;
  left: 11px;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .18em;
  color: rgba(255,255,255,.22);
  text-transform: uppercase;
  z-index: 1;
}
.ad-zone__label {
  font-size: 11px;
  color: rgba(238,240,245,.28);
  text-align: center;
  line-height: 1.60;
  position: relative;
  z-index: 1;
}
.ad-zone--top   { margin: 14px 0 4px; }
.ad-zone--tight { min-height: 130px; margin: 18px 0; }

/* ════════════════════════════════════════════════════════
   SKELETON LOADER
   ════════════════════════════════════════════════════════ */
.skeleton { position: relative; overflow: hidden; }
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 100% { transform: translateX(100%); } }
.skeleton__block { background: rgba(255,255,255,.07); border-radius: 8px; }

/* ── Spinner ────────────────────────────────────────── */
.spinner {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.12);
  border-top-color: var(--brand);
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Status / error bar ─────────────────────────────── */
.status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--glass);
  color: rgba(238,240,245,.82);
  font-size: 13.5px;
  margin: 10px 0;
}
.status--error {
  border-color: rgba(230,57,70,.35);
  background: rgba(230,57,70,.08);
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--glass-2);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background .12s, border-color .12s, transform .12s;
}
.btn:hover {
  background: rgba(230,57,70,.13);
  border-color: rgba(230,57,70,.40);
  transform: translateY(-1px);
}
.retry { margin-left: auto; white-space: nowrap; }

/* ════════════════════════════════════════════════════════
   POST PAGE  (post.html)
   ════════════════════════════════════════════════════════ */

/* Reading-progress bar — fixed at top, animated by JS on scroll */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #ff8c69);
  box-shadow: 0 0 12px rgba(230,57,70,.60);
  z-index: 100;
  transition: width .08s linear;
  pointer-events: none;
}

/* Back navigation */
.post-nav { padding: 14px 0 0; }
.post-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--glass);
  transition: color .12s, background .12s, border-color .12s;
}
.post-nav__back:hover {
  color: var(--text);
  background: var(--glass-2);
  border-color: rgba(230,57,70,.28);
}

.post-wrap { padding: 0 0 56px; }
.post {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-top-color: rgba(255,255,255,.13);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 12px;
}
.post__hero { background: rgba(255,255,255,.03); }
.post__hero img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* All text content constrained to a comfortable reading width */
.post__body { padding: 22px 18px 32px; }
.post__content {
  max-width: 720px;
  margin: 0 auto;
}

/* Meta row */
.post__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.post__cat-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 5px;
  background: rgba(230,57,70,.15);
  border: 1px solid rgba(230,57,70,.35);
  font-size: 10px;
  font-weight: 900;
  color: #fc8f97;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.post__pub-date {
  font-size: 12px;
  color: rgba(238,240,245,.42);
  font-weight: 600;
}
/* Read time badge */
.post__read-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(238,240,245,.38);
  letter-spacing: .01em;
}
.post__read-time::before {
  content: "·";
  font-size: 14px;
  line-height: 1;
  color: rgba(238,240,245,.24);
}
.post__title {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 950;
}
@media (min-width: 600px) { .post__title { font-size: 30px; } }
@media (min-width: 960px) { .post__title { font-size: 38px; } }
.post__desc {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.60;
  font-size: 16px;
  font-weight: 400;
}

/* Share buttons — full-width on mobile, side-by-side on wider */
.share-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.share-row a { text-decoration: none; flex: 1 1 140px; }
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
  transition: background .12s, border-color .12s, transform .10s;
  white-space: nowrap;
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn--fb {
  background: rgba(24,119,242,.14);
  border-color: rgba(24,119,242,.30);
  color: #74aaff;
}
.share-btn--fb:hover {
  background: rgba(24,119,242,.24);
  border-color: rgba(24,119,242,.50);
}
.share-btn--wa {
  background: rgba(37,211,102,.12);
  border-color: rgba(37,211,102,.28);
  color: #5de891;
}
.share-btn--wa:hover {
  background: rgba(37,211,102,.22);
  border-color: rgba(37,211,102,.48);
}
.share-btn svg { flex-shrink: 0; }

/* Article typography */
.article-html {
  margin-top: 22px;
  line-height: 1.84;
  font-size: 16.5px;
  color: rgba(238,240,245,.86);
  letter-spacing: .002em;
}
.article-html p   { margin: 0 0 18px; }
.article-html img { border-radius: 14px; margin: 16px 0; }
.article-html h2,
.article-html h3  {
  margin: 26px 0 10px;
  letter-spacing: -.03em;
  font-weight: 900;
  line-height: 1.15;
}
.article-html h2 { font-size: 22px; }
.article-html h3 { font-size: 18px; }
.article-html a {
  color: rgba(230,57,70,.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(230,57,70,.26);
  transition: border-bottom-color .12s;
}
.article-html a:hover { border-bottom-color: rgba(230,57,70,.68); }
.article-html blockquote {
  margin: 20px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--brand);
  background: rgba(230,57,70,.06);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 16px;
  font-style: italic;
  color: rgba(238,240,245,.78);
}

/* "More Stories" section */
.post-more {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.post-more__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.post-more__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--brand);
  border: 2px solid var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.01em;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.post-more__cta:hover {
  background: #c32d38;
  border-color: #c32d38;
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  border-top: 2px solid rgba(255,255,255,.07);
  background: rgba(4,6,13,.68);
  padding: 22px 0;
  margin-top: 32px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__brand {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.02em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__brand::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(230,57,70,.68);
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 4px; }
.footer__nav a {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color .12s, color .12s, background .12s;
}
.footer__nav a:hover {
  border-color: rgba(230,57,70,.28);
  background: rgba(230,57,70,.09);
  color: #fc8f97;
}
