/*
Theme Name: JungleLook Blog
Theme URI: https://junglelook.co.uk/
Author: Sameer
Author URI: https://junglelook.co.uk/
Description: Blog theme matching the JungleLook one-pager design system — cream background, deep navy text, magenta-pink accent, rounded pill buttons, faint grid motif. Provides a styled blog list (hero + featured + category filter + card grid) and a long-form single-post layout (breadcrumb, byline, sticky table of contents, prose, audit CTA, related posts). Missing featured images fall back to the brand SVG placeholder by category.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: junglelook-blog
*/

/* =====================================================================
   JungleLook Blog stylesheet
   ---------------------------------------------------------------------
   Matches the live junglelook.co.uk design system:
   cream background, deep navy text, magenta-pink accent, rounded pill
   buttons, faint grid motif, eyebrow label above each heading.

   FONTS: the live wordmark and headings use a rounded geometric sans.
   Poppins is the closest match and is loaded from Google Fonts (enqueued
   in functions.php). If the site self-hosts a different family, swap the
   --font-display / --font-body variables below. Nothing else changes.
   ===================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Brand colours (tokens from the JungleLook brand) */
  --cream:        #FAF1E8;  /* page background */
  --card:         #FFFCF7;  /* near-white card surface on cream */
  --navy:         #1A1B3A;  /* primary text + dark surfaces */
  --navy-soft:    #20223F;  /* slightly lifted dark surface */
  --pink:         #E91E63;  /* brand magenta: fills, large headings, accents */
  --pink-dark:    #C2185B;  /* hover, and small text on cream (AA-safe) */
  --pink-text:    #C2185B;  /* magenta used for small text/links to pass WCAG AA */
  --pink-tint:    #FCE4EC;  /* soft pink callout background */

  /* Neutrals */
  --ink-muted:    #5A5B73;  /* meta text, captions (>= 4.5:1 on cream/card) */
  --line:         #EBE1D2;  /* hairline borders on cream */
  --line-strong:  #DCCFB9;  /* slightly stronger divider */
  --grid-line:    rgba(26, 27, 58, 0.05); /* faint grid motif */

  /* Type */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  /* Spacing + shape */
  --radius:       18px;
  --radius-lg:    26px;
  --pill:         999px;
  --maxw:         1180px;     /* site container */
  --measure:      68ch;       /* comfortable long-form reading width */
  --shadow:       0 2px 4px rgba(26,27,58,.04), 0 14px 34px rgba(26,27,58,.07);
  --shadow-hover: 0 6px 10px rgba(26,27,58,.06), 0 22px 50px rgba(26,27,58,.12);
  --ease:         cubic-bezier(.2, .7, .2, 1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* 17px base for readable long-form */
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img, svg { max-width: 100%; display: block; height: auto; }

a { color: var(--pink-text); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  font-weight: 700;
}

/* ---- Accessibility: skip link + focus ---- */
.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--pill);
  font-family: var(--font-display);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}

/* screen-reader only helper */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-text);     /* darker magenta keeps small caps AA-safe */
  margin: 0 0 .9rem;
}

/* ---- Buttons (rounded pills, matching the live site) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease),
              box-shadow .18s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(233,30,99,.28);
}
.btn--primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,241,232,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 72px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav__brand .j {
  color: var(--navy);
  position: relative;
}
/* The wordmark "J" sits over a magenta half-disc, like the live logo */
.mark { width: 1.15em; height: 1.15em; display: inline-block; flex: none; vertical-align: middle; }
.nav__brand .mark {
  width: 22px; height: 22px; margin-right: 3px;
}
.nav__brand img.nav__logo { height: 34px; width: auto; display: block; }
.nav__links {
  display: none;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--navy);
  padding: 6px 2px;
  position: relative;
  transition: color .15s var(--ease);
}
.nav__links a:hover { color: var(--pink-text); }
/* Keep the only badged link on a single line so the pill stays inline */
.nav__links a:has(.nav__soon) { white-space: nowrap; }
.nav__links a[aria-current="page"],
.nav__links li.current-menu-item > a,
.nav__links li.current_page_item > a { color: var(--pink-text); }
.nav__links a[aria-current="page"]::after,
.nav__links li.current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.nav__cta { display: none; }
.nav__soon {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--pink-text);
  background: var(--pink-tint);
  border-radius: 999px;
  padding: 2px 7px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1;
}

/* Mobile menu toggle */
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 10px 0 18px;
}
.nav__mobile.is-open { display: block; }
.nav__mobile ul { list-style: none; margin: 0; padding: 0; }
.nav__mobile a {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 12px;
}
.nav__mobile a:hover { background: var(--pink-tint); color: var(--pink-dark); }
.nav__mobile .btn { margin: 12px 22px 0; width: calc(100% - 44px); justify-content: center; }

@media (min-width: 1120px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* =====================================================================
   BLOG INDEX
   ===================================================================== */

/* faint grid backdrop used behind the index header + featured area */
.grid-bg {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 34px 34px;
}

.blog-hero {
  padding: 64px 0 18px;
  text-align: center;
}
.blog-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 800;
  max-width: 16ch;
  margin-inline: auto;
}
.blog-hero p {
  color: var(--ink-muted);
  font-size: 1.12rem;
  max-width: 56ch;
  margin: 1rem auto 0;
}

/* Featured post */
.featured {
  padding: 26px 0 8px;
}
.featured__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.featured__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.featured__media { position: relative; min-height: 230px; background: var(--navy); }
.featured__media svg,
.featured__media img { width: 100%; height: 100%; object-fit: cover; }
.featured__body { padding: 30px 28px 34px; }
.featured__body .eyebrow { margin-bottom: .7rem; }
.featured__body h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  margin-bottom: .5rem;
}
.featured__body h2 a { color: var(--navy); }
.featured__card:hover h2 a { color: var(--pink-text); }
.featured__excerpt { color: var(--ink-muted); margin: 0 0 1.1rem; max-width: 58ch; }

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-tint);
  padding: 6px 12px;
  border-radius: var(--pill);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--ink-muted);
  font-size: .9rem;
}
.meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }
.meta strong { color: var(--navy); font-weight: 600; }

@media (min-width: 820px) {
  .featured__card { grid-template-columns: 1.05fr 1fr; }
  .featured__media { min-height: 100%; }
}

/* Filter bar */
.filter {
  padding: 34px 0 8px;
}
.filter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.filter__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-right: 6px;
}
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  background: var(--card);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--pill);
  padding: 9px 18px;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.chip:hover { border-color: var(--navy); }
.chip[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Card grid */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding: 26px 0 10px;
}
@media (min-width: 620px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
  /* page-load reveal */
  opacity: 0;
  transform: translateY(14px);
  animation: rise .5s var(--ease) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card.is-hidden { display: none; }

.card__media { aspect-ratio: 16 / 10; background: var(--navy); }
.card__media svg,
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card__readtime { color: var(--ink-muted); font-size: .82rem; font-weight: 500; }
.card h3 { font-size: 1.22rem; font-weight: 700; margin: 0; line-height: 1.2; }
/* stretched link: makes the whole card clickable while keeping one
   accessible link (the title) for screen readers and keyboard users */
.card h3 a { color: var(--navy); }
.card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card:hover h3 a { color: var(--pink-text); }
.card__excerpt { color: var(--ink-muted); font-size: .95rem; margin: 0; }
.card__foot { margin-top: auto; color: var(--ink-muted); font-size: .85rem; }

.results-status { position: absolute; left: -9999px; }

/* Pagination (older / newer posts) */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 26px 0 10px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  background: var(--card);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--pill);
  transition: all .15s var(--ease);
}
.pagination .page-numbers:hover { border-color: var(--navy); }
.pagination .page-numbers.current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.pagination .page-numbers.dots { border-color: transparent; background: transparent; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 0;
  color: var(--ink-muted);
}

/* =====================================================================
   ARTICLE
   ===================================================================== */
.breadcrumb {
  padding: 26px 0 0;
  font-size: .88rem;
  color: var(--ink-muted);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--pink-text); }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 600; }
.breadcrumb .sep { color: var(--line-strong); }

.article-head { padding: 18px 0 26px; }
.article-head h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  max-width: 20ch;
}
.article-head .standfirst {
  font-size: 1.2rem;
  color: var(--ink-muted);
  max-width: var(--measure);
  margin: .6rem 0 0;
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.byline__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex: none;
  overflow: hidden;
}
.byline__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.byline__who { font-family: var(--font-display); font-weight: 600; color: var(--navy); line-height: 1.3; }
.byline__meta { color: var(--ink-muted); font-size: .9rem; }

.article-hero-media {
  margin: 8px 0 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
  aspect-ratio: 21 / 9;
}
.article-hero-media svg,
.article-hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Article body: two columns on desktop (TOC + prose) */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 30px 0 10px;
}
@media (min-width: 1000px) {
  .article-layout { grid-template-columns: 230px minmax(0, 1fr); gap: 56px; }
}

/* Table of contents */
.toc {
  font-size: .92rem;
}
.toc__inner { position: sticky; top: 92px; }
.toc h2 {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.toc a {
  display: block;
  color: var(--ink-muted);
  padding: 7px 12px;
  border-left: 2px solid var(--line);
  font-weight: 500;
  transition: all .15s var(--ease);
}
.toc a:hover { color: var(--navy); border-color: var(--line-strong); }
.toc a.is-active { color: var(--pink-text); border-color: var(--pink); background: var(--pink-tint); border-radius: 0 8px 8px 0; }

@media (max-width: 999px) {
  .toc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px 8px; }
  .toc__inner { position: static; }
  .toc ol { gap: 0; }
}

/* Prose */
.prose { max-width: var(--measure); font-size: 1.12rem; }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 2.4rem;
  scroll-margin-top: 92px;
}
.prose h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-top: 1.8rem;
  scroll-margin-top: 92px;
}
.prose p { margin: 0; }
.prose a { color: #fff; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1.5px; }
.prose a:hover { color: #fff; }
.prose ul, .prose ol { margin: 0; padding-left: 1.3em; }
.prose li + li { margin-top: .5rem; }
.prose strong { font-weight: 700; }
.prose img { border-radius: var(--radius); }
.prose figure { margin: 1.6rem 0; }
.prose figcaption { color: var(--ink-muted); font-size: .9rem; margin-top: .5rem; text-align: center; }
.prose blockquote {
  margin: 1.6rem 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--pink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}
.prose blockquote p { margin: 0; }
.prose .pull,
.prose .wp-block-pullquote {
  background: var(--pink-tint);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.prose .wp-block-image { margin: 1.6rem 0; }
.prose .alignwide { width: 100%; }
.prose code, .prose pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(26,27,58,.05);
  border-radius: 8px;
}
.prose code { padding: .15em .4em; font-size: .9em; }
.prose pre { padding: 18px 20px; overflow:auto; }
.prose pre code { background: transparent; padding: 0; }

/* In-article CTA back to the free audit */
.audit-cta {
  margin: 40px 0 10px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
}

.audit-cta .eyebrow { color: #FF7FA8; }
.audit-cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 22ch; }
.audit-cta p { color: rgba(255,255,255,.78); max-width: 52ch; margin: 0 0 1.4rem; }
.audit-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.audit-cta .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.audit-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Related posts */
.related { padding: 40px 0 10px; border-top: 1px solid var(--line); margin-top: 30px; }
.related h2 { font-size: 1.5rem; margin-bottom: 18px; }

/* =====================================================================
   SITE FOOTER + CONTACT CTA (reused from the live site so it feels
   continuous)
   ===================================================================== */
.contact {
  padding: 70px 0 10px;
}
.contact__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 46px 34px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact__card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; max-width: 18ch; margin-inline: auto; }
.contact__card p { color: var(--ink-muted); max-width: 56ch; margin: 1rem auto 1.6rem; }

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.site-footer__row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.site-footer__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}
.site-footer__links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.site-footer__links a { color: var(--ink-muted); font-weight: 500; }
.site-footer__links a:hover { color: var(--pink-text); }
.site-footer__legal { color: var(--ink-muted); font-size: .85rem; }

@media (min-width: 760px) {
  .site-footer__row { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* WordPress core alignment / caption helpers */
.aligncenter { margin-left: auto; margin-right: auto; }
.alignright { float: right; margin-left: 1.5em; }
.alignleft { float: left; margin-right: 1.5em; }
.wp-caption-text { color: var(--ink-muted); font-size: .9rem; text-align: center; margin-top: .5rem; }
.sticky-flag { /* WP sticky posts handled in template; no visual change required */ }
