/* Outlaws & Scholars podcast page. Every rule is scoped to .pod- classes or the
   .pod-page wrapper so no existing page is affected. */

.pod-page {
  --pod-black: #0b0b0b;
  --pod-red: #e11b1b;
  /* brighter red reserved for small text so contrast stays above 4.5:1 on black */
  --pod-red-text: #ff5f52;
  --pod-white: #ffffff;
  --pod-dim: #b5b5b0;
  --pod-line: #ffffff2b;
  background: var(--pod-black);
  color: var(--pod-white);
  font-family: var(--body);
}
.pod-page ::selection {
  background: var(--pod-red);
  color: #fff;
}
.pod-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 50;
  background: var(--pod-red);
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
}
.pod-skip:focus {
  left: 12px;
  top: 12px;
}
.pod-page a:focus-visible,
.pod-page button:focus-visible,
.pod-page summary:focus-visible {
  outline: 3px solid var(--pod-red);
  outline-offset: 3px;
}

/* ---------- header ---------- */
.pod-header {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding: 22px 6%;
  border-bottom: 1px solid var(--pod-line);
}
.pod-header .pod-brand {
  font: 700 22px/1 var(--display);
  letter-spacing: 0.06em;
  color: var(--pod-white);
  margin-right: auto;
}
.pod-header .pod-brand span {
  color: var(--pod-red);
}
.pod-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
}
.pod-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pod-dim);
}
.pod-nav a:hover {
  color: var(--pod-white);
}
.pod-nav a[aria-current="page"] {
  color: var(--pod-white);
  box-shadow: inset 0 -2px 0 var(--pod-red);
}

/* ---------- hero ---------- */
.pod-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8%;
  align-items: center;
  padding: 92px 6% 96px;
  position: relative;
  overflow: hidden;
}
.pod-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 60%;
  background: radial-gradient(closest-side, #e11b1b33, transparent 70%);
  pointer-events: none;
}
.pod-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pod-red-text);
  margin: 0 0 20px;
}
.pod-hero h1 {
  font: 700 clamp(44px, 6.6vw, 96px) / 0.92 var(--display);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 28px;
  max-width: 12ch;
}
.pod-hero h1 .pod-t1,
.pod-hero h1 .pod-t2 {
  display: block;
}
.pod-hero h1 .pod-t1 {
  color: var(--pod-red);
}
.pod-hero h1 .pod-t2 {
  color: var(--pod-white);
}
.pod-hero h1 .pod-t3 {
  display: block;
  margin-top: 18px;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.3;
  letter-spacing: 0.34em;
  color: var(--pod-dim);
}
.pod-lede {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
  color: var(--pod-dim);
  max-width: 54ch;
  margin: 0 0 36px;
}
.pod-hero-art {
  margin: 0;
  position: relative;
}
.pod-hero-art img {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  height: auto;
  display: block;
  border: 1px solid var(--pod-line);
  filter: none;
}

.pod-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.pod-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 26px;
  background: var(--pod-red);
  color: #fff;
  border: 1px solid var(--pod-red);
  font: 600 13px/1 var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s;
}
.pod-cta:hover {
  background: transparent;
  color: var(--pod-red);
}
.pod-cta.is-ghost {
  background: transparent;
  color: var(--pod-white);
  border-color: var(--pod-line);
}
.pod-cta.is-ghost:hover {
  border-color: var(--pod-white);
  color: var(--pod-white);
}

/* ---------- sections ---------- */
.pod-section {
  padding: 96px 6%;
  border-top: 1px solid var(--pod-line);
}
.pod-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pod-dim);
  border-top: 1px solid var(--pod-line);
  padding-top: 18px;
  margin-bottom: 52px;
}
.pod-label span:first-child {
  color: var(--pod-red);
}
.pod-h2 {
  font: 600 clamp(34px, 5vw, 78px) / 0.98 var(--display);
  text-transform: uppercase;
  margin: 0 0 24px;
}
.pod-h2 em {
  font-style: normal;
  color: var(--pod-red);
}
.pod-prose p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--pod-dim);
  max-width: 64ch;
}
.pod-prose a {
  color: var(--pod-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pod-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
  align-items: start;
}

/* ---------- player ---------- */
.pod-stage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 5%;
  align-items: start;
  scroll-margin-top: 20px;
}
.pod-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--pod-line);
  overflow: hidden;
}
.pod-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pod-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  display: block;
}
.pod-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.3s;
}
.pod-play:hover img {
  opacity: 1;
}
.pod-play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--pod-red);
}
.pod-play-mark::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 25px;
  border-left: 26px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.pod-play-text {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.pod-stage-number,
.pod-card-number {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pod-red-text);
  margin: 0 0 8px;
}
.pod-card-number {
  margin: 16px 0 6px;
}
.pod-stage-title {
  font: 600 clamp(22px, 2.3vw, 32px) / 1.15 var(--display);
  margin: 0 0 12px;
}
.pod-stage-facts {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pod-red-text);
  margin: 0 0 16px;
}
.pod-stage-blurb {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pod-dim);
  margin: 0 0 24px;
}
.pod-stage-actions {
  margin: 0 0 20px;
}
.pod-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--pod-dim);
  margin: 0;
  max-width: 44ch;
}

.pod-cards {
  list-style: none;
  margin: 62px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.pod-card {
  border-top: 1px solid var(--pod-line);
  padding-top: 18px;
}
.pod-card-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--pod-line);
  background: #000;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pod-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.3s;
}
.pod-card-thumb:hover img {
  opacity: 1;
}
.pod-card-cue {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--pod-red);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
}
.pod-card-title {
  font: 600 18px/1.25 var(--display);
  margin: 0 0 8px;
}
.pod-card-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pod-dim);
  margin: 0 0 12px;
}
.pod-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
}
.pod-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--pod-white);
  font: 600 12px/1 var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--pod-red);
}
.pod-link:hover {
  color: var(--pod-red);
}

/* ---------- stats, partner, faq, footer ---------- */
.pod-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid var(--pod-line);
  padding-top: 30px;
  margin-top: 44px;
}
.pod-stats strong {
  font: 500 clamp(38px, 4.4vw, 68px) / 1 var(--display);
  display: block;
}
.pod-stats p {
  font-size: 13px;
  color: var(--pod-dim);
  margin: 8px 0 0;
  line-height: 1.6;
}
.pod-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.pod-partner {
  border: 1px solid var(--pod-line);
  padding: 34px;
}
.pod-partner h3 {
  font: 600 clamp(24px, 2.6vw, 36px) / 1.05 var(--display);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.pod-partner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--pod-dim);
  margin: 0 0 26px;
}
.pod-faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--pod-line);
  max-width: 900px;
}
.pod-faq details {
  border-bottom: 1px solid var(--pod-line);
}
.pod-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 62px;
  cursor: pointer;
  font: 600 19px/1.3 var(--display);
  list-style: none;
  padding: 18px 0;
}
.pod-faq summary::-webkit-details-marker {
  display: none;
}
.pod-faq summary span {
  color: var(--pod-red);
  font-size: 22px;
}
.pod-faq div {
  font-size: 16px;
  line-height: 1.8;
  color: var(--pod-dim);
  padding: 0 0 24px;
  max-width: 68ch;
}
.pod-faq div a {
  color: var(--pod-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pod-footer {
  padding: 56px 6%;
  border-top: 1px solid var(--pod-line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  font-size: 13px;
  color: var(--pod-dim);
}
.pod-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin-right: auto;
}
.pod-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--pod-white);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pod-footer nav a:hover {
  color: var(--pod-red);
}

.pod-stage:focus-visible,
.pod-stage-title:focus-visible {
  outline: 3px solid var(--pod-red);
  outline-offset: 6px;
}

/* ---------- reveals ---------- */
/* Content is visible by default. It is only hidden once the observer has been
   initialised (.pod-enhanced), so no JavaScript means no hidden sections. */
.pod-reveal {
  opacity: 1;
  transform: none;
}
.pod-enhanced .pod-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.pod-enhanced .pod-reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .pod-reveal,
  .pod-enhanced .pod-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pod-page * {
    scroll-behavior: auto !important;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .pod-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .pod-hero,
  .pod-stage,
  .pod-split,
  .pod-partners,
  .podcast-teaser {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .pod-stage-meta {
    margin-top: 6px;
  }
  .pod-stats {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pod-section {
    padding: 72px 6%;
  }
  .pod-hero {
    padding: 62px 6% 72px;
  }
}
@media (max-width: 560px) {
  .pod-cards {
    grid-template-columns: 1fr;
  }
  .pod-partner {
    padding: 24px;
  }
  .pod-header {
    gap: 12px;
  }
}

/* visually hidden text used to give controls a full accessible name */
.pod-page .pod-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
