/* ──────────────────────────────────────────────────────────────
   Bayou City Breastfeeding. Class Page Shared Styles
   Used by:  Classes Hub, Breastfeeding Blueprint,
             Breast Pump Puzzle, Push It Real Good
   Pairs with colors_and_type.css.
   Visual vocabulary matches the Location pages (v3 backdrop,
   lifted translucent cards, pink display + navy body).
   ────────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.page-classes,
body.page-breastfeeding-blueprint,
body.page-breast-pump-puzzle,
body.page-push-it-real-good {
  font-family: var(--font-sans);
  color: var(--navy-500);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── v3 backdrop (shared with Location pages) ────────────── */
/* WP emits body.page-<slug> via functions.php, never body.cls-bg.
   Scope the gradient to the four class page slugs so it applies. */
body.page-classes,
body.page-breastfeeding-blueprint,
body.page-breast-pump-puzzle,
body.page-push-it-real-good {
  background:
    linear-gradient(
      to bottom,
      #FFF6F1 0%,
      #FFE9EE 10%,
      #FFD9E0 22%,
      #FCDED6 36%,
      #E8DFE2 52%,
      #D2DDE8 68%,
      #92A6BC 82%,
      #4A5C75 92%,
      #1F2D40 100%
    ) no-repeat;
  background-attachment: fixed;
}

/* ─── Top nav / mobile menu ───────────────────────────────────
   STRIPPED. The snippet's <nav class="nav"> / .navmenu chrome is
   removed at build time (snippet-to-blocks.py keeps only <section>
   content); GeneratePress provides the global nav/footer with its
   own class names. These rules were dead weight and a collision
   risk against GP markup, so they are not shipped. Site nav styling
   lives in the theme, not in this page stylesheet. */

/* ─── Sub-nav (class siblings) ────────────────────────────── */
.cls-subnav {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--gray-300);
}
/* The sticky nav's body padding-top spacer would otherwise show the page
   gradient as a pink band above this first strip. Fill that spacer white so
   the top of the page reads clean under the nav. */
.cls-subnav::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%;
  height: 600px; background: #fff;
}
/* L-015: .cls-subnav is a top-level <section>, so the global
   body.full-width-content section padding-block (56-72px) inflates the strip.
   Override at higher specificity; the __inner padding sets the real strip height. */
.full-width-content .cls-subnav { padding-block: 0; }
.cls-subnav__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 12px 32px 0;          /* no bottom padding: tabs run down to the strip border */
  display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap;
}
.cls-subnav__links {
  display: flex; gap: 4px; flex-wrap: wrap; align-items: flex-end;
}
/* Folder-tab nod: rounded top, sits on the strip's bottom border, active tab connects in */
.cls-subnav__link {
  padding: 9px 17px;
  border: 1px solid var(--gray-300); border-bottom: none;
  border-radius: 9px 9px 0 0;
  margin-bottom: -1px;           /* overlap the 1px baseline so the active tab reads connected */
  background: #c5d2e5;           /* soft blue for inactive tabs (Suzanne-specified) */
  font-family: var(--font-accent); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy-500); text-decoration: none;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.cls-subnav__link:hover { background: #b3c2da; color: var(--navy-700); }
.cls-subnav__link[aria-current="page"] {
  background: var(--navy-600); color: var(--white); border-color: var(--navy-600);
}

/* Mobile (<=880px): tabs -> pill buttons. Folder tabs look broken when they wrap;
   pills don't. Inactive pills keep the soft-pink fill; active pill stays navy-600. */
@media (max-width: 880px) {
  .cls-subnav__inner { padding: 12px 20px; }
  .cls-subnav__links { gap: 8px; width: 100%; }
  .cls-subnav__link {
    border: 1px solid var(--gray-300);   /* restore full border for a pill */
    border-radius: 999px;
    margin-bottom: 0;
  }
}

/* ─── Shared section + heading helpers ────────────────────── */
.cls-section { background: transparent; padding: var(--sec-pad-y) 32px; position: relative; }
.cls-card {
  background: var(--card-lift-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 1px 3px rgba(31,45,64,0.05), 0 12px 32px rgba(31,45,64,0.08);
  border-radius: var(--radius-xl);
}
.cls-eyebrow {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink-500); margin: 0 0 16px;
}
.cls-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--pink-500);
  margin: 0;
  text-wrap: balance;
}
.cls-lede {
  font-size: 16.5px; line-height: 1.65;
  color: var(--navy-500); margin: 0;
  text-wrap: pretty;
}

/* ─── Hub hero ────────────────────────────────────────────── */
/* Full-bleed class photo + scrim (darker on the right, where the text sits);
   bottom fade matches the other hub heroes. */
.cls-hub-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(440px, 54vh, 600px);
}
.cls-hub-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("/wp-content/uploads/2026/05/breastfeeding-class-latch-models-houston-san-antonio.jpg");
  background-size: cover; background-position: center;
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 93%, transparent 100%);
  mask-image: linear-gradient(180deg, black 0%, black 93%, transparent 100%);
}
.cls-hub-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(0,0,0,0.55) 72%, rgba(0,0,0,0.82) 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 93%, transparent 100%);
  mask-image: linear-gradient(180deg, black 0%, black 93%, transparent 100%);
}
/* L-015: the inner's padding drives the height; keep the global
   body.full-width-content section padding-block from re-inflating it. */
.full-width-content .cls-hub-hero { padding-block: 0; }
.full-width-content .cls-hub-list { padding-top: 8px; }
.cls-hub-hero__inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 64px);
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: left;
}
.cls-hub-hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06; letter-spacing: -0.022em;
  color: #fff;
  margin: 0 0 18px; max-width: 520px;
  text-wrap: balance;
}
.cls-hub-hero__title em { font-style: italic; font-weight: 700; color: var(--pink-300); margin-right: 0.2em; }
.cls-hub-hero__blurb {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6; color: rgba(255, 255, 255, 0.92);
  max-width: 480px; margin: 0;
  text-wrap: pretty;
}

/* ─── Hub class cards ─────────────────────────────────────── */
.cls-hub-list { padding-top: 24px; padding-bottom: 24px; }
.cls-hub-list__inner { max-width: 1100px; margin: 0 auto; display: grid; gap: 24px; }
.cls-hub-list__intro { max-width: 760px; margin: 0 auto; text-align: center; font-size: clamp(16px, 1.3vw, 18px); line-height: 1.6; color: var(--navy-500); text-wrap: pretty; }
.cls-hub-row {
  display: grid;
  grid-template-columns: 200px 1fr 1.1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
}
.cls-hub-row__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-accent); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 12px;
}
.cls-hub-row__tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky-400);
}
.cls-hub-row__tag--inperson .cls-hub-row__tag-dot { background: var(--pink-500); }
.cls-hub-row__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15; letter-spacing: -0.018em;
  color: var(--pink-500);
  margin: 0 0 12px;
  text-wrap: balance;
}
.cls-hub-row__meta {
  font-size: 14px; color: var(--navy-500); line-height: 1.5;
  font-weight: 600;
}
.cls-hub-row__meta strong { color: var(--navy-700); font-weight: 700; }
.cls-hub-row__desc {
  font-size: 15px; line-height: 1.6;
  color: var(--navy-500); margin: 0;
  text-wrap: pretty;
}
.cls-hub-row__upcoming {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pink-700);
  background: var(--pink-50);
  padding: 8px 14px; border-radius: 999px;
  display: inline-block;
  margin-top: 14px;
}
.cls-hub-row__cta {
  display: flex; flex-direction: column; gap: 10px;
  align-items: stretch;
  min-width: 180px;
}
.cls-hub-row__cta .btn { width: 100%; }
.cls-hub-row__cta a.btn--text {
  text-align: center;
  font-family: var(--font-accent); font-weight: 700;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pink-600); text-decoration: none;
  padding: 6px 0;
}
.cls-hub-row__cta a.btn--text:hover { color: var(--pink-700); }

@media (max-width: 880px) {
  .cls-hub-row { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .cls-hub-row__thumb { aspect-ratio: 16/9; }
  .cls-hub-row__cta { flex-direction: row; min-width: 0; }
  .cls-hub-row__cta .btn { flex: 1; }
}

/* ─── Calendar / upcoming ─────────────────────────────────── */
.cls-cal__inner { max-width: 1000px; margin: 0 auto; }
.cls-cal__head { text-align: center; margin-bottom: 36px; }
.cls-cal__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.cls-cal__month { padding: 28px 26px; }
.cls-cal__month-name {
  font-family: var(--font-accent); font-weight: 800;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink-500); margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--gray-200);
}
.cls-cal__row {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 14px; padding: 12px 0;
  border-bottom: 1px dashed var(--gray-100);
}
.cls-cal__row:last-child { border-bottom: 0; }
.cls-cal__date {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; color: var(--navy-700); line-height: 1.05;
}
.cls-cal__date small {
  display: block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-400); margin-top: 2px;
}
.cls-cal__class {
  font-size: 13.5px; font-weight: 700;
  color: var(--navy-700); line-height: 1.35;
}
.cls-cal__class small {
  display: block; font-size: 11.5px; font-weight: 600;
  color: var(--navy-400); margin-top: 2px;
  letter-spacing: 0.04em;
}
.cls-cal__class.is-virtual { color: var(--sky-700); }
.cls-cal__class.is-inperson { color: var(--pink-600); }
@media (max-width: 880px) { .cls-cal__grid { grid-template-columns: 1fr; } }

/* ─── Detail page hero ────────────────────────────────────── */
.cls-detail-hero {
  position: relative;
  padding: clamp(56px, 7vw, 88px) 32px clamp(36px, 5vw, 56px);
  overflow: hidden;
  isolation: isolate;
}
.cls-detail-hero__inner {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: start;
}
.cls-detail-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-accent); font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink-600);
  background: rgba(255,255,255,0.7); padding: 8px 16px;
  border: 1px solid rgba(194, 99, 138, 0.2);
  border-radius: 999px; margin-bottom: 22px;
}
.cls-detail-hero__chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink-500); }
.cls-detail-hero__chip--virtual { color: var(--sky-700); border-color: rgba(120,190,217,0.4); }
.cls-detail-hero__chip--virtual .cls-detail-hero__chip-dot { background: var(--sky-500); }
.cls-detail-hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--pink-500);
  margin: 0 0 14px;
  text-wrap: balance;
}
.cls-detail-hero__subtitle {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--navy-700);
  margin: 0 0 26px;
}
.cls-detail-hero__instructor {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600;
  color: var(--navy-500);
  margin-bottom: 28px;
}
.cls-detail-hero__instructor::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-500);
}

/* Quick facts panel */
.cls-facts { padding: 28px 26px; position: sticky; top: 90px; }
.cls-facts__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--pink-500);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--gray-200);
}
.cls-facts__row {
  display: grid; grid-template-columns: 24px 1fr;
  gap: 12px; padding: 10px 0;
}
.cls-facts__row-icon { color: var(--pink-500); margin-top: 2px; }
.cls-facts__row-icon svg { width: 16px; height: 16px; stroke-width: 2; }
.cls-facts__row-label {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-400); margin-bottom: 3px;
}
.cls-facts__row-value {
  font-size: 13.5px; font-weight: 600; color: var(--navy-700);
  line-height: 1.4;
}
.cls-facts__cta {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px dashed var(--gray-200);
  display: flex; flex-direction: column; gap: 10px;   /* tiny gap between stacked buttons */
}
.cls-facts__cta .btn { width: 100%; height: 48px; font-size: 13px; }

@media (max-width: 880px) {
  .cls-detail-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .cls-facts { position: static; }
}

/* ─── Prose section (intro narrative) ─────────────────────── */
.cls-prose__inner { max-width: 760px; margin: 0 auto; }
.cls-prose p {
  font-size: 17px; line-height: 1.7;
  color: var(--navy-500); margin: 0 0 18px;
  text-wrap: pretty;
}
.cls-prose p:last-child { margin-bottom: 0; }

/* ─── Two-column lists (Learn / For Whom / Format) ────────── */
.cls-cols__inner { max-width: 1100px; margin: 0 auto; }
.cls-cols__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.cls-col { padding: 32px 32px; }
.cls-col__eyebrow {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink-500); margin: 0 0 14px;
}
.cls-col__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.012em;
  color: var(--navy-700);
  margin: 0 0 18px;
  text-wrap: balance;
}
.cls-col__list { margin: 0; padding: 0; list-style: none; }
.cls-col__list li {
  position: relative; padding: 12px 0 12px 30px;
  font-size: 15px; line-height: 1.55;
  color: var(--navy-500);
  border-bottom: 1px dashed var(--gray-100);
  text-wrap: pretty;
}
.cls-col__list li:last-child { border-bottom: 0; }
.cls-col__list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 16px; height: 2px;
  background: var(--pink-500); border-radius: 2px;
}
.cls-col--full { grid-column: 1 / -1; }
.cls-col--full .cls-col__body {
  font-size: 16px; line-height: 1.65;
  color: var(--navy-500);
  text-wrap: pretty;
}
@media (max-width: 800px) { .cls-cols__grid { grid-template-columns: 1fr; } }

/* ─── Upcoming dates panel (detail pages) ─────────────────── */
.cls-dates__inner { max-width: 760px; margin: 0 auto; }
.cls-dates__head { text-align: center; margin-bottom: 28px; }
.cls-dates__list { padding: 14px 8px; }
.cls-dates__row {
  display: grid; grid-template-columns: 90px 1fr auto;
  gap: 18px; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px dashed var(--gray-200);
}
.cls-dates__row:last-child { border-bottom: 0; }
.cls-dates__date {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: var(--pink-500); line-height: 1;
}
.cls-dates__date small {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-400); margin-top: 4px;
}
.cls-dates__detail {
  font-size: 14.5px; font-weight: 600; color: var(--navy-700);
  line-height: 1.4;
}
.cls-dates__detail small {
  display: block; font-size: 12.5px; font-weight: 500;
  color: var(--navy-400); margin-top: 2px;
}
.cls-dates__pill {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--pink-50); color: var(--pink-700);
  padding: 6px 12px; border-radius: 999px;
}
.cls-dates__pill--virtual { background: var(--sky-50); color: var(--sky-700); }
.cls-dates__pill--tentative { background: var(--gray-100); color: var(--gray-600); }
@media (max-width: 600px) {
  .cls-dates__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 18px; }
}

/* ─── Testimonials (childbirth class) ─────────────────────── */
.cls-quotes__inner { max-width: 1100px; margin: 0 auto; }
.cls-quotes__head { text-align: center; margin-bottom: 36px; }
.cls-quotes__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.cls-quote { padding: 28px 30px; }
.cls-quote__stars { color: #f5b142; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.cls-quote__body {
  font-size: 15px; line-height: 1.65;
  color: var(--navy-700); margin: 0 0 14px;
  text-wrap: pretty;
}
.cls-quote__meta {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy-400);
}
@media (max-width: 700px) { .cls-quotes__grid { grid-template-columns: 1fr; } }

/* ─── Final CTA (gradient-into-navy) ──────────────────────── */
/* Final CTA → LIGHT frosted card + Case-A fade (enabled below). */
.cls-final {
  position: relative;
  padding: clamp(48px, 7vw, 80px) 24px;
  text-align: center;
  color: var(--navy-500);
  background: transparent;
}
.footer-ombre-blend { display: block; }
.cls-final__inner {
  max-width: 720px; margin: 0 auto;
  background: var(--card-lift-bg); backdrop-filter: var(--card-lift-blur); -webkit-backdrop-filter: var(--card-lift-blur);
  border: 1px solid rgba(255,255,255,0.6); border-radius: var(--radius-xl);
  padding: clamp(40px,5.5vw,60px) clamp(28px,4vw,48px); box-shadow: 0 18px 50px -28px rgba(41,52,72,0.35);
}
.cls-final__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--navy-700); margin: 0 0 16px;
  text-wrap: balance;
}
.cls-final__body {
  color: var(--navy-500);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6; margin: 0 auto 28px;
  max-width: 540px;
}
/* .btn--sky uses its global light-context styling now (white/pink override was for the old navy band) */
.cls-final__sub {
  display: block;
  color: var(--navy-400);
  font-size: 13.5px; margin-top: 14px;
}
.cls-final__back-link {
  display: inline-block; margin-top: 18px;
  font-family: var(--font-accent); font-weight: 700;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-500); text-decoration: none;
}
.cls-final__back-link:hover { color: var(--pink-600); }

/* ─── Featured artwork band ───────────────────────────────── */
.cls-art {
  padding: clamp(28px, 4vw, 56px) 32px clamp(36px, 5vw, 72px);
  position: relative;
}
.cls-art__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
/* Instructor portraits render as circles (headshots). The wide teaching
   photo on Push It Real Good keeps the rectangular --landscape frame. */
.cls-art__frame {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto;
  background: transparent;
}
.cls-art__frame--landscape {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  max-width: none;
  box-shadow: 0 1px 3px rgba(31,45,64,0.06), 0 28px 64px rgba(31,45,64,0.18);
  background: var(--gray-100);
}
.cls-art__frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.cls-art__frame--landscape img { object-position: center center; }
.cls-art__frame::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
  pointer-events: none;
}
.cls-art__frame--landscape::after { border-radius: var(--radius-xl); }
/* Circular frames hide the overlay caption (its left edge would be clipped
   by the round mask); the instructor name + credentials sit in the copy.
   The landscape frame keeps its scene-describing caption. */
.cls-art__caption { display: none; }
.cls-art__frame--landscape .cls-art__caption { display: block; }
.cls-art__caption {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  font-family: var(--font-accent); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.cls-art__copy { max-width: 480px; }
.cls-art__eyebrow {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink-500); margin: 0 0 14px;
}
.cls-art__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.15; letter-spacing: -0.018em;
  color: var(--navy-700);
  margin: 0 0 18px;
  text-wrap: balance;
}
.cls-art__body {
  font-size: 16px; line-height: 1.65;
  color: var(--navy-500);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.cls-art__attr {
  margin-top: 22px;
  font-family: var(--font-accent); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-400);
}
@media (max-width: 880px) {
  .cls-art__inner { grid-template-columns: 1fr; gap: 28px; }
  .cls-art__frame { aspect-ratio: 1 / 1; max-width: 300px; margin: 0 auto; }
  .cls-art__frame--landscape { aspect-ratio: 16 / 10; max-width: 460px; }
}

/* ─── Hub class card thumbnail ────────────────────────────── */
.cls-hub-row__thumb {
  width: 100%; aspect-ratio: 1; height: auto;
  /* thumbs are circular headshots on TRANSPARENT PNGs — no square card behind them (QA10).
     The drop-shadow lives on the img so it follows the circle, not a square box. */
  background: transparent;
  box-shadow: none;
}
.cls-hub-row__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(31,45,64,0.10)) drop-shadow(0 12px 24px rgba(31,45,64,0.16));
}
.cls-hub-row--withart {
  grid-template-columns: 220px 1fr auto;
}
@media (max-width: 880px) {
  .cls-hub-row__thumb { width: 100%; height: 200px; }
}

/* ─── Back-link bar (top of detail pages) ─────────────────── */
.cls-back {
  max-width: 1180px; margin: 0 auto;
  padding: 18px 32px 0;
}
.cls-back a {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink-600); text-decoration: none;
}
.cls-back a:hover { color: var(--pink-700); }
