/* ==========================================================================
   Mila Prints Design — trend-reports.css
   Shared component styles for the Trend Reports hub + per-report landing pages.
   Loads AFTER colors_and_type.css and shared.css.
     · Hub:     /trend-reports        (trend-reports.html, root)        → "trend-reports/trend-reports.css"
     · Report:  /trend-reports/<slug> (trend-reports/<slug>.html, sub) → "trend-reports.css"
   Page-specific one-offs still live in each page's inline <style>.
   Form field styles are ported from get-in-touch.html so the capture form
   reads identically to the contact form (DS tokens only, hairlines, no radius).
   ========================================================================== */

/* ══════════════════════════════════════════
   HUB — intro + reports grid
══════════════════════════════════════════ */
#tr-intro { background: var(--mpd-ivory); }
.tr-intro-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 96px var(--grid-margin) 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 64px;
  align-items: start;
}
.tr-intro-lede {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  line-height: 1.5;
  color: var(--mpd-ink-soft);
  max-width: 30ch;
}
.tr-intro-body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  color: var(--mpd-ink-soft);
  max-width: 60ch;
}
.tr-intro-body p + p { margin-top: 1.2em; }
@media (max-width: 1024px) {
  .tr-intro-inner { grid-template-columns: minmax(0, 1fr); gap: 28px; padding: 64px var(--grid-margin) 8px; }
}

#tr-reports { background: var(--mpd-ivory); }
.tr-reports-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 56px var(--grid-margin) 120px;
}
.tr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}
@media (max-width: 768px) { .tr-grid { grid-template-columns: 1fr; gap: 40px; } }

.tr-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: none;
}
.tr-card-photo {
  width: 100%;
  background: var(--mpd-bone);
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
}
.tr-card-body { display: flex; flex-direction: column; gap: 12px; }
.tr-card-season {
  font-family: var(--font-micro);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mpd-rose);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tr-card-season::before {
  content: '';
  display: block;
  width: 24px; height: 0;
  border-top: 0.5px solid var(--mpd-rose);
}
.tr-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--mpd-ink);
  transition: color 0.2s ease;
}
.tr-card:hover .tr-card-title { color: var(--mpd-forest); }
.tr-card-deck {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--mpd-ink-soft);
  max-width: 46em;
}
.tr-card-cta {
  font-family: var(--font-micro);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mpd-ink-mute);
  margin-top: 4px;
  transition: color 0.2s ease;
}
.tr-card:hover .tr-card-cta { color: var(--mpd-forest); }

/* ══════════════════════════════════════════
   REPORT PAGE — hero "digital cover"
══════════════════════════════════════════ */
.tr-hero {
  background: var(--mpd-ink-deep);
  position: relative;
  overflow: hidden;
}
.tr-hero-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 168px var(--grid-margin) 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: 72px;
  align-items: center;
}
.tr-hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mpd-rose);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tr-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 0;
  border-top: 0.5px solid var(--mpd-rose);
  opacity: 0.6;
  flex-shrink: 0;
}
.tr-hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--mpd-ivory);
}
.tr-hero-headline .accent { color: var(--mpd-rose); }
.tr-hero-deck {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  line-height: 1.5;
  color: rgba(246,242,236,0.85);
  margin-top: 28px;
  max-width: 42ch;
  padding-left: 22px;
  border-left: 0.5px solid var(--mpd-rose);
}
.tr-hero-meta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-family: var(--font-micro);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,242,236,0.55);
}
.tr-hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.tr-hero-meta span::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--mpd-rose);
  display: inline-block;
}
.tr-hero-actions { margin-top: 44px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* Cover object — the actual report cover render, shown like a product shot */
.tr-hero-cover {
  position: relative;
  display: block;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  outline: 0.5px solid rgba(246,242,236,0.18);
  overflow: hidden;
}
.tr-hero-cover img { width: 100%; height: auto; display: block; }
.tr-hero-cover-tag {
  position: absolute;
  left: 0; bottom: 0;
  font-family: var(--font-micro);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mpd-ivory);
  background: rgba(14,27,25,0.7);
  padding: 8px 12px;
}
@media (max-width: 1024px) {
  .tr-hero-inner { grid-template-columns: minmax(0, 1fr); row-gap: 48px; padding: 140px 32px 72px; }
  .tr-hero-inner > * { min-width: 0; }
  .tr-hero-cover { max-width: 520px; }
}
@media (max-width: 600px) {
  .tr-hero-inner { padding: 120px 24px 56px; }
  .tr-hero-deck { padding-left: 0; border-left: 0; border-top: 0.5px solid var(--mpd-rose); padding-top: 18px; }
}

/* ══════════════════════════════════════════
   REPORT PAGE — what's inside (insight cards)
══════════════════════════════════════════ */
#tr-inside { background: var(--mpd-cream); }
.tr-inside-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 120px var(--grid-margin);
}
.tr-inside-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
.tr-inside-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--mpd-ink);
}
.tr-inside-deck {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.55;
  color: var(--mpd-ink-soft);
  max-width: 44em;
}
@media (max-width: 1024px) {
  .tr-inside-inner { padding: 80px var(--grid-margin); }
  .tr-inside-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

.tr-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
/* Four-chapter reports (e.g. S/S 26) use a 2×2 grid */
.tr-insights.is-four { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) {
  .tr-insights { grid-template-columns: 1fr; gap: 24px; }
  .tr-insights.is-four { grid-template-columns: 1fr; gap: 24px; }
}
/* Solid colour-block insight (no photo) — echoes the report's own colour pages */
.tr-insight.is-solid { background: var(--mpd-berry); }
.tr-insight.is-solid .tr-insight-body { margin-top: auto; }

.tr-insight {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  color: var(--mpd-ivory);
  text-decoration: none;
}
.tr-insight-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  transition: transform var(--dur-image) var(--ease-standard);
}
.tr-insight:hover .tr-insight-photo { transform: scale(1.04); }
.tr-insight-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(14,27,25,0.86) 0%, rgba(14,27,25,0.35) 55%, rgba(14,27,25,0.15) 100%);
}
.tr-insight-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tr-insight-num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--mpd-rose);
}
.tr-insight-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
}
.tr-insight-note {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(246,242,236,0.8);
  max-width: 32em;
}
.tr-insight-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-micro);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,242,236,0.55);
  transition: color 0.2s ease;
}
a.tr-insight:hover .tr-insight-link { color: rgba(246,242,236,0.9); }
/* Top accent bar — colour-codes each insight to the report's own palette */
.tr-insight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 3;
  background: var(--accent, var(--mpd-rose));
}

/* ══════════════════════════════════════════
   REPORT PAGE — preview gallery
══════════════════════════════════════════ */
#tr-gallery { background: var(--mpd-ivory); }
.tr-gallery-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 110px var(--grid-margin);
}
.tr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 768px) { .tr-gallery-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 480px) { .tr-gallery-grid { grid-template-columns: 1fr; } }
.tr-gallery-figure {
  margin: 0;
  background: var(--mpd-bone);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
}
.tr-gallery-figure .photo-inner { background-size: cover; background-position: center; }

/* ══════════════════════════════════════════
   REPORT PAGE — capture (form + summary)
══════════════════════════════════════════ */
#tr-capture { background: var(--mpd-ink-deep); color: var(--mpd-ivory); scroll-margin-top: 96px; }
.tr-capture-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 120px var(--grid-margin);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .tr-capture-inner { grid-template-columns: 1fr; gap: 56px; padding: 80px var(--grid-margin); }
}
.tr-capture-lhs { display: flex; flex-direction: column; gap: 24px; }
.tr-capture-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  letter-spacing: 0.05em;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--mpd-ivory);
}
.tr-capture-deck {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  line-height: 1.5;
  color: rgba(246,242,236,0.82);
  max-width: 36em;
}
.tr-capture-points { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.tr-capture-points li {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(246,242,236,0.72);
  padding-left: 26px;
  position: relative;
}
.tr-capture-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 12px; height: 0;
  border-top: 0.5px solid var(--mpd-rose);
}
.tr-capture-fineprint {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(246,242,236,0.5);
  margin-top: 8px;
  max-width: 40em;
}

/* ── Form panel ── (ported from get-in-touch DS form) */
.tr-form {
  background: rgba(246,242,236,0.04);
  border: 0.5px solid rgba(246,242,236,0.18);
  border-top: 2px solid var(--mpd-rose);
  padding: 16px 44px 44px;
  position: relative;
}
@media (max-width: 600px) { .tr-form { padding: 12px 24px 32px; } }
.tr-form .field {
  display: block;
  border-bottom: 0.5px solid rgba(246,242,236,0.25);
  padding: 26px 0 16px;
  position: relative;
  transition: border-color 0.22s ease;
}
.tr-form .field:focus-within { border-bottom-color: var(--mpd-rose); }
.tr-form .field-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-micro);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,236,0.6);
  margin-bottom: 12px;
  transition: color 0.22s ease;
}
.tr-form .field:focus-within .field-label { color: var(--mpd-rose); }
.tr-form .field-numeral {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mpd-rose);
}
.tr-form .field-input,
.tr-form .field-select {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.1vw, 1.2rem);
  line-height: 1.5;
  color: var(--mpd-ivory);
  letter-spacing: 0;
}
.tr-form .field-input::placeholder {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1rem;
  color: rgba(246,242,236,0.4);
}
@media (hover: hover) and (pointer: fine) {
  .tr-form .field-input, .tr-form .field-select { cursor: none; }
}
.tr-form .field-select-wrap { position: relative; display: block; }
.tr-form .field-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
}
.tr-form .field-select option { color: var(--mpd-ink); background: var(--mpd-ivory); }
.tr-form .field-select.is-empty { color: rgba(246,242,236,0.4); font-family: var(--font-editorial); font-style: italic; }
.tr-form .field-select-wrap::after {
  content: '';
  position: absolute;
  right: 6px; top: 50%;
  width: 9px; height: 9px;
  margin-top: -7px;
  border-right: 0.5px solid var(--mpd-ivory);
  border-bottom: 0.5px solid var(--mpd-ivory);
  transform: rotate(45deg);
  pointer-events: none;
  transition: border-color 0.22s ease;
}
.tr-form .field:focus-within .field-select-wrap::after { border-color: var(--mpd-rose); }

/* Consent + footer */
.tr-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 0 0;
}
.tr-form-consent input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 3px;
  border: 0.5px solid rgba(246,242,236,0.5);
  background: transparent;
  cursor: none;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.tr-form-consent input:checked { background: var(--mpd-rose); border-color: var(--mpd-rose); }
.tr-form-consent input:checked::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 4px; height: 9px;
  border-right: 1.5px solid var(--mpd-ink-deep);
  border-bottom: 1.5px solid var(--mpd-ink-deep);
  transform: rotate(45deg);
}
.tr-form-consent input:focus-visible { outline: 1px solid var(--mpd-rose); outline-offset: 3px; }
.tr-form-consent label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(246,242,236,0.6);
}
.tr-form-footer { display: flex; flex-direction: column; gap: 20px; padding-top: 32px; }
.tr-form-submit { align-self: flex-start; }
.tr-form-meta {
  font-family: var(--font-micro);
  font-size: var(--type-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,242,236,0.45);
}
/* Submit pending hairline fill */
.tr-form-submit { position: relative; overflow: hidden; }
.tr-form-submit::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--mpd-rose);
  transition: width 700ms cubic-bezier(0.19,1,0.22,1);
}
.tr-form-submit.is-pending::after { width: 100%; }
/* Honeypot — visually removed, kept in tab order out */
.tr-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* Success state */
.tr-form-success {
  display: none;
  padding: 16px 0 8px;
}
.tr-form.is-sent .field,
.tr-form.is-sent .tr-form-consent,
.tr-form.is-sent .tr-form-footer { display: none; }
.tr-form.is-sent .tr-form-success { display: block; }
.tr-form-success-line {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--mpd-rose);
  margin-bottom: 24px;
}
.tr-form-error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--mpd-rose);
  padding-top: 16px;
}
.tr-form.has-error .tr-form-error { display: block; }

/* ══════════════════════════════════════════
   REPORT PAGE — CTA bridge to services
══════════════════════════════════════════ */
#tr-bridge { background: var(--mpd-forest); color: var(--mpd-ivory); }
.tr-bridge-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 110px var(--grid-margin);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 1024px) { .tr-bridge-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px var(--grid-margin); } }
.tr-bridge-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--mpd-ivory);
}
.tr-bridge-headline em {
  display: block;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  letter-spacing: 0;
  text-transform: none;
  color: var(--mpd-rose);
  margin-top: 18px;
  line-height: 1.4;
}
.tr-bridge-ctas { display: flex; flex-direction: column; gap: 30px; justify-content: flex-end; }
.tr-bridge-block { border-top: 0.5px solid rgba(246,242,236,0.18); padding-top: 26px; }
.tr-bridge-label {
  font-family: var(--font-micro);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,242,236,0.4);
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   "Offered by the studio" note near form CTA
══════════════════════════════════════════ */
.tr-capture-offer {
  font-family: var(--font-micro);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,242,236,0.38);
  margin-top: -4px;
}

/* ══════════════════════════════════════════
   TIME-GATE — shown until full-report release date
══════════════════════════════════════════ */
.tr-gate-soon {
  padding: 48px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tr-gate-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mpd-ivory);
  line-height: 1.05;
}
.tr-gate-note {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  color: rgba(246,242,236,0.68);
  max-width: 40em;
}
.tr-gate-date {
  font-family: var(--font-micro);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mpd-rose);
  padding-left: 26px;
  position: relative;
}
.tr-gate-date::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 14px; height: 0;
  border-top: 0.5px solid var(--mpd-rose);
}
.tr-gate-chapters { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.tr-gate-chapter-link {
  font-family: var(--font-micro);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,242,236,0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
}
.tr-gate-chapter-link::before {
  content: '';
  width: 18px; height: 0;
  border-top: 0.5px solid var(--mpd-rose);
  flex-shrink: 0;
  opacity: 0.6;
}
.tr-gate-chapter-link:hover { color: var(--mpd-rose); }

/* ══════════════════════════════════════════
   HUB — archive section divider
══════════════════════════════════════════ */
.tr-archive-label {
  font-family: var(--font-micro);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mpd-ink-mute);
  padding: 56px 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.tr-archive-label::after {
  content: '';
  flex: 1;
  height: 0;
  border-top: 0.5px solid currentColor;
  opacity: 0.3;
}

/* HUB — featured editorial row (2-col: image + text panel) */
.tr-featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  padding: 56px 0 80px;
  align-items: center;
}
.tr-featured-image {
  display: block;
  position: relative;
  overflow: hidden;
}
.tr-featured-image .photo-inner { aspect-ratio: 3/2; }
.tr-featured-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tr-featured-badge {
  font-family: var(--font-micro);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mpd-forest);
  display: flex;
  align-items: center;
  gap: 14px;
}
.tr-featured-badge::before {
  content: '';
  width: 28px;
  border-top: 1px solid var(--mpd-forest);
}
.tr-featured-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mpd-ink);
  line-height: 1.05;
}
.tr-featured-deck {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  color: var(--mpd-ink-soft);
  max-width: 48ch;
}
.tr-featured-chapters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.tr-featured-chapter-link {
  font-family: var(--font-micro);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mpd-ink-mute);
  text-decoration: none;
  transition: color 0.2s ease;
}
.tr-featured-chapter-link:hover { color: var(--mpd-forest); }
@media (max-width: 1024px) {
  .tr-featured-row { gap: 32px 40px; }
  .tr-featured-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
}
@media (max-width: 768px) {
  .tr-featured-row { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 56px; }
  .tr-featured-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ══════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .tr-card-title, .tr-card-cta,
  .tr-insight-photo, .tr-form .field, .tr-form .field-label,
  .tr-form-submit::after, .tr-form-consent input { transition: none; }
}
