/*
Theme Name: Three14
Theme URI: https://three14collective.com
Description: Official theme for Three:14 — an editorial platform for broken leaders, black sheep, and creatives.
Author: Three:14
Version: 2.1.7
Text Domain: three14
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Dark palette — shifted warm (brown-black not cold-black) */
  --c-dark:        #0C0B08;
  --c-dark-2:      #14120E;
  --c-dark-3:      #1D1A14;
  --c-dark-4:      #272319;
  --c-cream:       #F4EFE6;
  --c-cream-2:     #EBE5DB;
  --c-cream-3:     #DDD6CA;
  --c-warm-white:  #FDFAF5;
  --c-gold:        #C8A84B;
  --c-gold-dim:    #A68A38;
  --c-gold-light:  #E8C870;
  --c-rust:        #B55A35;
  --c-terra:       #C4622D;  /* terracotta — secondary accent for labels/UI */
  --c-text-dark:   #141412;
  --c-text-mid:    #4A4640;
  --c-text-light:  #8A857E;
  --c-cream-dim:   #BCB7AD;
  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'DM Sans', Helvetica, sans-serif;
  --nav-h:         72px;
  --max-w:         1140px;
  --max-text:      740px;
  --gutter:        3rem;
  --font-ui:       'DM Sans', Helvetica, sans-serif;
  --radius:        2px;
  --transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);
  /* Grain SVG — reused across dark sections */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  /* Set by JS when announcement bar is visible — used to offset sticky elements */
  --announcement-h: 0px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--c-text-dark);
  background: var(--c-warm-white);
  overflow-x: hidden;
}
body.t14-menu-open,
body.t14-search-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }
::selection { background: var(--c-gold); color: var(--c-dark); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--c-text-dark);
  font-optical-sizing: auto;
  font-variation-settings: 'WONK' 1;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

blockquote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-text-mid);
  border-left: 2px solid var(--c-gold);
  padding-left: 1.75rem;
  margin: 2rem 0;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.t14-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-terra);
  display: block;
  margin-bottom: 0.875rem;
}

.t14-gold-bar {
  width: 32px;
  height: 1.5px;
  background: var(--c-gold);
  margin: 1.25rem 0;
}

.t14-link-arrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.t14-link-arrow::after { content: '→'; transition: transform var(--transition); }
.t14-link-arrow:hover { gap: 0.7rem; }
.t14-link-arrow:hover::after { transform: translateX(3px); }

/* Buttons */
.t14-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.t14-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.t14-btn:hover::after { opacity: 1; }

.t14-btn-gold { background: var(--c-gold); color: var(--c-dark); }
.t14-btn-gold:hover { background: var(--c-gold-light); color: var(--c-dark); }
.t14-btn-gold:focus-visible { outline-color: var(--c-dark); }

.t14-btn-ghost-light {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(244,239,230,0.3);
}
.t14-btn-ghost-light:hover { border-color: var(--c-gold); color: var(--c-gold); background: transparent; }
.t14-btn-ghost-light::after { display: none; }

.t14-btn-dark { background: var(--c-dark); color: var(--c-cream); }
.t14-btn-dark:hover { background: var(--c-dark-3); color: var(--c-cream); }

.t14-btn-ghost-dark {
  background: transparent;
  color: var(--c-text-dark);
  border: 1px solid rgba(20,20,18,0.25);
}
.t14-btn-ghost-dark:hover { background: var(--c-text-dark); color: var(--c-cream); border-color: var(--c-text-dark); }
.t14-btn-ghost-dark::after { display: none; }

/* Reveal animation */
/* Scroll reveal — elements start visible (no JS) and animate in when JS runs */
.t14-reveal { opacity: 1; transform: none; }

body.t14-js .t14-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.t14-js .t14-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.t14-js .t14-reveal-delay-1 { transition-delay: 0.1s; }
body.t14-js .t14-reveal-delay-2 { transition-delay: 0.2s; }
body.t14-js .t14-reveal-delay-3 { transition-delay: 0.3s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  body.t14-js .t14-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Container */
.t14-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.t14-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr) auto;
  align-items: center;
  padding: 0 3rem;
  background: rgba(10,10,9,0.0);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.t14-nav.scrolled {
  background: rgba(10,10,9,0.92);
  border-bottom-color: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.home .t14-nav {
  background: rgba(10,10,9,0.6);
  border-bottom-color: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* nav-light base: transparent bg, transitions to cream when scrolled */
.t14-nav.nav-light {
  background: rgba(253,250,245,0.0);
}
.t14-nav.nav-light.scrolled {
  background: rgba(253,250,245,0.95);
  border-bottom-color: rgba(20,20,18,0.08);
}

/* ---- nav-light NOT scrolled: dark hero underneath → use light text ---- */
.t14-nav.nav-light:not(.scrolled) .t14-nav-logo { color: var(--c-cream); }
.t14-nav.nav-light:not(.scrolled) .t14-brand-accent { color: var(--c-gold); }
.t14-nav.nav-light:not(.scrolled) .t14-nav-links a { color: rgba(244,239,230,0.82); }
.t14-nav.nav-light:not(.scrolled) .t14-nav-links a:hover,
.t14-nav.nav-light:not(.scrolled) .t14-nav-links .current-menu-item > a,
.t14-nav.nav-light:not(.scrolled) .t14-nav-links .current_page_item > a { color: var(--c-gold); }
.t14-nav.nav-light:not(.scrolled) .t14-search-btn { color: rgba(244,239,230,0.82); }
.t14-nav.nav-light:not(.scrolled) .t14-nav-toggle span { background: var(--c-cream); }

/* ---- nav-light scrolled: cream/white bg → use dark text ---- */
.t14-nav.nav-light.scrolled .t14-nav-logo { color: var(--c-text-dark); }
.t14-nav.nav-light.scrolled .t14-brand-accent { color: var(--c-gold); }
.t14-nav.nav-light.scrolled .t14-nav-links a { color: var(--c-text-mid); }
.t14-nav.nav-light.scrolled .t14-nav-links a:hover,
.t14-nav.nav-light.scrolled .t14-nav-links .current-menu-item > a,
.t14-nav.nav-light.scrolled .t14-nav-links .current_page_item > a { color: var(--c-gold); }
.t14-nav.nav-light.scrolled .t14-search-btn { color: var(--c-text-mid); }
.t14-nav.nav-light.scrolled .t14-nav-toggle span { background: var(--c-text-dark); }

/* Mobile drawer is always near-black — links must always be light inside it */
.t14-nav.nav-light .t14-nav-links.open a { color: rgba(244,239,230,0.75) !important; }
.t14-nav.nav-light .t14-nav-links.open a:hover,
.t14-nav.nav-light .t14-nav-links.open .current-menu-item > a { color: var(--c-gold) !important; }

.t14-nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--c-cream);
  letter-spacing: -0.04em;
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
  min-width: 0;
  max-width: 100%;
}
.t14-nav-logo--image {
  width: auto;
  max-width: var(--t14-logo-max-width, 220px);
  max-height: var(--t14-logo-max-height, 48px);
  overflow: hidden;
}
.t14-nav-logo:not(.t14-nav-logo--image) {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.t14-brand-accent { color: var(--c-gold); }
.custom-logo-link { display: inline-flex; align-items: center; max-width: 100%; }
.custom-logo-link.t14-nav-logo--image { justify-self: start; }
.custom-logo {
  display: block;
  max-height: var(--t14-logo-max-height, 48px) !important;
  max-width: min(100%, var(--t14-logo-max-width, 220px)) !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  /* Default: invert to white — nav sits on dark backgrounds by default */
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
/* When scrolled nav-light (cream/white background): show original logo */
.t14-nav.nav-light.scrolled .custom-logo { filter: none; }
body.admin-bar .t14-nav {
  top: 32px;
}
body.admin-bar .custom-logo-link.t14-nav-logo--image,
body.admin-bar .t14-nav-logo--image,
body.admin-bar .custom-logo {
  max-height: var(--t14-logo-max-height, 48px) !important;
  max-width: min(100%, var(--t14-logo-max-width, 220px)) !important;
  width: auto !important;
  height: auto !important;
}

.t14-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 1.5rem;
  overflow: hidden;
}

.t14-nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.t14-nav-links a {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.65);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.t14-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--transition);
}

.t14-nav-links a:hover { color: var(--c-cream); }
.t14-nav-links a:hover::after { width: 100%; }

/* Active / current page — gold so it's unmistakably the page you're on */
.t14-nav-links a.current,
.t14-nav-links .current-menu-item > a,
.t14-nav-links .current_page_item > a,
.t14-nav-links .current-menu-ancestor > a { color: var(--c-gold); }
.t14-nav-links a.current::after,
.t14-nav-links .current-menu-item > a::after,
.t14-nav-links .current_page_item > a::after,
.t14-nav-links .current-menu-ancestor > a::after { width: 100%; background: var(--c-gold); }

.t14-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.t14-nav-cta {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-dark) !important;
  background: var(--c-gold);
  padding: 0.55rem 1.3rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.t14-nav-cta:hover { background: var(--c-gold-light); }
.t14-nav-cta::after { display: none !important; }

/* Search button */
.t14-search-btn {
  background: none;
  border: none;
  color: rgba(244,239,230,0.6);
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.t14-search-btn:hover { color: var(--c-gold); }
.t14-search-btn:focus-visible,
.t14-nav-toggle:focus-visible,
.t14-search-close:focus-visible,
.t14-nav-cta:focus-visible,
.t14-nav-links a:focus-visible,
.t14-footer a:focus-visible,
.t14-btn:focus-visible,
.t14-social-link:focus-visible,
.t14-team-social-link:focus-visible,
.t14-cookie-btn:focus-visible,
.t14-popup-close:focus-visible,
.t14-lb-close:focus-visible,
.t14-back-top:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* Mobile toggle */
.t14-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.t14-nav-toggle span {
  width: 22px; height: 1px;
  background: var(--c-cream);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.t14-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.t14-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.t14-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Search overlay */
.t14-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(10,10,9,0.96);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.t14-search-overlay.open { opacity: 1; pointer-events: all; }

.t14-search-form {
  width: 100%;
  max-width: 680px;
  padding: 0 2rem;
}

.t14-search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid rgba(200,168,75,0.5);
  padding-bottom: 0.75rem;
  gap: 1rem;
}

.t14-search-input-wrap svg { color: var(--c-gold); flex-shrink: 0; }

.t14-search-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--c-cream);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  outline: none;
  line-height: 1.3;
}
.t14-search-input::placeholder { color: rgba(244,239,230,0.2); }

.t14-search-hint {
  font-size: 0.7rem;
  color: rgba(244,239,230,0.25);
  margin-top: 1.25rem;
  letter-spacing: 0.1em;
}

.t14-search-close {
  position: fixed;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: rgba(244,239,230,0.4);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 1101;
}
.t14-search-close:hover { color: var(--c-gold); }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: normal;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.t14-announcement-bar {
  position: relative;
  z-index: 950;
  margin-top: var(--nav-h);
  border-bottom: 1px solid rgba(20,20,18,0.08);
}

.t14-announcement-bar--sticky {
  position: sticky;
  top: var(--nav-h);
}

.t14-announcement-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.95rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.t14-announcement-message {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.t14-announcement-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.t14-announcement-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.65rem 1.1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid currentColor;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}

.t14-announcement-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
  opacity: 0.72;
}

.t14-announcement-close:hover,
.t14-announcement-cta:hover {
  opacity: 1;
}

.t14-announcement-bar--gold {
  background: var(--c-gold);
  color: var(--c-dark);
  border-bottom-color: rgba(20,20,18,0.12);
}

.t14-announcement-bar--gold .t14-announcement-cta:hover,
.t14-announcement-bar--gold .t14-announcement-close:hover {
  background: rgba(20,20,18,0.08);
}

.t14-announcement-bar--dark {
  background: var(--c-dark);
  color: var(--c-cream);
  border-bottom-color: rgba(255,255,255,0.08);
}

.t14-announcement-bar--dark .t14-announcement-cta:hover,
.t14-announcement-bar--dark .t14-announcement-close:hover {
  background: rgba(255,255,255,0.08);
}

.t14-announcement-bar--cream {
  background: var(--c-cream);
  color: var(--c-text-dark);
}

.t14-announcement-bar--cream .t14-announcement-cta:hover,
.t14-announcement-bar--cream .t14-announcement-close:hover {
  background: rgba(20,20,18,0.06);
}

.t14-announcement-close:focus-visible,
.t14-announcement-cta:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

body.admin-bar .t14-announcement-bar {
  margin-top: calc(var(--nav-h) + 32px);
}

body.admin-bar .t14-announcement-bar--sticky {
  top: calc(var(--nav-h) + 32px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.t14-footer {
  background: var(--c-dark);
  padding: 5rem 3rem 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.t14-footer::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 256px 256px;
  opacity: 0.055;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.t14-footer-brand .t14-nav-logo { font-size: 1.6rem; display: inline-block; margin-bottom: 1rem; }
.t14-footer-brand p {
  font-size: 0.82rem;
  color: var(--c-cream-dim);
  opacity: 0.55;
  line-height: 1.75;
  max-width: 240px;
}

.t14-footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

.t14-footer-col ul li { margin-bottom: 0.65rem; }
.t14-footer-col ul a {
  font-size: 0.82rem;
  color: var(--c-cream-dim);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity var(--transition), color var(--transition);
}
.t14-footer-col ul a:hover { color: var(--c-gold); opacity: 1; }

.t14-footer-bottom {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
}
.t14-footer-bottom p {
  font-size: 0.68rem;
  color: var(--c-cream-dim);
  opacity: 0.35;
  letter-spacing: 0.08em;
}
.t14-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.t14-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition), transform var(--transition);
  text-decoration: none;
}
.t14-footer-social-link:hover {
  color: var(--c-gold);
  transform: translateY(-2px);
}

/* ============================================================
   NEWSLETTER BAR
   ============================================================ */
.t14-newsletter {
  background: var(--c-dark-2);
  padding: 4.5rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.t14-newsletter h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.t14-newsletter p { color: var(--c-cream-dim); font-size: 0.9rem; opacity: 0.65; margin-bottom: 2rem; }

.t14-newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
}
.t14-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.25);
  border-right: none;
  color: var(--c-cream);
  font-size: 0.875rem;
  padding: 0.85rem 1.2rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}
.t14-newsletter-form input::placeholder { color: rgba(188,183,173,0.35); }
.t14-newsletter-form input:focus { border-color: var(--c-gold); }
.t14-newsletter-form button {
  background: var(--c-gold); color: var(--c-dark);
  border: none; font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 1.6rem; cursor: pointer; white-space: nowrap;
  min-height: 44px;
  transition: background var(--transition);
  border-radius: 0;
}
.t14-newsletter-form button:hover { background: var(--c-gold-light); }
.t14-newsletter-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}
.t14-newsletter-form button:disabled::after {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  border: 1.5px solid var(--c-dark);
  border-top-color: transparent;
  border-radius: 50%;
  animation: t14-spin 0.65s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.t14-growth-signup-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}
.t14-growth-signup-form button:disabled::after {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  border: 1.5px solid var(--c-dark);
  border-top-color: transparent;
  border-radius: 50%;
  animation: t14-spin 0.65s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}
@keyframes t14-spin { to { transform: rotate(360deg); } }

/* ============================================================
   PAGE HERO (shared)
   ============================================================ */
.t14-page-hero {
  background: var(--c-dark);
  padding: calc(var(--nav-h) + 5rem) var(--gutter) 5rem;
  position: relative;
  overflow: hidden;
}

.t14-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: grayscale(0.18) saturate(0.8);
}

.t14-page-hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  bottom: -2vw;
  right: -1vw;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.t14-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}
.t14-page-hero.t14-hero-align-center .t14-page-hero-content { text-align: center; }
.t14-page-hero.t14-hero-align-center .t14-page-hero-content p { margin-left: auto; margin-right: auto; }
.t14-page-hero.t14-hero-align-right .t14-page-hero-content { text-align: right; }
.t14-page-hero.t14-hero-align-right .t14-page-hero-content p { margin-left: auto; }
.t14-page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.6);
}
.t14-page-hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,0.95) 0%, rgba(10,10,9,0.45) 55%, rgba(10,10,9,0.2) 100%);
}

.t14-page-hero h1 {
  font-family: var(--font-display);
  color: var(--c-cream);
  margin-bottom: 1.25rem;
  max-width: 820px;
}

.t14-page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--c-cream-dim);
  max-width: 540px;
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 0;
}

/* ============================================================
   ARTICLE CARDS (shared)
   ============================================================ */
.t14-card {
  position: relative;
  overflow: hidden;
  background: var(--c-dark-3);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.t14-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.55);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
}
.t14-card:hover img { transform: scale(1.06); filter: brightness(0.65) saturate(0.75); }

.t14-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(to top, rgba(10,10,9,0.98) 0%, rgba(10,10,9,0.5) 60%, transparent 100%);
  z-index: 2;
  transform: translateY(4px);
  transition: transform var(--transition);
}
.t14-card:hover .t14-card-content { transform: translateY(0); }

.t14-card-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-terra);
  display: block;
  margin-bottom: 0.5rem;
}

.t14-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.2;
  margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
}

.t14-card-meta { font-size: 0.7rem; color: var(--c-cream-dim); opacity: 0.6; }

/* ============================================================
   FORMS (shared)
   ============================================================ */
.t14-form-group { margin-bottom: 1.75rem; }

.t14-form-group label {
  display: block;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  margin-bottom: 0.6rem;
  opacity: 0.75;
}

.t14-form-group input,
.t14-form-group textarea,
.t14-form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200,168,75,0.3);
  color: var(--c-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}
.t14-form-group input::placeholder,
.t14-form-group textarea::placeholder { color: rgba(188,183,173,0.3); }
.t14-form-group input:focus,
.t14-form-group textarea:focus { border-bottom-color: var(--c-gold); }
.t14-form-group textarea { resize: vertical; min-height: 120px; }

.t14-form-success {
  display: none;
  padding: 1.1rem 1.4rem;
  background: rgba(200,168,75,0.1);
  border-left: 2px solid var(--c-gold);
  color: var(--c-gold);
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.t14-form-error {
  display: none;
  padding: 1.1rem 1.4rem;
  background: rgba(181,90,53,0.1);
  border-left: 2px solid var(--c-rust);
  color: var(--c-rust);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Checkbox */
.t14-checkbox-label { display: flex; align-items: flex-start; gap: 0.875rem; cursor: pointer; }
.t14-checkbox-label input[type="checkbox"] { display: none; }
.t14-checkbox-custom {
  width: 18px; height: 18px; min-width: 18px;
  border: 1px solid rgba(200,168,75,0.4);
  margin-top: 2px;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  flex-shrink: 0;
}
.t14-checkbox-label input:checked + .t14-checkbox-custom { background: var(--c-gold); border-color: var(--c-gold); }
.t14-checkbox-label input:checked + .t14-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: 1.5px solid var(--c-dark);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.t14-checkbox-label span:last-child { font-size: 0.82rem; color: var(--c-cream-dim); line-height: 1.65; opacity: 0.8; }

/* ============================================================
   HOMEPAGE
   ============================================================ */
.t14-hero {
  position: relative;
  min-height: 100vh;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 2.5rem) 3rem 5.5rem;
  overflow: hidden;
}

.t14-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,9,0.98) 0%, rgba(10,10,9,0.55) 45%, rgba(10,10,9,0.25) 100%),
    url('https://images.unsplash.com/photo-1519791883288-dc8bd696e667?w=1800&q=80') center/cover no-repeat;
}

.t14-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 256px 256px;
  opacity: 0.55;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.t14-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.5);
}
.t14-hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,0.98) 0%, rgba(10,10,9,0.45) 50%, rgba(10,10,9,0.2) 100%);
}

.t14-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}
.t14-hero-content.t14-hero-align-center {
  text-align: center;
  align-items: center;
}
.t14-hero-content.t14-hero-align-center .t14-hero-sub { margin-left: auto; margin-right: auto; }
.t14-hero-content.t14-hero-align-center .t14-hero-actions { justify-content: center; }
.t14-hero-content.t14-hero-align-right {
  text-align: right;
  align-items: flex-end;
}
.t14-hero-content.t14-hero-align-right .t14-hero-sub { margin-left: auto; }
.t14-hero-content.t14-hero-align-right .t14-hero-actions { justify-content: flex-end; }
.t14-hero-content .t14-label,
.t14-hero-content h1,
.t14-hero-content .t14-hero-sub,
.t14-hero-content .t14-hero-actions {
  width: 100%;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.t14-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--c-cream);
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  max-width: min(100%, 900px);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 72, 'WONK' 1;
}
.t14-hero h1 em { font-style: italic; color: rgba(244,239,230,0.55); font-weight: 400; }

.t14-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--c-cream-dim);
  max-width: min(100%, 480px);
  line-height: 1.8;
  margin-bottom: 2.75rem;
  opacity: 0.75;
}

.t14-hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.t14-hero-scroll,
.t14-hero-scroll-line { display: none; }

.t14-pathways {
  background: linear-gradient(to bottom, var(--c-dark) 0%, var(--c-dark-2) 100%);
  padding: 0 0 2.5rem;
  position: relative;
  margin-top: -2.5rem;
  z-index: 3;
}
.t14-pathways-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.t14-pathways-grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
}
.t14-pathways-grid--count-2 {
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.t14-pathways-grid--count-1 {
  grid-template-columns: minmax(280px, 420px);
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}
.t14-pathway-card {
  background: rgba(20,20,18,0.96);
  padding: 2rem 1.6rem;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform var(--transition), background var(--transition);
}
.t14-pathway-card:hover {
  transform: translateY(-4px);
  background: #1B1B18;
}
.t14-pathway-label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-terra);
}
.t14-pathway-card h3 {
  color: var(--c-cream);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.t14-pathway-card p {
  color: var(--c-cream-dim);
  font-size: 0.84rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  opacity: 0.82;
}

/* MISSION */
.t14-mission {
  background: var(--c-dark-2);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}
.t14-mission::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 256px 256px;
  opacity: 0.06;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.t14-mission-inner { position: relative; z-index: 1; }
.t14-mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}
.t14-mission-left h2 {
  font-family: var(--font-display);
  color: var(--c-cream);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-top: 0.5rem;
  line-height: 1.18;
}
.t14-mission-right blockquote {
  color: var(--c-cream-dim);
  opacity: 0.85;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  margin-bottom: 1.75rem;
  border-left-color: var(--c-gold);
}
.t14-mission-right p {
  color: rgba(188,183,173,0.7);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 0;
}

/* ARTICLES STRIP */
.t14-articles {
  background: var(--c-warm-white);
  padding: 7rem 0;
}
.t14-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
}
.t14-section-header > div {
  max-width: 42rem;
}
.t14-section-header h2 {
  font-family: var(--font-display);
  color: var(--c-text-dark);
  margin-top: 0.4rem;
}
.t14-section-intro {
  color: var(--c-text-mid);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.t14-popular-section {
  background: var(--c-cream);
  padding: 6rem 0;
}
.t14-topic-section {
  background: var(--c-warm-white);
  padding: 4.5rem 0 1rem;
}
.t14-popular-section,
.t14-topic-section,
.t14-featured-article,
.t14-browse-section,
.t14-growth-signup,
.t14-more-articles,
.t14-values-section,
.t14-team-grid-section,
.t14-connect-section,
.t14-prayer-video-section,
.t14-prayer-form-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.t14-topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.t14-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--c-cream-3);
  background: var(--c-cream);
  text-decoration: none;
  color: var(--c-text-dark);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.t14-topic-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(200,168,75,0.45);
  box-shadow: 0 14px 30px rgba(10,10,9,0.05);
}
.t14-topic-pill span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.t14-topic-pill strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(200,168,75,0.12);
  color: var(--c-gold-dim);
  font-size: 0.75rem;
}
.t14-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.t14-popular-card {
  background: var(--c-warm-white);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--c-cream-3);
  box-shadow: 0 16px 34px rgba(10,10,9,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.t14-popular-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(10,10,9,0.1);
}
.t14-popular-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-cream-2);
}
.t14-popular-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 0.5s ease;
}
.t14-popular-card:hover .t14-popular-card-img img {
  transform: scale(1.05);
}
.t14-popular-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.t14-popular-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.22;
  color: var(--c-text-dark);
  margin: 0;
}
.t14-popular-card-content p {
  margin: 0;
  color: var(--c-text-mid);
  font-size: 0.88rem;
  line-height: 1.8;
}
.t14-popular-card-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.68rem;
  color: var(--c-text-light);
  padding-top: 0.5rem;
}

/* Asymmetric article grid */
.t14-articles-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 320px 260px;
  gap: 1rem;
}
.t14-card {
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 34px rgba(10,10,9,0.08);
}
.t14-card--featured { grid-row: span 2; min-height: 100%; }
.t14-card-content {
  padding: 2.25rem 1.9rem 1.8rem;
}

/* ABOUT STRIP */
.t14-about-strip {
  background: var(--c-cream);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.t14-about-strip-img {
  overflow: hidden;
  position: relative;
}
.t14-about-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
  transition: transform 0.8s ease;
}
.t14-about-strip:hover .t14-about-strip-img img { transform: scale(1.03); }
.t14-about-strip-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--c-cream) 100%);
  pointer-events: none;
}
.t14-about-strip-text {
  padding: 5rem 4rem 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.t14-about-strip-text h2 {
  font-family: var(--font-display);
  color: var(--c-text-dark);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.t14-about-strip-text h2 em { font-style: italic; color: var(--c-text-mid); }
.t14-about-strip-text p { color: var(--c-text-mid); font-size: 0.92rem; line-height: 1.9; }

/* CONNECT CTA */
.t14-cta-section {
  background: var(--c-dark-3);
  padding: 9rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.t14-cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 256px 256px;
  opacity: 0.06;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.t14-cta-section::before {
  content: none; /* Removed — "3:14" watermark added no meaning, borrowed a design trope */
}
.t14-cta-section h2 {
  font-family: var(--font-display);
  color: var(--c-cream);
  max-width: 680px;
  margin: 0.75rem auto 1.5rem;
  position: relative; z-index: 1;
}
.t14-cta-section p {
  color: var(--c-cream-dim);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 3rem;
  opacity: 0.65;
  position: relative; z-index: 1;
  line-height: 1.8;
}
.t14-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ============================================================
   ARTICLES PAGE
   ============================================================ */
.t14-filter {
  background: var(--c-dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: calc(var(--nav-h) + var(--announcement-h, 0px));
  z-index: 99;
}
.t14-filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.t14-filter-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
.t14-filter-tabs::-webkit-scrollbar { display: none; }

.t14-filter-btn {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(188,183,173,0.5);
  text-decoration: none;
  padding: 1.2rem 1.25rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
  display: block;
}
.t14-filter-btn:hover { color: var(--c-cream-dim); }
.t14-filter-btn.active { color: var(--c-gold); border-bottom-color: var(--c-gold); }

.t14-filter-search-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  color: rgba(188,183,173,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.t14-filter-search-mini:hover { color: var(--c-gold); border-color: rgba(200,168,75,0.3); }

/* Featured article */
.t14-featured-article {
  background: var(--c-dark);
  padding: 4rem 0;
}
.t14-featured-shell {
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 0 2rem;
}
.t14-featured-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 460px);
  gap: 0;
  align-items: stretch;
  background: var(--c-cream);
  border: 1px solid var(--c-cream-3);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(10,10,9,0.12);
}
.t14-featured-img {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--c-dark-4);
}
.t14-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 0.7s ease;
}
.t14-featured-img:hover img { transform: scale(1.04); }

.t14-featured-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.t14-featured-img--placeholder {
  background:
    radial-gradient(circle at 70% 30%, rgba(200,168,75,0.14), transparent 30%),
    linear-gradient(135deg, #161613 0%, #0A0A09 100%);
}
.t14-featured-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
  position: relative;
}
.t14-featured-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,9,0.88) 0%, rgba(10,10,9,0.2) 50%, rgba(10,10,9,0) 100%);
}
.t14-featured-placeholder-mark,
.t14-featured-placeholder-label {
  position: relative;
  z-index: 1;
}
.t14-featured-placeholder-mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  color: rgba(200,168,75,0.16);
}
.t14-featured-placeholder-label {
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.t14-featured-content {
  padding: 3rem 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(253,250,245,0.96) 0%, rgba(244,239,230,0.98) 100%);
}
.t14-featured-tag {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--c-terra); display: block; margin-bottom: 1rem;
}
.t14-featured-content h2 {
  font-family: var(--font-display);
  color: var(--c-text-dark);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}
.t14-featured-content h2 a { color: inherit; text-decoration: none; transition: color var(--transition); }
.t14-featured-content h2 a:hover { color: var(--c-gold); }
.t14-featured-excerpt { font-size: 0.9rem; color: var(--c-text-mid); line-height: 1.85; margin-bottom: 1.5rem; opacity: 0.88; }
.t14-featured-meta { font-size: 0.7rem; color: var(--c-text-light); opacity: 1; margin-bottom: 2rem; }
.t14-featured-meta span { margin: 0 0.45rem; opacity: 0.4; }
.t14-featured-inner.is-placeholder .t14-featured-content {
  border-left: 1px solid var(--c-cream-3);
}

/* Article grid section */
.t14-browse-section {
  background: var(--c-warm-white);
  padding: 5.5rem 0;
}
.t14-browse-section--wide {
  padding-left: 0;
  padding-right: 0;
}
.t14-articles-shell {
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  gap: 2rem;
  align-items: start;
}
.t14-articles-shell.has-left-rail.has-right-rail {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) minmax(220px, 280px);
}
.t14-articles-shell.has-left-rail:not(.has-right-rail) {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}
.t14-articles-shell.has-right-rail:not(.has-left-rail) {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}
.t14-articles-shell:not(.has-left-rail):not(.has-right-rail) {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 1220px);
}
.t14-articles-main { min-width: 0; }
.t14-articles-rail { min-width: 0; }
.t14-articles-rail .t14-ad { width: 100%; }
.t14-articles-rail-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.t14-section-label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-light);
  display: block;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-cream-2);
  margin-bottom: 3rem;
}

/* Masonry-style article list */
.t14-article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.t14-article-list > .t14-ad { grid-column: 1 / -1; }
.t14-widget-area {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.t14-widget-area .widget {
  background: var(--c-cream);
  border: 1px solid var(--c-cream-3);
  padding: 1.25rem;
}
.t14-widget-area .widget-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-text-dark);
}
.t14-widget-area p,
.t14-widget-area li,
.t14-widget-area label,
.t14-widget-area input,
.t14-widget-area select,
.t14-widget-area textarea {
  font-size: 0.82rem;
  color: var(--c-text-mid);
}
.t14-widget-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.t14-widget-area li + li {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-cream-2);
}
.t14-widget-area a {
  color: var(--c-text-dark);
  text-decoration: none;
}
.t14-widget-area a:hover { color: var(--c-gold-dim); }
.t14-widget-area input,
.t14-widget-area select,
.t14-widget-area textarea {
  width: 100%;
  border: 1px solid var(--c-cream-3);
  background: var(--c-warm-white);
  padding: 0.7rem 0.8rem;
}
.t14-widget-area button {
  border: 1px solid var(--c-gold);
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.t14-article-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  background: var(--c-cream);
  overflow: hidden;
  min-height: 100%;
}
.t14-article-row:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(20,20,18,0.07); border-left: 3px solid var(--c-gold); }
.t14-list-card-meta {
  display: flex;
  align-items: center;
  color: var(--c-text-light);
}
.t14-list-card-meta--compact {
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
}

.t14-article-row-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-cream-2);
  flex-shrink: 0;
}
.t14-article-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 0.5s ease;
}
.t14-article-row:hover .t14-article-row-img img { transform: scale(1.05); }

.t14-article-row-placeholder {
  width: 100%; height: 100%;
  background: var(--c-dark-4);
  display: flex; align-items: center; justify-content: center;
}
.t14-article-row-placeholder span {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 900;
  color: rgba(200,168,75,0.2);
}

.t14-article-row-content { padding: 1.6rem 1.6rem 1rem; flex: 1; }
.t14-article-row-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0.4rem 0 0.7rem;
  transition: color var(--transition);
}
.t14-article-row:hover h3 { color: var(--c-gold-dim); }
.t14-article-row-content p { font-size: 0.86rem; color: var(--c-text-mid); line-height: 1.75; margin: 0; }

.t14-article-row-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  white-space: nowrap;
  padding: 0 1.6rem 1.5rem;
  flex-shrink: 0;
}
.t14-article-row-meta span { font-size: 0.68rem; color: var(--c-text-light); }
.t14-article-row-meta .t14-read-time {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-terra);
  background: rgba(196,98,45,0.08);
  padding: 0.2rem 0.6rem;
}

/* No posts */
.t14-no-posts {
  text-align: center;
  padding: 7rem 2rem;
}
.t14-no-posts h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--c-text-dark); margin-bottom: 0.875rem; }
.t14-no-posts p { color: var(--c-text-mid); font-size: 0.9rem; max-width: 380px; margin: 0 auto 2rem; line-height: 1.75; }

.t14-fallback-feed {
  background: var(--c-warm-white);
  padding: 5.5rem 0;
}
.t14-fallback-feed .t14-article-list {
  margin-top: 1rem;
}

/* Pagination */
.t14-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 3.5rem 0 0;
}
.t14-pagination a, .t14-pagination span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-text-mid);
  text-decoration: none;
  padding: 0.65rem 1.1rem;
  border: 1.5px solid var(--c-cream-3);
  background: var(--c-warm-white);
  border-radius: 3px;
  transition: all var(--transition);
  min-width: 40px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Prev / Next get a bit more width since they have text */
.t14-pagination a[href*="paged"],
.t14-pagination .prev,
.t14-pagination .next { padding: 0.65rem 1.4rem; }
.t14-pagination a:hover { border-color: var(--c-gold); color: var(--c-gold); background: rgba(200,168,75,0.06); }
.t14-pagination .current { background: var(--c-dark); color: var(--c-cream); border-color: var(--c-dark); font-weight: 700; }
.t14-pagination .dots { border-color: transparent; background: transparent; color: var(--c-text-light); cursor: default; }

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.t14-single-hero {
  position: relative;
  min-height: 46vh;
  background: var(--c-dark);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.t14-single-hero-img { position: absolute; inset: 0; }
.t14-single-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.55);
}
.t14-single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,0.98) 0%, rgba(10,10,9,0.35) 60%, transparent 100%);
}
.t14-single-hero-dark {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-3) 60%, var(--c-dark-2) 100%);
}
/* Watermark "3:14" shown when there is no featured image */
.t14-single-hero-dark::after {
  content: '3:14';
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: rgba(200, 168, 75, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.t14-single-hero-content {
  position: relative; z-index: 2;
  max-width: 1680px;
  margin: 0 auto;
  padding: 3.5rem 4rem 5rem;
  width: 100%;
}
.t14-single-hero-content h1 {
  font-family: var(--font-display);
  color: var(--c-cream);
  margin: 0.75rem 0 1.25rem;
  max-width: 1180px;
}
.t14-single-meta {
  font-size: 0.72rem;
  color: var(--c-cream-dim);
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.t14-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* Full-width warm background on the <main> so no grey bleeds through on wide screens */
.t14-single {
  background: var(--c-warm-white);
}

.t14-single-layout {
  display: grid;
  align-items: start;
  gap: 4.5rem;
  max-width: 1720px;
  margin: 0 auto;
  padding: 5rem 4rem;
}
.t14-single-layout--has-sidebar {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}
.t14-single-layout--full {
  grid-template-columns: minmax(0, 1fr);
  /* No max-width override — inherits 1720px from base so the section
     fills the page just like every other template. Text readability
     is handled by max-width on the content elements below. */
}

/* Centre the reading column within the full-width layout.
   The section itself stays wide; only the text gets constrained. */
.t14-single-layout--full .t14-single-content,
.t14-single-layout--full .t14-share,
.t14-single-layout--full .t14-single-tags,
.t14-single-layout--full .t14-author-bio {
  margin-left: auto;
  margin-right: auto;
}
.t14-single-sidebar { padding-top: 0.5rem; }
.t14-single-main {
  min-width: 0;
  width: 100%;
}

.t14-single-content {
  max-width: var(--max-text);
  font-size: 1.11rem;
  line-height: 1.95;
  color: var(--c-text-dark);
}
.t14-single-content p { margin-bottom: 1.6rem; }
.t14-single-content h2 { font-family: var(--font-display); font-size: 1.75rem; margin: 3rem 0 1rem; }
.t14-single-content h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 2.25rem 0 0.75rem; }
.t14-single-content blockquote { font-size: 1.25rem; border-left-color: var(--c-gold); color: var(--c-text-mid); margin: 2.5rem 0; }
.t14-single-content img { max-width: 100%; margin: 2.5rem auto; }
.t14-single-content a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 3px; }
.t14-single-content ul, .t14-single-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.t14-single-content li { margin-bottom: 0.5rem; }

.t14-growth-signup {
  max-width: var(--max-text);
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(244,239,230,0.95) 100%);
  border: 1px solid var(--c-cream-3);
  box-shadow: 0 16px 34px rgba(10,10,9,0.05);
}
.t14-growth-signup h3 {
  font-family: var(--font-display);
  color: var(--c-text-dark);
  margin: 0.5rem 0 0.75rem;
}
.t14-growth-signup p {
  color: var(--c-text-mid);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.t14-growth-signup-form {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.t14-growth-signup-form input {
  flex: 1 1 260px;
  min-height: 50px;
  border: 1px solid var(--c-cream-3);
  background: rgba(255,255,255,0.85);
  padding: 0.9rem 1rem;
  color: var(--c-text-dark);
}
.t14-growth-signup-form button {
  min-height: 50px;
  border: 1px solid var(--c-gold);
  background: var(--c-gold);
  color: var(--c-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
  cursor: pointer;
}
.t14-growth-signup-success {
  margin-top: 1rem;
}

/* Share */
.t14-share {
  max-width: var(--max-text);
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--c-cream-2);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.t14-share-label { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-light); }
.t14-share-buttons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.t14-share-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 0.55rem 1rem;
  border: 1px solid var(--c-cream-2);
  color: var(--c-text-mid);
  transition: all var(--transition);
  cursor: pointer; background: none;
}
.t14-share-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }

/* Tags */
.t14-single-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 2.5rem; max-width: var(--max-text); }
.t14-tag {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-mid); border: 1px solid var(--c-cream-3);
  padding: 0.35rem 0.8rem; text-decoration: none; transition: all var(--transition);
}
.t14-tag:hover { border-color: var(--c-gold); color: var(--c-gold); }

/* Author bio */
.t14-author-bio {
  max-width: var(--max-text);
  display: grid; grid-template-columns: 68px 1fr; gap: 1.5rem; align-items: start;
  padding-top: 3rem; border-top: 1px solid var(--c-cream-2); margin-top: 3rem;
}
.t14-author-avatar img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; filter: grayscale(0.15); }
.t14-author-info h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--c-text-dark); margin-bottom: 0.35rem; }
.t14-author-info p { font-size: 0.85rem; color: var(--c-text-mid); line-height: 1.7; margin: 0; }

/* Sidebar ad */
.t14-single-sidebar-sticky { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.t14-widget-area--single { margin-bottom: 1.25rem; }

/* More articles */
.t14-more-articles { background: var(--c-cream); padding: 5.5rem 0; }
.t14-more-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.25rem; margin-top: 2.5rem; }
.t14-more-card { text-decoration: none; color: inherit; }
.t14-more-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--c-dark-4); margin-bottom: 1rem; }
.t14-more-card-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.78); transition: transform 0.5s ease; }
.t14-more-card:hover .t14-more-card-img img { transform: scale(1.05); }
.t14-more-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--c-text-dark); line-height: 1.28; margin: 0.4rem 0 0.5rem; transition: color var(--transition); }
.t14-more-card:hover h4 { color: var(--c-gold-dim); }
.t14-more-card .t14-card-meta { opacity: 0.55; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.t14-about-intro {
  background: var(--c-warm-white);
  padding: 7rem 0;
}
.t14-about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.t14-about-intro-text h2 { font-family: var(--font-display); color: var(--c-text-dark); margin-top: 0.5rem; }

.t14-about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.t14-about-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.65); }
.t14-about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1.25rem; right: -1.25rem;
  width: 55%; height: 55%;
  border: 1.5px solid var(--c-gold);
  z-index: -1;
}

.t14-values-section { background: var(--c-cream); padding: 7rem 0; }
.t14-values-header { margin-bottom: 4rem; }
.t14-values-header h2 { font-family: var(--font-display); color: var(--c-text-dark); margin-top: 0.5rem; }
.t14-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.t14-value-card {
  background: var(--c-warm-white);
  padding: 3rem 2.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}
.t14-value-card:hover { border-bottom-color: var(--c-gold); }
.t14-value-number {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 900;
  color: var(--c-cream-3); line-height: 1;
  margin-bottom: 1.25rem;
}
.t14-value-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--c-text-dark); margin-bottom: 0.875rem; }
.t14-value-card p { font-size: 0.875rem; color: var(--c-text-mid); line-height: 1.85; margin: 0; }

.t14-mission-quote-section { background: var(--c-dark-2); padding: 7rem 0; text-align: center; }
.t14-big-quote {
  font-family: var(--font-display); font-size: clamp(1.35rem,2.5vw,2.1rem);
  font-style: italic; color: var(--c-cream-dim);
  border: none; padding: 0;
  max-width: 800px; margin: 0 auto 1.5rem; line-height: 1.5; text-align: center;
}
.t14-big-quote-attr { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-terra); margin: 0; text-align: center; }

.t14-about-cta {
  background: var(--c-dark); padding: 8rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.t14-about-cta::before {
  content: '3:14'; position: absolute;
  font-family: var(--font-display); font-size: 24vw; font-weight: 900;
  color: rgba(255,255,255,0.02); top: 50%; left: 50%;
  transform: translate(-50%,-50%); white-space: nowrap;
  letter-spacing: -0.05em; pointer-events: none; user-select: none;
}
.t14-about-cta h2 { font-family: var(--font-display); color: var(--c-cream); max-width: 600px; margin: 0.75rem auto 1.25rem; position: relative; z-index: 1; }
.t14-about-cta p { color: var(--c-cream-dim); max-width: 480px; margin: 0 auto; opacity: 0.65; position: relative; z-index: 1; }
.t14-about-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.75rem; position: relative; z-index: 1; }
.t14-editor-note { color: var(--c-text-light); font-style: italic; font-size: 0.88rem; }

/* Editor content */
.t14-editor-content p { color: var(--c-text-mid); font-size: 0.93rem; line-height: 1.9; margin-bottom: 1.25rem; }
.t14-editor-content h2 { font-family: var(--font-display); font-size: 1.55rem; color: var(--c-text-dark); margin: 2.5rem 0 0.875rem; }
.t14-editor-content h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--c-text-dark); margin: 2rem 0 0.6rem; }
.t14-editor-content a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 3px; }
.t14-editor-content blockquote { border-left: 2px solid var(--c-gold); padding-left: 1.5rem; font-style: italic; color: var(--c-text-mid); margin: 1.75rem 0; }
.t14-editor-content strong { font-weight: 500; color: var(--c-text-dark); }
.t14-editor-content ul, .t14-editor-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--c-text-mid); font-size: 0.93rem; line-height: 1.9; }
.t14-editor-content ul li { list-style: disc; margin-bottom: 0.4rem; }
.t14-editor-content ol li { list-style: decimal; margin-bottom: 0.4rem; }
.t14-editor-content--dim p,
.t14-editor-content--dim ul,
.t14-editor-content--dim ol,
.t14-editor-content--dim blockquote { color: var(--c-cream-dim); }
.t14-editor-content--dim h2,
.t14-editor-content--dim h3,
.t14-editor-content--dim strong { color: var(--c-cream); }
.t14-editor-content--form-intro { margin-bottom: 2.5rem; }
.t14-inline-link-gold { color: var(--c-gold); text-decoration: underline; text-underline-offset: 3px; }

.t14-btn--full { width: 100%; }
.t14-btn--mt-sm { margin-top: 0.5rem; }
.t14-btn--mt-lg { margin-top: 2rem; }
.t14-btn-loading { display: none; }
.t14-form-note { opacity: 0.4; }
.t14-form-group--spacious { margin-bottom: 2rem; }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.t14-team-empty-state { background: var(--c-warm-white); padding: 8rem 0; text-align: center; }
.t14-team-empty-state-title { font-family: var(--font-display); color: var(--c-text-dark); margin-top: 0.5rem; }
.t14-team-empty-state-text { color: var(--c-text-mid); max-width: 420px; margin: 1rem auto 0; font-size: 0.9rem; }
.t14-team-grid-section { background: var(--c-warm-white); padding: 6rem 0; }
.t14-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 3rem;
}
.t14-team-card {
  background: var(--c-cream);
  overflow: hidden;
  transition: transform var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.t14-team-card:hover { transform: translateY(-4px); }
.t14-team-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-dark-4);
  position: relative;
}
.t14-team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) saturate(0.8);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.t14-team-card:hover .t14-team-card-img img { filter: grayscale(0) saturate(1); transform: scale(1.04); }
.t14-team-card-placeholder {
  width: 100%; height: 100%;
  background: var(--c-dark-3);
  display: flex; align-items: center; justify-content: center;
}
.t14-team-card-placeholder span { font-family: var(--font-display); font-size: 5rem; font-weight: 900; color: rgba(200,168,75,0.15); }
.t14-team-card-content { padding: 1.75rem; }
.t14-team-card-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--c-text-dark); margin-bottom: 0.2rem; letter-spacing: -0.015em; }
.t14-team-card-role { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-terra); margin-bottom: 0.875rem; }
.t14-team-card-bio { font-size: 0.85rem; color: var(--c-text-mid); line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.t14-team-card-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; flex-wrap: wrap; }
.t14-team-card-social--featured { margin-top: 2rem; }
.t14-team-social-link { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold); text-decoration: none; border: 1px solid rgba(200,168,75,0.3); padding: 0.3rem 0.7rem; transition: all var(--transition); }
.t14-team-social-link:hover { background: var(--c-gold); color: var(--c-dark); }

/* Team featured member (leadership) */
.t14-team-featured {
  background: var(--c-dark-2);
  padding: 6rem 0;
}
.t14-team-featured-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}
.t14-team-featured-img { aspect-ratio: 4/5; overflow: hidden; background: var(--c-dark-4); }
.t14-team-featured-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); }
.t14-team-featured-placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t14-team-featured-placeholder span {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(200,168,75,0.1);
}
.t14-team-featured-content h2 { font-family: var(--font-display); color: var(--c-cream); margin-top: 0.5rem; }
.t14-team-featured-content p { color: var(--c-cream-dim); font-size: 0.9rem; line-height: 1.9; opacity: 0.8; }
.t14-team-featured-empty-bio { color: var(--c-cream-dim); opacity: 0.7; max-width: 40rem; }
.t14-team-cta-section { background: var(--c-cream-2); padding: 5.5rem 3rem; text-align: center; }
.t14-team-cta-section h2 { font-family: var(--font-display); color: var(--c-text-dark); max-width: 480px; margin: 0.5rem auto 1.25rem; }
.t14-team-cta-section p { color: var(--c-text-mid); max-width: 400px; margin: 0 auto; font-size: 0.9rem; }
.t14-label--section-intro { color: var(--c-text-light); margin-bottom: 2.5rem; }

/* ============================================================
   CONNECT PAGE
   ============================================================ */
.t14-connect-section { background: var(--c-warm-white); padding: 7rem 0; }
.t14-connect-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}
.t14-connect-form-wrap h2 { font-family: var(--font-display); color: var(--c-text-dark); margin-top: 0.5rem; }
.t14-connect-info-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--c-cream-2); }
.t14-connect-info-block:last-child { border-bottom: none; margin-bottom: 0; }
.t14-connect-info-block h4 { font-family: var(--font-display); font-size: 1rem; color: var(--c-text-dark); margin-bottom: 0.5rem; }
.t14-connect-info-block p { font-size: 0.875rem; color: var(--c-text-mid); line-height: 1.8; margin: 0; }
.t14-social-links { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 0.75rem; }
.t14-social-link { font-size: 0.8rem; color: var(--c-gold); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--transition); width: fit-content; }
.t14-social-link:hover { border-bottom-color: var(--c-gold); }

/* ============================================================
   PRAYER PAGE
   ============================================================ */
.t14-prayer-video-section {
  background: var(--c-dark);
  padding: 5rem 0;
}
.t14-prayer-video-section--offset { padding-top: calc(var(--nav-h) + 4rem); }
.t14-prayer-video-section--plain { padding: 4rem 0; }
.t14-prayer-video-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.t14-prayer-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--c-dark-4);
  overflow: hidden;
  margin-top: 2rem;
}
.t14-prayer-video-wrap iframe,
.t14-prayer-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.t14-prayer-message {
  max-width: 860px;
  margin: 2.5rem auto 0;
  padding: 0 2.5rem;
}
.t14-prayer-message p { color: var(--c-cream-dim); font-size: 0.9rem; line-height: 1.9; opacity: 0.75; margin-bottom: 1rem; }

.t14-prayer-form-section {
  background: #fff;
  padding: 6rem 0;
}
.t14-prayer-form-section--offset { padding-top: calc(var(--nav-h) + 4rem); }
.t14-prayer-form-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.t14-prayer-form-inner .t14-label { color: var(--c-terra); }
.t14-prayer-form-inner h2 { font-family: var(--font-display); color: var(--c-text); margin-top: 0.5rem; margin-bottom: 0.5rem; }
.t14-prayer-form-inner > p { color: var(--c-text-mid); font-size: 0.9rem; line-height: 1.9; margin-bottom: 1.5rem; }
.t14-prayer-scripture { border-left: 2px solid var(--c-gold); padding-left: 1.5rem; font-family: var(--font-display); font-style: italic; color: var(--c-text-mid); font-size: 1.05rem; line-height: 1.55; margin: 2rem 0 3rem; }
/* Form inputs on white background */
.t14-prayer-form-section .t14-form-group label { color: var(--c-text-mid); opacity: 1; }
.t14-prayer-form-section .t14-form-group input,
.t14-prayer-form-section .t14-form-group textarea,
.t14-prayer-form-section .t14-form-group select { color: var(--c-text); border-bottom-color: rgba(10,10,9,0.15); }
.t14-prayer-form-section .t14-form-group input::placeholder,
.t14-prayer-form-section .t14-form-group textarea::placeholder { color: rgba(10,10,9,0.25); }
.t14-prayer-form-section .t14-form-group input:focus,
.t14-prayer-form-section .t14-form-group textarea:focus { border-bottom-color: var(--c-gold); }
.t14-prayer-form-section .t14-checkbox-label span:last-child { color: var(--c-text-mid); opacity: 1; }
.t14-prayer-request-input { min-height: 180px; }

.t14-section-cta-dark {
  background: var(--c-dark);
  padding: 5rem 3rem;
  text-align: center;
}
.t14-section-cta-dark-title {
  font-family: var(--font-display);
  color: var(--c-cream);
  max-width: 480px;
  margin: 0.5rem auto 1.25rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.t14-section-cta-dark-text {
  color: var(--c-cream-dim);
  font-size: 0.9rem;
  max-width: 400px;
  margin: 0 auto 2rem;
  opacity: 0.65;
  line-height: 1.8;
}

/* ============================================================
   AD STYLES
   ============================================================ */
.t14-ad { position: relative; }
.t14-ad-label {
  display: block; font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-text-light); margin-bottom: 0.4rem; text-align: center;
}
.t14-ad-custom { display: block; text-decoration: none; }
.t14-ad-image { width: 100%; display: block; }
.t14-ad-fallback-copy {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(200,168,75,0.12), rgba(10,10,9,0.06));
  color: var(--c-text-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.t14-ad-text { font-size: 0.75rem; color: var(--c-text-light); text-align: center; margin-top: 0.35rem; margin-bottom: 0; }
.t14-ad--between_articles { background: var(--c-cream-2); padding: 1.5rem; border: 1px solid var(--c-cream-3); }
.t14-ad--articles_left_rail,
.t14-ad--articles_right_rail,
.t14-single-sidebar-ad { background: var(--c-cream-2); padding: 1.25rem; border: 1px solid var(--c-cream-3); }
.t14-ad--article_bottom { max-width: var(--max-text); margin: 3.5rem auto 0; padding: 2rem; background: var(--c-cream-2); border: 1px solid var(--c-cream-3); text-align: center; }

/* Popup */
.t14-popup-overlay {
  position: fixed; inset: 0; background: rgba(10,10,9,0.8);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; animation: fadeIn 0.3s ease;
}
.t14-popup-box { background: var(--c-warm-white); max-width: 520px; width: 100%; padding: 2.25rem; position: relative; }
.t14-popup-close {
  position: absolute; top: 0.875rem; right: 0.875rem;
  background: none; border: none; font-size: 1rem;
  color: var(--c-text-light); cursor: pointer; transition: color var(--transition);
  padding: 0.2rem 0.4rem; line-height: 1;
}
.t14-popup-close:hover { color: var(--c-text-dark); }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ============================================================
   READING PROGRESS  (single definition — duplicate removed)
   ============================================================ */

/* ============================================================
   SEARCH PAGE
   ============================================================ */

/* Hero */
.t14-search-page { background: var(--c-warm-white); }

.t14-search-hero {
  background: var(--c-dark);
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  text-align: center;
}
.t14-search-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.t14-search-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--c-cream);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.15;
  word-break: break-word;
}
.t14-search-count {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  margin: 0 0 2rem;
}

/* Search form (used in hero and empty state) */
.t14-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.t14-search-form:focus-within {
  border-color: rgba(200,168,75,0.5);
}
.t14-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--c-cream);
  min-width: 0;
}
.t14-search-input::placeholder { color: rgba(255,255,255,0.3); }
.t14-search-submit {
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  flex-shrink: 0;
}
.t14-search-submit:hover { color: var(--c-gold); }

/* Results section */
.t14-search-results { padding: 4rem 0 6rem; }

.t14-search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-cream-3);
}

/* Each result row */
.t14-search-item { border-bottom: 1px solid var(--c-cream-3); }

.t14-search-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.t14-search-row:hover { background: var(--c-cream-2); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }

/* Thumbnail */
.t14-search-row-thumb {
  width: 90px;
  aspect-ratio: 16/10;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-dark-4);
  position: relative;
}
.t14-search-row-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.t14-search-row:hover .t14-search-row-thumb img { transform: scale(1.05); }
.t14-search-row-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.t14-search-row-placeholder span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  color: rgba(200,168,75,0.15);
}
.t14-search-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,9,0.4);
  color: #fff;
}

/* Body */
.t14-search-row-body { flex: 1; min-width: 0; }

.t14-search-row-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.t14-search-badge {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.t14-search-badge--article { background: var(--c-gold); color: var(--c-dark); }
.t14-search-badge--episode { background: var(--c-dark-2); color: var(--c-gold); border: 1px solid rgba(200,168,75,0.25); }
.t14-search-badge--page    { background: var(--c-cream-3); color: var(--c-text-mid); }

.t14-search-row-date {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--c-text-light);
  letter-spacing: 0.04em;
}
.t14-search-row-date + .t14-search-row-date::before {
  content: '·';
  margin-right: 0.6rem;
}

.t14-search-row-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin: 0 0 0.3rem;
  line-height: 1.3;
  transition: color var(--transition);
}
.t14-search-row:hover .t14-search-row-title { color: var(--c-gold-dim); }

.t14-search-row-excerpt {
  font-size: 0.82rem;
  color: var(--c-text-mid);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Arrow */
.t14-search-row-arrow {
  color: var(--c-text-light);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.t14-search-row:hover .t14-search-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Empty state */
.t14-search-empty {
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  max-width: 520px;
  margin: 0 auto;
}
.t14-search-empty-icon {
  color: var(--c-cream-3);
  margin-bottom: 1.5rem;
}
.t14-search-empty h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: var(--c-text-dark);
  margin-bottom: 0.75rem;
}
.t14-search-empty p {
  font-size: 0.88rem;
  color: var(--c-text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.t14-search-form--empty {
  background: var(--c-cream-2);
  border-color: var(--c-cream-3);
  margin-bottom: 2.5rem;
}
.t14-search-form--empty .t14-search-input { color: var(--c-text-dark); }
.t14-search-form--empty .t14-search-input::placeholder { color: var(--c-text-light); }
.t14-search-form--empty .t14-search-submit { color: var(--c-text-light); }
.t14-search-form--empty .t14-search-submit:hover { color: var(--c-gold-dim); }
.t14-search-empty-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .t14-search-row-thumb { width: 70px; }
  .t14-search-row-excerpt { display: none; }
  .t14-search-row-arrow { display: none; }
}

/* ============================================================
   SHARE BUTTONS
   ============================================================ */
.t14-share { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: 2.5rem 0; }
.t14-share-label { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-mid); white-space: nowrap; }
.t14-share-buttons { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.t14-share-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.85rem; border: 1px solid var(--c-cream-3);
  font-family: var(--font-ui); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--c-text-mid); background: transparent; cursor: pointer;
  text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s;
  border-radius: 2px; line-height: 1;
}
.t14-share-btn svg { flex-shrink: 0; }
.t14-share-twitter:hover  { border-color: #1DA1F2; color: #1DA1F2; }
.t14-share-facebook:hover { border-color: #1877F2; color: #1877F2; }
.t14-share-whatsapp:hover { border-color: #25D366; color: #25D366; }
.t14-share-copy:hover     { border-color: var(--c-gold); color: var(--c-gold); }
.t14-inline-meta-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.t14-inline-meta-link:hover { color: var(--c-gold); }

/* Dark variant — for use on dark/charcoal backgrounds */
.t14-share--dark .t14-share-label { color: rgba(255,255,255,0.5); }
.t14-share--dark .t14-share-btn   { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.t14-share--dark .t14-share-twitter:hover  { border-color: #1DA1F2; color: #1DA1F2; }
.t14-share--dark .t14-share-facebook:hover { border-color: #1877F2; color: #1877F2; }
.t14-share--dark .t14-share-whatsapp:hover { border-color: #25D366; color: #25D366; }
.t14-share--dark .t14-share-copy:hover     { border-color: var(--c-gold); color: var(--c-gold); }

/* ============================================================
   EPISODE TRANSCRIPT
   ============================================================ */
.t14-episode-transcript {
  margin: 2.5rem 0;
}

.t14-transcript-details {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

/* Summary / toggle row */
.t14-transcript-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.t14-transcript-summary::-webkit-details-marker { display: none; }
.t14-transcript-summary:hover { background: rgba(255,255,255,0.07); }

.t14-transcript-summary-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.t14-transcript-summary-inner svg { color: var(--c-gold); flex-shrink: 0; }

.t14-transcript-chevron {
  color: rgba(255,255,255,0.3);
  transition: transform 0.25s ease;
}
.t14-transcript-details[open] .t14-transcript-chevron {
  transform: rotate(180deg);
}

/* Transcript body */
.t14-transcript-body {
  padding: 1.75rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,168,75,0.3) transparent;
}
.t14-transcript-body::-webkit-scrollbar { width: 4px; }
.t14-transcript-body::-webkit-scrollbar-thumb { background: rgba(200,168,75,0.3); border-radius: 2px; }

.t14-transcript-body p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin: 0 0 1.1rem;
}
.t14-transcript-body p:last-child { margin-bottom: 0; }

.t14-transcript-time {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  margin-right: 0.25em;
}
.t14-transcript-speaker {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-style: normal;
}

/* ============================================================
   ARTICLE SERIES BOX
   ============================================================ */
.t14-series-box {
  background: var(--c-dark);
  border-left: 3px solid var(--c-gold);
  margin: 0 0 3rem;
  padding: 2rem 2rem 1.5rem;
}

/* Header */
.t14-series-box-header { margin-bottom: 1.5rem; }

.t14-series-box-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
}
.t14-series-box-name {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-cream);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.2;
}
.t14-series-box-name:hover { color: var(--c-gold); }
.t14-series-box-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0.5rem 0 0;
}

/* List */
.t14-series-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.t14-series-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.t14-series-item--current {
  background: rgba(200,168,75,0.06);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Part number */
.t14-series-item-num {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-gold);
  text-align: right;
  line-height: 1;
}
.t14-series-item-num--upcoming { color: rgba(255,255,255,0.2); }

/* Title */
.t14-series-item-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  line-height: 1.35;
  transition: color var(--transition);
}
a.t14-series-item-title:hover { color: var(--c-gold); }
.t14-series-item-title--current { color: var(--c-cream); }
.t14-series-item-title--upcoming { color: rgba(255,255,255,0.25); font-style: italic; }

/* Meta / reading now */
.t14-series-item-meta {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.t14-series-item-reading {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  white-space: nowrap;
}

/* Prev / Next nav */
.t14-series-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.t14-series-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  line-height: 1.4;
  transition: color var(--transition);
  max-width: 48%;
}
.t14-series-nav-btn:hover { color: var(--c-gold); }
.t14-series-nav-btn em {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.2rem;
}
.t14-series-nav-btn span { font-family: var(--font-display); font-weight: 700; }
.t14-series-nav-btn--next { margin-left: auto; text-align: right; flex-direction: row-reverse; }

@media (max-width: 600px) {
  .t14-series-item { grid-template-columns: 24px 1fr; }
  .t14-series-item-meta,
  .t14-series-item-reading { display: none; }
  .t14-series-nav-btn { font-size: 0.75rem; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.t14-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--c-dark-2);
  border-top: 1px solid rgba(200,168,75,0.25);
  padding: 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.t14-cookie-banner.t14-cookie-visible {
  transform: translateY(0);
}
.t14-cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.t14-cookie-message {
  flex: 1;
  font-size: 0.8rem;
  color: var(--c-cream-dim);
  line-height: 1.6;
  margin: 0;
}
.t14-cookie-policy-link {
  color: var(--c-gold);
  text-decoration: none;
  margin-left: 0.3em;
}
.t14-cookie-policy-link:hover { text-decoration: underline; }
.t14-cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.t14-cookie-btn {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.t14-cookie-btn--accept {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
}
.t14-cookie-btn--accept:hover {
  background: #d4a831;
  border-color: #d4a831;
}
.t14-cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.12);
}
.t14-cookie-btn--decline:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
@media (max-width: 600px) {
  .t14-cookie-banner { padding: 1.25rem 1.25rem 1.5rem; }
  .t14-cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .t14-cookie-actions { width: 100%; }
  .t14-cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================
   SKIP TO CONTENT LINK (accessibility)
   ============================================================ */
.t14-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 99999;
  background: var(--c-gold);
  color: var(--c-dark);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 3px 3px;
  text-decoration: none;
  transition: top 0.2s;
}
.t14-skip-link:focus { top: 0; outline: none; }

#t14-main-content:focus {
  outline: 2px solid var(--c-gold);
  outline-offset: 0.35rem;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.t14-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--c-dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.t14-back-top:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-dark);
  transform: translateY(-3px);
}
/* Nudge left when cookie banner is visible so they don't overlap */
.t14-cookie-banner.t14-cookie-visible ~ .t14-back-top { bottom: 5.5rem; }

/* ============================================================
   ARTICLE CONTENT — MISSING ELEMENTS
   ============================================================ */

/* Inline code */
.t14-single-content code {
  font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
  font-size: 0.85em;
  background: var(--c-cream-2);
  color: #b44;
  padding: 0.15em 0.4em;
  border-radius: 3px;
  border: 1px solid var(--c-cream-3);
}

/* Code blocks */
.t14-single-content pre {
  background: var(--c-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--c-gold);
  border-radius: 3px;
  padding: 1.5rem 1.75rem;
  overflow-x: auto;
  margin: 2rem 0;
  font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.85);
}
.t14-single-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* Tables */
.t14-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}
.t14-single-content th,
.t14-single-content td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-cream-3);
}
.t14-single-content th {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  border-bottom: 2px solid var(--c-cream-3);
  background: var(--c-cream-2);
}
.t14-single-content tr:last-child td { border-bottom: none; }
.t14-single-content tbody tr:hover td { background: var(--c-cream-2); }

/* Figures and captions */
.t14-single-content figure { margin: 2.5rem 0; }
.t14-single-content figcaption {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--c-text-light);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Horizontal rule */
.t14-single-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold), transparent);
  margin: 3rem auto;
  max-width: 200px;
  opacity: 0.5;
}

/* Highlighted text */
.t14-single-content mark {
  background: rgba(200,168,75,0.2);
  color: var(--c-text-dark);
  padding: 0.05em 0.2em;
  border-radius: 2px;
}

/* Keyboard keys */
.t14-single-content kbd {
  font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
  font-size: 0.8em;
  background: var(--c-cream-2);
  border: 1px solid var(--c-cream-3);
  border-bottom-width: 2px;
  border-radius: 3px;
  padding: 0.1em 0.4em;
  color: var(--c-text-mid);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  /* Hide non-content UI */
  .t14-nav,
  .t14-single-hero-img,
  .t14-single-hero-overlay,
  .t14-share,
  .t14-single-tags,
  .t14-single-sidebar,
  .t14-more-articles,
  .t14-newsletter,
  .t14-footer,
  .t14-footer-bottom,
  .t14-cookie-banner,
  .t14-back-top,
  .t14-series-nav,
  [class*="t14-ad"],
  [class*="t14-hp-ad"] { display: none !important; }

  /* Reset layout */
  body { background: #fff !important; color: #111 !important; font-size: 11pt; }
  .t14-single { padding-top: 0 !important; }
  .t14-single-hero { padding: 1.5cm 0 0.5cm !important; background: #fff !important; min-height: auto !important; }
  .t14-single-hero-content { color: #111 !important; }
  .t14-single-hero-content h1 { font-size: 24pt !important; color: #111 !important; }
  .t14-single-meta span { color: #555 !important; }
  .t14-meta-dot { background: #999 !important; }
  .t14-single-layout { display: block !important; }
  .t14-single-content { max-width: 100% !important; font-size: 11pt !important; color: #111 !important; }
  .t14-single-content a { color: #111 !important; text-decoration: underline; }
  .t14-single-content a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
  .t14-single-content img { max-width: 100% !important; page-break-inside: avoid; }
  .t14-author-bio { border-top: 1pt solid #ddd; padding-top: 1cm; margin-top: 1cm; }
  .t14-series-box { border: 1pt solid #ddd !important; background: #f9f9f9 !important; }

  /* Page breaks */
  h2, h3 { page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  figure { page-break-inside: avoid; }
}

/* ============================================================
   AUTHOR ARCHIVE
   ============================================================ */
.t14-author-hero {
  background: var(--c-dark);
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
}
.t14-author-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.t14-author-hero-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(200,168,75,0.3);
  flex-shrink: 0;
}
.t14-author-hero-info { flex: 1; min-width: 220px; }
.t14-author-hero-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-cream);
  margin: 0.4rem 0 0.75rem;
  line-height: 1.15;
}
.t14-author-hero-bio {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 1.25rem;
}
.t14-author-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.t14-author-hero-meta span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.t14-author-hero-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.t14-author-hero-link:hover { opacity: 0.75; }
@media (max-width: 600px) {
  .t14-author-hero-inner { flex-direction: column; align-items: center; text-align: center; }
  .t14-author-hero-meta { justify-content: center; }
}

/* ============================================================
   SERIES ARCHIVE
   ============================================================ */
.t14-series-archive-hero {
  background: var(--c-dark);
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  text-align: center;
}
.t14-series-archive-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.t14-series-archive-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--c-cream);
  margin: 0.5rem 0 0.75rem;
}
.t14-series-archive-desc {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.75;
  margin: 0 0 0.75rem;
}
.t14-series-archive-count {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.t14-series-archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-cream-3);
}
.t14-series-archive-item { border-bottom: 1px solid var(--c-cream-3); }
.t14-series-archive-row {
  display: grid;
  grid-template-columns: 32px 90px 1fr 24px;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.t14-series-archive-row:hover { background: var(--c-cream-2); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.t14-series-archive-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-gold);
  opacity: 0.4;
  text-align: right;
  line-height: 1;
}
.t14-series-archive-thumb {
  aspect-ratio: 16/10;
  border-radius: 2px;
  overflow: hidden;
  background: var(--c-dark-4);
}
.t14-series-archive-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.t14-series-archive-row:hover .t14-series-archive-thumb img { transform: scale(1.05); }
.t14-series-archive-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin: 0 0 0.3rem;
  transition: color var(--transition);
}
.t14-series-archive-row:hover .t14-series-archive-body h3 { color: var(--c-gold-dim); }
.t14-series-archive-body p { font-size: 0.82rem; color: var(--c-text-mid); margin: 0 0 0.4rem; line-height: 1.6; }
.t14-series-archive-meta { font-family: var(--font-ui); font-size: 0.68rem; color: var(--c-text-light); }
.t14-series-archive-arrow { color: var(--c-text-light); opacity: 0; transition: opacity 0.2s; }
.t14-series-archive-row:hover .t14-series-archive-arrow { opacity: 1; }
@media (max-width: 600px) {
  .t14-series-archive-row { grid-template-columns: 28px 1fr; }
  .t14-series-archive-thumb, .t14-series-archive-arrow { display: none; }
}

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.t14-toc {
  background: var(--c-cream-2);
  border: 1px solid var(--c-cream-3);
  border-left: 3px solid var(--c-gold);
  padding: 1.25rem 1.5rem 1.5rem;
  margin: 0 0 2.5rem;
  max-width: var(--max-text);
}
.t14-toc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  margin-bottom: 0.85rem;
}
.t14-toc-header svg { color: var(--c-gold); flex-shrink: 0; }
.t14-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.t14-toc-item { display: flex; align-items: baseline; }
.t14-toc-item--h3 { padding-left: 1.25rem; }
.t14-toc-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--c-text-mid);
  text-decoration: none;
  padding: 0.25rem 0;
  line-height: 1.4;
  transition: color var(--transition);
  display: block;
  border-bottom: 1px solid transparent;
}
.t14-toc-link:hover { color: var(--c-gold-dim); }
.t14-toc-link--active { color: var(--c-gold-dim); font-weight: 600; }

/* ============================================================
   IMAGE LIGHTBOX
   ============================================================ */
#t14-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#t14-lightbox.t14-lb-open {
  opacity: 1;
  pointer-events: all;
}
.t14-lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,9,0.92);
  backdrop-filter: blur(4px);
}
.t14-lb-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.t14-lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
#t14-lightbox.t14-lb-open .t14-lb-img { transform: scale(1); }
.t14-lb-caption {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-style: italic;
  max-width: 60ch;
}
.t14-lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.t14-lb-close:hover { background: var(--c-gold); color: var(--c-dark); border-color: var(--c-gold); }

/* ============================================================
   STICKY PODCAST PLAYER
   ============================================================ */
.t14-sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9980;
  background: var(--c-dark);
  border-top: 1px solid rgba(200,168,75,0.2);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}
.t14-sticky-player-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px 1fr auto auto 32px;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.5rem;
}
/* Thumbnail */
.t14-sticky-player-thumb img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
/* Info */
.t14-sticky-player-info { min-width: 0; }
.t14-sp-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.1rem;
}
.t14-sp-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-cream);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.t14-sp-title:hover { color: var(--c-gold); }
.t14-sp-guests {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}
/* Controls */
.t14-sticky-player-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.t14-sp-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.t14-sp-btn:hover { color: var(--c-cream); background: rgba(255,255,255,0.06); }
.t14-sp-play {
  width: 40px;
  height: 40px;
  background: var(--c-gold) !important;
  color: var(--c-dark) !important;
  border-radius: 50%;
}
.t14-sp-play:hover { background: #d4a831 !important; }
/* Progress */
.t14-sticky-player-progress { flex: 1; min-width: 120px; }
.t14-sp-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 0.35rem;
  position: relative;
}
.t14-sp-filled {
  height: 100%;
  background: var(--c-gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s linear;
  pointer-events: none;
}
.t14-sp-times {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
}
/* Close */
.t14-sp-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
  flex-shrink: 0;
}
.t14-sp-close:hover { color: rgba(255,255,255,0.7); }
/* Push footer up when player is open */
.t14-has-sticky-player .t14-newsletter,
.t14-has-sticky-player .t14-footer,
.t14-has-sticky-player .t14-footer-bottom { margin-bottom: 72px; }
.t14-has-sticky-player .t14-cookie-banner { bottom: 72px; }
.t14-has-sticky-player .t14-back-top { bottom: 5.5rem; }
@media (max-width: 640px) {
  .t14-sticky-player-inner {
    grid-template-columns: 1fr auto 32px;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .t14-sticky-player-thumb,
  .t14-sticky-player-progress { display: none; }
  .t14-sp-guests { display: none; }
}

/* ============================================================
   STICKY PLAYER — YOUTUBE-ONLY WATCH BUTTON
   ============================================================ */
.t14-sp-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  background: var(--c-gold);
  color: var(--c-dark);
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.t14-sp-watch-btn:hover {
  background: var(--c-gold-light);
  color: var(--c-dark);
  transform: translateY(-1px);
}
.t14-sp-watch-btn svg { flex-shrink: 0; }

/* ============================================================
   PODCAST TOPIC / TAG ARCHIVE HERO
   ============================================================ */
.t14-podcast-archive-hero {
  background: var(--c-dark);
  padding: calc(var(--nav-h) + 4rem) var(--gutter, 2rem) 4rem;
  text-align: center;
}
.t14-podcast-archive-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.t14-podcast-archive-hero .t14-label {
  color: var(--c-gold);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.t14-podcast-archive-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--c-cream);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.t14-podcast-archive-desc {
  font-size: 0.975rem;
  color: rgba(244,239,230,0.65);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 0.75rem;
}
.t14-podcast-archive-count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
}
@media (max-width: 768px) {
  .t14-podcast-archive-hero {
    padding: calc(var(--nav-h) + 2.5rem) 1.5rem 3rem;
  }
}

/* ============================================================
   HERO VIDEO
   ============================================================ */
.t14-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) saturate(0.5); }
.t14-hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,9,0.98) 0%, rgba(10,10,9,0.45) 50%, rgba(10,10,9,0.2) 100%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .t14-nav { padding: 0 2rem; }
  .t14-nav { grid-template-columns: minmax(180px, 280px) minmax(0, 1fr) auto; }
  .t14-mission-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .t14-pathways-grid { grid-template-columns: 1fr 1fr; }
  .t14-about-strip { grid-template-columns: 1fr; }
  .t14-about-strip-img { aspect-ratio: 16/9; }
  .t14-about-strip-img::after { display: none; }
  .t14-about-strip-text { padding: 3.5rem 2.5rem; }
  .t14-featured-inner { grid-template-columns: 1fr; }
  .t14-featured-img { min-height: 380px; }
  .t14-featured-content { padding: 2rem; }
  .t14-articles-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .t14-card--featured { grid-row: span 1; grid-column: span 2; min-height: 380px; }
  .t14-about-intro-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .t14-about-img-wrap::after { display: none; }
  .t14-values-grid { grid-template-columns: 1fr; gap: 2px; }
  .t14-team-featured-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .t14-team-featured-img { aspect-ratio: 16/9; }
  .t14-connect-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .t14-single-hero-content { padding: 3rem 2rem 4rem; }
  .t14-single-layout,
  .t14-single-layout--has-sidebar,
  .t14-single-layout--full { grid-template-columns: 1fr; padding: 4rem 2rem; }
  .t14-breadcrumb-inner { padding: 0.6rem 1.5rem; }
  .t14-single-sidebar { display: none; }
  .t14-more-grid { grid-template-columns: 1fr 1fr; }
  .t14-popular-grid { grid-template-columns: 1fr 1fr; }
  .t14-footer { grid-template-columns: 1fr 1fr; padding: 4rem 2rem 0; }
  .t14-article-list { grid-template-columns: 1fr; }
  .t14-articles-shell { grid-template-columns: 1fr; gap: 2rem; }
  .t14-articles-main { order: 1; }
  .t14-articles-rail--left { order: 2; }
  .t14-articles-rail--right { order: 3; }
  .t14-articles-rail-sticky { position: static; }
  .t14-nav-links { gap: 1.25rem; }
  .t14-nav-links a { font-size: 0.6rem; }
}

@media (max-width:768px) {
  :root { --nav-h: 64px; --gutter: 1.5rem; }
  .t14-nav { padding: 0 1.5rem; grid-template-columns: 1fr auto; gap: 0.75rem; }
  body.admin-bar .t14-nav { top: 46px; }
  body.admin-bar .t14-announcement-bar { margin-top: calc(var(--nav-h) + 46px); }
  body.admin-bar .t14-announcement-bar--sticky { top: calc(var(--nav-h) + 46px); }
  .t14-nav-center { display: contents; }
  .t14-nav-right { gap: 0.75rem; }
  .t14-nav-cta { display: none; }
  .t14-nav-links { display: none; }
  .t14-nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,9,0.97); padding: 2rem 1.5rem;
    gap: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 999; backdrop-filter: blur(16px);
    min-height: calc(100vh - var(--nav-h));
  }
  body.admin-bar .t14-nav-links.open {
    top: calc(var(--nav-h) + 46px);
    min-height: calc(100vh - var(--nav-h) - 46px);
  }
  .t14-nav-links.open a { font-size: 0.75rem; letter-spacing: 0.14em; }
  .t14-nav-toggle { display: flex; }
  .t14-announcement-inner { padding: 0.85rem 1.25rem; flex-direction: column; align-items: flex-start; }
  .t14-announcement-actions { width: 100%; flex-wrap: wrap; }
  .t14-hero { padding: calc(var(--nav-h) + 1.5rem) 1.5rem 4.5rem; }
  .t14-hero-scroll { display: none; }
  .t14-pathways { margin-top: 0; padding: 0 0 1.5rem; }
  .t14-pathways-grid { grid-template-columns: 1fr; }
  .t14-mission { padding: 5.5rem 1.5rem; }
  .t14-articles { padding: 5.5rem 0; }
  .t14-articles-grid { grid-template-columns: 1fr; }
  .t14-card--featured { grid-column: span 1; min-height: 340px; }
  .t14-cta-section { padding: 7rem 1.5rem; }
  .t14-page-hero { padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem; }
  .t14-featured-article { padding: 3rem 0; }
  .t14-featured-shell { padding: 0 1.5rem; }
  .t14-featured-img { min-height: 280px; }
  .t14-browse-section { padding: 4.5rem 0; }
  .t14-article-row-meta { flex-wrap: wrap; }
  .t14-values-section { padding: 5.5rem 0; }
  .t14-about-intro { padding: 5.5rem 0; }
  .t14-team-grid-section { padding: 5rem 0; }
  .t14-team-grid { grid-template-columns: 1fr 1fr; }
  .t14-connect-section { padding: 5.5rem 0; }
  .t14-prayer-video-section { padding: 4rem 0; }
  .t14-prayer-form-section { padding: 5rem 0; }
  .t14-more-grid { grid-template-columns: 1fr; }
  .t14-popular-grid { grid-template-columns: 1fr; }
  .t14-topic-pills { flex-direction: column; }
  .t14-newsletter { padding: 4rem 1.5rem; }
  .t14-newsletter-form { flex-direction: column; }
  .t14-newsletter-form input { border-right: 1px solid rgba(200,168,75,0.25); border-bottom: none; }
  .t14-growth-signup { padding: 1.5rem; }
  .t14-growth-signup-form { flex-direction: column; }
  .t14-footer { grid-template-columns: 1fr; padding: 3.5rem 1.5rem 0; }
  .t14-footer-bottom { padding: 1.5rem; flex-direction: column; gap: 0.75rem; text-align: center; }
  .t14-footer-social { justify-content: center; }
  .t14-filter { padding: 0; }
  .t14-filter-inner { padding: 0 1rem; }
  .t14-team-featured { padding: 5rem 0; }
}

@media (max-width:480px) {
  .t14-team-grid { grid-template-columns: 1fr; }
}

/* ---- BREADCRUMBS ---- */
.t14-breadcrumb {
  /* Dark background so the strip sits flush with the dark page hero above it,
     eliminating the white-bar gap between hero and content sections */
  background: var(--c-dark);
  width: 100%;
}
.t14-breadcrumb-inner {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0.6rem 4rem;
  font-size: 0.72rem;
  color: rgba(138,133,126,0.7);
}
/* !important overrides browser UA stylesheet which sets list-style: decimal on <ol> */
.t14-breadcrumb ol,
.t14-breadcrumb ul {
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
}
.t14-breadcrumb li {
  display: flex;
  align-items: center;
  list-style: none !important;
}
.t14-breadcrumb a {
  color: var(--c-gold);
  text-decoration: none;
}
/* ============================================================
   DEFAULT PAGE TEMPLATE (page.php)
   ============================================================ */
.t14-page-hero--default .t14-page-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,9,0.45) 0%, rgba(10,10,9,0.65) 100%);
}
.t14-default-page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}
.t14-default-page-content {
  max-width: var(--max-text);
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--c-text-dark);
}
.t14-default-page-content h1,
.t14-default-page-content h2,
.t14-default-page-content h3,
.t14-default-page-content h4 { margin-top: 2.5rem; margin-bottom: 1rem; }
.t14-default-page-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.t14-default-page-content h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
.t14-default-page-content p  { margin-bottom: 1.5rem; }
.t14-default-page-content ul,
.t14-default-page-content ol { margin: 0 0 1.5rem 1.5rem; }
.t14-default-page-content li { margin-bottom: 0.4rem; }
.t14-default-page-content a  { color: var(--c-gold); text-decoration: underline; }
.t14-default-page-content a:hover { color: var(--c-gold-light); }
.t14-default-page-content img { border-radius: var(--radius); margin: 2rem 0; }
.t14-default-page-content blockquote {
  border-left: 3px solid var(--c-gold);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--c-text-mid);
}
/* WordPress block editor alignment helpers */
.t14-default-page-content .alignwide  { max-width: 960px; margin-left: auto; margin-right: auto; }
.t14-default-page-content .alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }
.t14-default-page-content .aligncenter { text-align: center; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
  .t14-default-page-wrap { padding: 3rem 1.5rem 4rem; }
}

/* ============================================================
   BLANK CANVAS TEMPLATE (template-blank.php)
   ============================================================ */
.t14-blank-canvas { min-height: 100vh; }
.t14-blank-canvas-inner {
  padding-top: var(--nav-h); /* only needed here — no hero section to absorb nav height */
}
/* Full block editor support inside blank canvas */
.t14-blank-canvas .wp-block-cover,
.t14-blank-canvas .wp-block-group { width: 100%; }

/* Footer nav menus — wp_nav_menu generates <ul class="t14-footer-menu"> */
.t14-footer-menu { list-style: none; margin: 0; padding: 0; }
.t14-footer-menu li { margin-bottom: 0.55rem; }
.t14-footer-menu li a { font-size: 0.82rem; color: rgba(188,183,173,0.72); text-decoration: none; transition: color var(--transition); }
.t14-footer-menu li a:hover { color: var(--c-gold); }
/* Hide the sub-menu arrow added by WP on parent items */
.t14-footer-menu .menu-item-has-children > a::after { display: none; }

.t14-breadcrumb a:hover { text-decoration: underline; }
.t14-breadcrumb span[aria-hidden] { padding: 0 0.35rem; opacity: 0.5; }
.t14-breadcrumb [aria-current="page"] { opacity: 0.6; }

/* ============================================================
   HOMEPAGE PROMO BANNER
   Full-width graphic strip for events, sponsors, podcast etc.
   ============================================================ */
.t14-promo-banner {
  position: relative;
  overflow: hidden;
  background: var(--c-dark-2);
}
.t14-promo-banner-img {
  display: block;
  width: 100%;
}
.t14-promo-banner-img img {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 560px);
  object-fit: cover;
}
.t14-promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,9,0.78) 0%, rgba(10,10,9,0.35) 60%, rgba(10,10,9,0.08) 100%);
  pointer-events: none;
}
.t14-promo-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 5rem;
  max-width: 660px;
}
.t14-promo-banner-eyebrow {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
}
.t14-promo-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.t14-promo-banner-text {
  font-size: 0.925rem;
  color: rgba(244,239,230,0.72);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.t14-promo-banner-cta {
  align-self: flex-start;
}
@media (max-width: 768px) {
  .t14-promo-banner-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
    position: relative;
    background: var(--c-dark-2);
  }
  .t14-promo-banner-overlay { background: rgba(10,10,9,0.52); }
  .t14-promo-banner-img img { height: clamp(200px, 55vw, 360px); }
}

/* ============================================================
   HOMEPAGE AD ZONES
   ============================================================ */
.t14-hp-ad {
  padding: 2rem 0;
  text-align: center;
  background: transparent;
}
.t14-hp-ad--strip {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c-cream-2);
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--c-cream-3);
  border-bottom: 1px solid var(--c-cream-3);
}
.t14-hp-ad--dark {
  background: var(--c-dark-3);
  padding: 2.5rem 1rem;
}
.t14-hp-ad > * { max-width: 100%; }
.t14-hp-ad--strip .t14-ad {
  margin-left: auto !important;
  margin-right: auto !important;
}
.t14-hp-ad--strip .t14-ad-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t14-hp-ad--strip .t14-ad-image {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PODCAST — ARCHIVE HERO
   ============================================================ */
.t14-podcast-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-dark);
  padding-top: var(--nav-h);
}
.t14-podcast-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3.5rem var(--gutter) 3.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.t14-podcast-hero-text { max-width: 680px; }
.t14-page-hero-bg-text--podcast {
  font-size: clamp(5rem, 18vw, 13rem);
  opacity: 0.035;
  left: 50%;
  bottom: 0.2em;
  transform: translateX(-50%);
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.t14-podcast-hero-text .t14-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--c-gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.t14-podcast-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  color: var(--c-cream);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  white-space: normal;
  max-width: 14ch;
}
.t14-podcast-hero-text p {
  font-size: 1rem;
  color: rgba(244,239,230,0.72);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 560px;
}
.t14-podcast-subscribe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.t14-podcast-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(244,239,230,0.22);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-cream);
  text-decoration: none;
  background: rgba(244,239,230,0.07);
  transition: background 0.18s, border-color 0.18s;
}
.t14-podcast-sub-btn:hover {
  background: rgba(244,239,230,0.14);
  border-color: rgba(244,239,230,0.4);
  color: var(--c-cream);
}

/* ============================================================
   PODCAST — SEASON FILTER BAR
   ============================================================ */
.t14-podcast-filter {
  background: var(--c-cream-2);
  border-bottom: 1px solid var(--c-cream-3);
  padding: 0;
}
.t14-filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.t14-filter-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.t14-filter-btn {
  display: inline-block;
  padding: 0.9rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.t14-filter-btn:hover { color: var(--c-text); }
.t14-filter-btn.active {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}
.t14-podcast-ep-count {
  font-size: 0.75rem;
  color: var(--c-text-mid);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   PODCAST — FEATURED LATEST EPISODE
   ============================================================ */
.t14-podcast-featured {
  background: var(--c-dark);
  padding: 3rem 0 4.5rem;
}
.t14-podcast-featured-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2.5rem;
  align-items: start;
}
.t14-podcast-featured-media { position: relative; }
.t14-podcast-featured-thumb {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--c-dark-2);
}
.t14-podcast-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.t14-podcast-featured-thumb:hover img { transform: scale(1.03); }
.t14-podcast-featured-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.9rem;
}
.t14-podcast-featured-flag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  animation: t14PodPulse 1.8s infinite;
}
@keyframes t14PodPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.t14-episode-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  margin-bottom: 0.6rem;
}
.t14-podcast-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--c-cream);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 0.8rem;
}
.t14-podcast-featured-title a {
  color: inherit;
  text-decoration: none;
}
.t14-podcast-featured-title a:hover { color: var(--c-gold); }
.t14-podcast-featured-guests {
  font-size: 0.875rem;
  color: rgba(244,239,230,0.6);
  margin: 0 0 1rem;
  font-style: italic;
}
.t14-podcast-featured-excerpt {
  font-size: 0.925rem;
  color: rgba(244,239,230,0.7);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.t14-podcast-featured-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ============================================================
   PODCAST — EPISODE GRID + CARDS
   ============================================================ */
.t14-episodes-section {
  background: var(--c-cream-2);
  padding: 4rem 0 5rem;
}
.t14-episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.t14-episodes-grid--3 { grid-template-columns: repeat(3, 1fr); }

.t14-episode-card {
  display: flex;
  flex-direction: column;
  background: var(--c-cream);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--c-cream-3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.t14-episode-card:hover {
  box-shadow: 0 8px 28px rgba(10,10,9,0.14);
  /* No translateY — episode cards feel stable; the play button reveal signals interactivity */
}
.t14-episode-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--c-dark-2);
  overflow: hidden;
}
.t14-episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.t14-episode-card:hover .t14-episode-thumb img { transform: scale(1.05); }
.t14-episode-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark-3);
}
.t14-episode-thumb-placeholder span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: -0.04em;
  opacity: 0.6;
}
.t14-episode-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,9,0);
  transition: background 0.2s;
}
.t14-episode-play-btn svg {
  color: var(--c-cream);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
}
.t14-episode-card:hover .t14-episode-play-btn { background: rgba(10,10,9,0.32); }
.t14-episode-card:hover .t14-episode-play-btn svg { opacity: 1; transform: scale(1); }
.t14-episode-play-btn--lg svg { opacity: 0.85; transform: scale(1); }
.t14-podcast-featured-thumb:hover .t14-episode-play-btn { background: rgba(10,10,9,0.32); }
.t14-episode-duration-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(10,10,9,0.75);
  color: var(--c-cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.t14-episode-card-body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.t14-episode-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.35rem;
}
.t14-episode-guests {
  font-size: 0.78rem;
  color: var(--c-text-mid);
  margin: 0 0 0.5rem;
  font-style: italic;
}
.t14-episode-excerpt {
  display: none; /* Cards are too small to display excerpt clearly — title + guests is enough */
}
.t14-episode-card .t14-link-arrow {
  font-size: 0.75rem;
  color: var(--c-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-cream-3);
  display: block;
}

/* ============================================================
   PODCAST — EMPTY STATE
   ============================================================ */
.t14-podcast-empty {
  text-align: center;
  padding: 5rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.t14-podcast-empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.25rem;
}
.t14-podcast-empty h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 0.75rem;
}
.t14-podcast-empty p {
  font-size: 0.925rem;
  color: var(--c-text-mid);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ============================================================
   SINGLE EPISODE — VIDEO SECTION
   ============================================================ */
.t14-episode-single { background: var(--c-dark); min-height: 100vh; }
.t14-episode-video-section {
  background: #000;
  padding-top: var(--nav-h);
}
.t14-episode-video-wrap {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
}
.t14-episode-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.t14-episode-video-wrap--thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.t14-episode-video-wrap--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.t14-episode-video-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark-2);
}
.t14-episode-video-wrap--placeholder span {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--c-gold);
  opacity: 0.4;
}

/* ============================================================
   SINGLE EPISODE — HEADER (META + TITLE)
   ============================================================ */
.t14-episode-header {
  background: var(--c-dark);
  padding: 0;
}
.t14-episode-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.75rem var(--gutter) 2.25rem;
}
.t14-episode-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}
.t14-episode-meta-bar span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
}
.t14-episode-meta-bar span + span::before {
  content: '·';
  margin-right: 0.75rem;
  opacity: 0.4;
}
.t14-episode-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--c-cream);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin: 0;
}
.t14-episode-guests-line {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: rgba(244,239,230,0.65);
  font-style: italic;
}
.t14-episode-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.t14-ep-tax-topic,
.t14-ep-tax-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.t14-ep-tax-topic { background: rgba(196,98,45,0.12); color: var(--c-terra); }
.t14-ep-tax-tag { background: rgba(244,239,230,0.08); color: rgba(244,239,230,0.56); }
.t14-episode-summary {
  max-width: 760px;
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244,239,230,0.72);
}

/* ============================================================
   SINGLE EPISODE — BODY (CONTENT + TIMESTAMPS)
   ============================================================ */
.t14-episode-body {
  background: var(--c-cream-2);
  padding: 3rem 0 4rem;
}
.t14-episode-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.t14-episode-body-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 2.5rem;
  align-items: start;
}
.t14-episode-main { min-width: 0; }
.t14-episode-aside { min-width: 0; }
.t14-episode-aside-stack {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.t14-episode-side-card {
  background: var(--c-cream);
  border: 1px solid var(--c-cream-3);
  border-radius: 6px;
  padding: 1.5rem;
}
.t14-episode-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: 2rem;
}
.t14-episode-content p { margin-bottom: 1.25em; }
.t14-episode-content h2, .t14-episode-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-text);
  margin: 2em 0 0.75em;
}
.t14-episode-also-on h3,
.t14-episode-timestamps h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  margin: 0 0 1.25rem;
}
.t14-episode-also-on iframe {
  width: 100%;
  min-height: 152px;
  border: 0;
}
.t14-episode-timestamps { padding: 1.5rem; }
.t14-timestamps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.t14-timestamp-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-cream-3);
}
.t14-timestamp-item:last-child { border-bottom: none; }
.t14-timestamp-time {
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-gold);
  min-width: 48px;
  flex-shrink: 0;
}
.t14-timestamp-label {
  font-size: 0.875rem;
  color: var(--c-text);
  line-height: 1.45;
}
.t14-episode-archive-card h3 {
  font-family: var(--font-display);
  color: var(--c-text-dark);
  margin: 0.4rem 0 0.75rem;
}
.t14-episode-archive-card p {
  color: var(--c-text-mid);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

/* ============================================================
   SINGLE EPISODE — RELATED
   ============================================================ */
.t14-episode-related {
  background: var(--c-dark);
  padding: 4rem 0 5rem;
}

/* ============================================================
   PODCAST — RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .t14-podcast-featured-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .t14-episodes-grid { grid-template-columns: repeat(2, 1fr); }
  .t14-episodes-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .t14-episode-body-layout { grid-template-columns: 1fr; }
  .t14-episode-aside-stack { position: static; }
}
@media (max-width: 600px) {
  .t14-podcast-hero { min-height: 380px; }
  .t14-podcast-hero-content { padding: calc(var(--nav-h) + 2rem) var(--gutter) 2.5rem; }
  .t14-page-hero-bg-text--podcast { font-size: clamp(4rem, 26vw, 9rem); bottom: 0.65em; }
  .t14-episodes-grid,
  .t14-episodes-grid--3 { grid-template-columns: 1fr; }
  .t14-filter-inner { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .t14-podcast-featured { padding: 2.5rem 0; }
  .t14-podcast-featured-actions { flex-direction: column; align-items: stretch; }
  .t14-episode-header-inner { padding: 1.5rem var(--gutter) 2rem; }
  .t14-episode-side-card,
  .t14-episode-timestamps { padding: 1.25rem 1rem; }
}
