:root {
  --black: #000000;
  --ink: #ffffff;
  --yellow: #f8c62b;
  --charcoal: #222222;
  --gray: #444444;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(248, 198, 43, 0.74);
  --max: 1180px;
  --body-size: clamp(1rem, 1.18vw, 1.08rem);
  --body-line: 1.58;
  --button-size: 0.78rem;
  --button-line: 1.2;
  --label-size: 0.72rem;
  --small-size: 0.88rem;
  --subhead-size: clamp(1.45rem, 2.45vw, 2.15rem);
  --section-title-size: clamp(2.05rem, 3vw, 3rem);
  --section-title-line: 1.03;
  --section-title-max: 820px;
  --sans: "Proxima Nova", "Avenir Next", "Inter", "Helvetica Neue", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(248, 198, 43, 0.06), transparent 26%, transparent 74%, rgba(248, 198, 43, 0.04)),
    var(--black);
  color: var(--ink);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.access-page {
  min-height: 100vh;
}

.access-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1080px;
  min-height: 100vh;
  padding: clamp(24px, 6vw, 72px) clamp(18px, 5vw, 56px);
}

.access-brand,
.access-panel {
  align-items: center;
  display: flex;
  justify-content: center;
}

.access-brand {
  border-right: 1px solid var(--line);
  padding: clamp(18px, 4vw, 48px);
}

.access-brand img {
  width: min(100%, 390px);
}

.access-panel {
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(30px, 6vw, 72px);
}

.access-panel h1 {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
  margin: 24px 0 22px;
  max-width: 640px;
}

.access-panel > p {
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}

.access-form {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  max-width: 460px;
  width: 100%;
}

.access-form label {
  color: var(--muted);
  font-size: var(--label-size);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-form input[type="password"] {
  appearance: none;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  min-height: 58px;
  padding: 12px 14px;
  width: 100%;
}

.access-form input[type="password"]:focus {
  border-color: var(--yellow);
  outline: 2px solid rgba(248, 198, 43, 0.2);
  outline-offset: 2px;
}

.access-form .button {
  justify-content: center;
  margin-top: 8px;
  width: 100%;
}

.access-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.access-error {
  color: #ffffff;
  font-size: var(--small-size);
  margin: 0;
}

.access-honeypot {
  left: -10000px;
  position: absolute;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  max-width: var(--max);
  padding: 22px clamp(18px, 4vw, 42px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  height: 54px;
  width: 54px;
}

.brand-lockup-scroll {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  visibility: hidden;
}

.brand-lockup-scroll.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.top-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--yellow);
}

.section-band {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(54px, 9vw, 112px) clamp(18px, 4vw, 42px);
}

.section-band[id] {
  scroll-margin-top: 150px;
}

.hero {
  min-height: auto;
  padding-bottom: clamp(22px, 3vw, 30px);
  padding-top: clamp(18px, 3vw, 28px);
}

.hero-frame {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  min-height: clamp(390px, 50vh, 560px);
  overflow: hidden;
}

.hero-logo-panel {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: center;
  padding: clamp(18px, 3vw, 30px);
}

.hero-logo-panel img {
  max-width: min(420px, 100%);
}

.hero-content {
  align-content: center;
  display: grid;
  gap: 0;
  min-width: 0;
  padding: clamp(24px, 3.5vw, 42px);
  max-width: 760px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  font-size: clamp(2.65rem, 4.2vw, 4.05rem);
  line-height: 1.03;
  margin-bottom: 0;
  max-width: 1040px;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.35;
  margin-bottom: 0;
  max-width: 560px;
}

.hero-kicker span {
  display: block;
}

.hero-title {
  color: #ffffff;
  font-family: var(--sans);
  font-size: clamp(1.65rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
  margin-top: clamp(46px, 5vw, 72px);
  max-width: 800px;
}

.hero-title span {
  display: block;
}

.hero-title span + span {
  margin-top: clamp(9px, 1vw, 15px);
}

.hero-title mark {
  background: transparent;
  color: var(--yellow);
}

.hero-content .cta-row {
  margin-top: clamp(28px, 3vw, 40px);
}

@media (min-width: 1000px) {
  .hero-title span {
    white-space: nowrap;
  }
}

h2 {
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  margin-bottom: 0;
  max-width: var(--section-title-max);
}

h3 {
  font-family: var(--serif);
  font-size: var(--subhead-size);
  line-height: 1.04;
  margin-bottom: 12px;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin-bottom: 0;
  max-width: 640px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  font-family: var(--sans);
  font-size: var(--button-size);
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.14em;
  line-height: var(--button-line);
  min-height: 48px;
  padding: 11px 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.logo-button {
  gap: 10px;
}

.logo-button svg {
  height: 20px;
  width: 20px;
}

.hero .logo-button {
  background: #ffffff;
  border-radius: 4px;
  border-color: #ffffff;
  color: #111111;
  font-size: var(--button-size);
  font-weight: 800;
  letter-spacing: 0;
  min-height: 44px;
  text-transform: none;
}

.button-apple svg {
  fill: #b150e2;
}

.button-spotify svg {
  fill: #1db954;
}

.button-linkedin svg {
  fill: #0a66c2 !important;
}

.hero .logo-button:hover,
.hero .logo-button:focus-visible {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #000000;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}

.button-secondary {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
}

.button-quiet {
  background: transparent;
  color: var(--ink);
}

.section-label,
.episode-meta {
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--label-size);
  font-weight: 800;
  letter-spacing: 0.35em;
  line-height: 1.3;
  text-transform: uppercase;
}

.intro-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(30px, 7vw, 92px);
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
}

.intro-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 58px);
}

.intro-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin-bottom: 28px;
}

.host-inline-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 160ms ease;
}

.host-inline-link:hover,
.host-inline-link:focus-visible {
  color: var(--yellow);
}

.light-band {
  background: #ffffff;
  color: #000000;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-left: calc(max(18px, (100vw - var(--max)) / 2 + 42px));
  padding-right: calc(max(18px, (100vw - var(--max)) / 2 + 42px));
}

.light-band .section-label,
.light-band .episode-meta,
.light-band .episode-count,
.light-band .episodes-heading p {
  color: rgba(0, 0, 0, 0.54);
}

.light-band h2,
.light-band h3,
.light-band p,
.light-band a {
  color: #000000;
}

.light-band .button-secondary,
.light-band .episode-action {
  border-color: #000000;
  color: #000000;
}

.light-band .button-primary {
  color: #000000;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading .section-label {
  margin-bottom: 18px;
}

.section-heading h2 {
  max-width: var(--section-title-max);
}

.explore-title {
  color: #000000;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  max-width: var(--section-title-max);
}

.explore-lede {
  color: rgba(0, 0, 0, 0.72);
  font-family: var(--sans);
  font-size: var(--body-size);
  font-weight: 400;
  letter-spacing: 0;
  line-height: var(--body-line);
  margin-top: clamp(20px, 3vw, 34px);
  max-width: 880px;
}

.topic-rail {
  border-top: 1px solid rgba(0, 0, 0, 0.28);
}

.topic-rail div {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 22px;
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 20px 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: clamp(1.12rem, 1.85vw, 1.55rem);
}

.topic-rail span {
  background: var(--yellow);
  border-radius: 50%;
  height: 10px;
  justify-self: start;
  margin-top: 0.16em;
  width: 10px;
}

.hosts {
  border-top: 1px solid var(--line);
}

.host-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.host-row {
  background: var(--black);
  display: grid;
  gap: clamp(24px, 5vw, 52px);
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  padding: clamp(22px, 4vw, 42px) 0;
}

.host-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 280px);
}

.host-row:nth-child(even) .host-media {
  grid-column: 2;
}

.host-row:nth-child(even) .host-copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: stretch;
  text-align: left;
}

.host-media {
  align-content: start;
  display: grid;
  gap: 12px;
}

.host-media img {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.host-copy {
  align-self: center;
}

.host-copy h3 {
  margin-left: clamp(54px, 7vw, 92px);
}

.host-row p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
  max-width: 820px;
}

.host-quote {
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.55;
  padding-left: clamp(54px, 7vw, 92px);
  position: relative;
}

.host-row:nth-child(even) .host-quote {
  padding-left: clamp(54px, 7vw, 92px);
  padding-right: 0;
}

.host-quote::before {
  color: var(--yellow);
  content: "\201C";
  font-family: var(--serif);
  font-size: clamp(4.9rem, 7.4vw, 7.3rem);
  font-weight: 900;
  left: 0;
  line-height: 0.8;
  position: absolute;
  top: -0.18em;
}

.host-row:nth-child(even) .host-quote::before {
  left: 0;
  right: auto;
}

.host-button {
  align-items: center;
  background: #161616;
  border: 1px solid #ffffff;
  border-radius: 5px;
  color: #f0f0f0;
  display: inline-flex;
  font-family: var(--sans);
  font-size: var(--button-size);
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0.09em;
  line-height: var(--button-line);
  min-height: 42px;
  padding: 9px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 160ms ease;
  width: 100%;
}

.host-button svg {
  fill: currentColor;
  height: 17px;
  width: 17px;
}

.host-button:hover,
.host-button:focus-visible {
  background: #232323;
  border-color: #232323;
  color: #ffffff;
  transform: translateY(-1px);
}

.episodes {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.episodes-heading {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
}

.episodes-title {
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  max-width: var(--section-title-max);
}

.episodes-heading p,
.linkedin-cta p,
.site-footer {
  color: rgba(255, 255, 255, 0.66);
}

.episodes-heading .feed-refresh {
  align-self: end;
  color: rgba(0, 0, 0, 0.42);
  font-size: var(--label-size);
  font-weight: 700;
  justify-self: end;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.episode-list {
  border-top: 1px solid rgba(0, 0, 0, 0.24);
}

.episode-row {
  align-items: start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 24px 0;
}

.episode-art {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.episode-art img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.episode-copy h3 {
  font-family: var(--sans);
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 8px 0 8px;
}

.episode-copy h3 a {
  text-decoration: none;
}

.episode-copy h3 a:hover,
.episode-copy h3 a:focus-visible {
  color: var(--yellow);
}

.episode-copy p {
  color: rgba(0, 0, 0, 0.64);
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin-bottom: 0;
}

.episode-player {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 1fr) auto;
  margin-top: 16px;
}

.episode-player audio {
  height: 38px;
  max-width: 620px;
  width: 100%;
}

.episode-action {
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--sans);
  font-size: var(--button-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: var(--button-line);
  padding: 11px 13px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.load-more-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding-top: 26px;
}

.load-more-wrap button {
  cursor: pointer;
}

.episode-count {
  color: rgba(0, 0, 0, 0.54);
  font-size: var(--small-size);
  margin: 0;
}

.linkedin-feed {
  border-top: 1px solid var(--line);
}

.news-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
}

.news-title {
  font-family: var(--sans);
  font-size: var(--section-title-size);
  font-weight: 700;
  line-height: var(--section-title-line);
  margin: 0;
  max-width: var(--section-title-max);
}

.news-intro p {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin: 22px 0 0;
  max-width: 500px;
}

.news-panel {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-width: 0;
}

.news-panel-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px 0;
}

.news-source {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  font-size: var(--button-size);
  font-weight: 900;
  gap: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-source svg {
  fill: currentColor;
  height: 17px;
  width: 17px;
}

.news-panel-head a {
  color: var(--yellow);
  flex: 0 0 auto;
  font-size: var(--button-size);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.news-panel-head a:hover,
.news-panel-head a:focus-visible,
.news-item:hover strong,
.news-item:focus-visible strong {
  color: var(--yellow);
}

.news-scroll {
  max-height: 365px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 12px;
  scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.news-connect {
  display: grid;
  gap: 12px;
  min-height: 365px;
  padding: clamp(30px, 5vw, 54px) 0;
}

.news-connect span {
  color: var(--yellow);
  font-size: var(--label-size);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-connect strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 700;
  line-height: 1.22;
  max-width: 560px;
}

.news-connect p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin: 0;
  max-width: 620px;
}

.news-connect a {
  align-self: end;
  color: var(--yellow);
  font-size: var(--button-size);
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-top: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.news-connect a:hover,
.news-connect a:focus-visible {
  color: #ffffff;
}

.news-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 21px 0;
  text-decoration: none;
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item span {
  color: var(--yellow);
  font-size: var(--label-size);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-item strong {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--sans);
  font-size: clamp(1.04rem, 1.45vw, 1.26rem);
  font-weight: 700;
  line-height: 1.25;
  transition: color 160ms ease;
}

.news-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin: 0;
}

.news-widget {
  border: 0;
  display: block;
  height: 420px;
  width: 100%;
}

.news-widget-embed {
  background: rgba(255, 255, 255, 0.04);
  min-height: 420px;
  overflow: hidden;
}

.news-widget-embed > div {
  min-height: 420px;
}

.faq {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.faq .section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.faq h2 {
  font-family: var(--sans);
  font-size: var(--section-title-size);
  font-weight: 500;
  line-height: var(--section-title-line);
  max-width: var(--section-title-max);
}

.faq-list {
  column-gap: clamp(34px, 6vw, 82px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-column {
  border-top: 1px solid rgba(0, 0, 0, 0.76);
}

.faq-list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.76);
}

.faq-list summary {
  cursor: pointer;
  display: grid;
  font-size: var(--button-size);
  font-weight: 800;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  letter-spacing: 0.16em;
  line-height: 1.45;
  list-style: none;
  min-height: 70px;
  padding: 22px 0 20px;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--yellow);
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  color: rgba(0, 0, 0, 0.68);
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin: 0;
  max-width: none;
  padding: 0 34px 24px 0;
}

.faq-list p a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.linkedin-cta {
  align-items: center;
  border-color: var(--line);
  border-style: solid;
  border-width: 1px 0 0;
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: clamp(26px, 4vw, 44px);
  padding-top: clamp(30px, 4vw, 50px);
}

.linkedin-cta h2 {
  font-family: var(--sans);
  font-size: var(--subhead-size);
  font-weight: 800;
  line-height: 1.12;
  max-width: 620px;
}

.linkedin-cta p {
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin: 12px 0 0;
  max-width: 660px;
}

.linkedin-cta .button {
  min-width: 232px;
}

.linkedin-cta .button-linkedin {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.linkedin-cta .button-linkedin:hover,
.linkedin-cta .button-linkedin:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(34px, 6vw, 62px) clamp(18px, 4vw, 42px) 34px;
}

.footer-main {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(190px, 0.85fr) minmax(280px, 1.4fr) minmax(210px, 0.9fr);
}

.footer-brand {
  align-content: start;
  display: grid;
  gap: 18px;
}

.footer-brand img {
  display: block;
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.15;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--ink);
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
  max-width: 260px;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-pill {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-family: var(--sans);
  font-size: var(--button-size);
  font-weight: 400;
  gap: 8px;
  letter-spacing: 0.18em;
  line-height: var(--button-line);
  min-height: 38px;
  padding: 9px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.platform-pill:hover,
.platform-pill:focus-visible,
.footer-group a:hover,
.footer-group a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--yellow);
}

.platform-pill:hover,
.platform-pill:focus-visible {
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.platform-pill svg {
  height: 18px;
  width: 18px;
}

.platform-apple svg {
  fill: #b150e2;
}

.platform-spotify svg {
  fill: #1db954;
}

.platform-linkedin svg {
  fill: #0a66c2;
}

.footer-links {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-group {
  align-content: start;
  display: grid;
  gap: 9px;
}

.footer-group a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  margin-top: clamp(30px, 5vw, 54px);
  padding-top: 18px;
}

.guest-cta {
  border-top: 0;
  padding-top: clamp(20px, 4vw, 40px);
}

.guest-module,
.guest-page-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(32px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  padding-top: clamp(26px, 4vw, 46px);
}

.guest-page {
  min-height: calc(100vh - 100px);
}

.guest-intro,
.guest-module-copy {
  align-content: start;
  display: grid;
}

.guest-intro h1,
.guest-module h2 {
  font-family: var(--sans);
  font-size: var(--section-title-size);
  font-weight: 800;
  letter-spacing: 0;
  line-height: var(--section-title-line);
  margin: 18px 0 18px;
  max-width: var(--section-title-max);
}

.guest-intro p,
.guest-module-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--body-size);
  line-height: var(--body-line);
  margin-bottom: 0;
  max-width: 560px;
}

.guest-smallprint {
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: var(--small-size) !important;
  margin-top: 0.5rem;
}

.guest-fit-list {
  border-top: 1px solid var(--line);
  display: grid;
  margin: clamp(24px, 3vw, 34px) 0 18px;
  max-width: 560px;
}

.guest-fit-list span {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.84);
  display: grid;
  font-size: var(--body-size);
  gap: 14px;
  grid-template-columns: 11px minmax(0, 1fr);
  line-height: 1.35;
  padding: 15px 0;
}

.guest-fit-list span::before {
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.guest-form-wrap {
  min-width: 0;
}

.guest-form {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guest-form label,
.form-success {
  display: grid;
  gap: 8px;
}

.guest-form span {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--label-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guest-form input,
.guest-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font: inherit;
  min-height: 44px;
  padding: 11px 13px;
  transition: background-color 160ms ease, border-color 160ms ease;
  width: 100%;
}

.guest-form input:focus,
.guest-form textarea:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--yellow);
  outline: 0;
}

.guest-form input::placeholder,
.guest-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.guest-form textarea {
  min-height: 122px;
  resize: vertical;
}

.guest-form em {
  color: var(--yellow);
  font-style: normal;
}

.form-wide {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.form-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--small-size);
  line-height: 1.42;
}

.guest-form button {
  cursor: pointer;
  justify-self: start;
}

.form-success {
  background: #ffffff;
  color: #000000;
  padding: clamp(28px, 5vw, 52px);
}

.form-success h2 {
  color: #000000;
}

.form-success p {
  color: rgba(0, 0, 0, 0.7);
  max-width: 780px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    position: static;
  }

  .top-nav {
    justify-content: flex-end;
  }

  .hero {
    min-height: auto;
  }

  .hero-frame,
  .intro-grid,
  .episodes-heading,
  .news-layout,
  .linkedin-cta,
  .guest-cta,
  .guest-module,
  .guest-page-grid,
  .faq-list,
  .footer-main,
  .guest-form {
    grid-template-columns: 1fr;
  }

  .hero-logo-panel {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 230px;
  }

  .hero-logo-panel img {
    max-width: 260px;
  }

  .hero-content {
    max-width: none;
  }

  .intro-copy {
    border-left: 0;
    padding-left: 0;
  }

  .host-row {
    grid-template-columns: 1fr;
  }

  .host-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .host-row:nth-child(even) .host-media,
  .host-row:nth-child(even) .host-copy {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    text-align: left;
  }

  .host-media {
    max-width: 360px;
  }

  .host-quote,
  .host-row:nth-child(even) .host-quote {
    padding-left: 50px;
    padding-right: 0;
  }

  .host-copy h3 {
    margin-left: 50px;
  }

  .host-row:nth-child(even) .host-quote::before {
    left: 0;
    right: auto;
  }

  .episode-row {
    align-items: start;
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .episode-action {
    grid-column: 2;
    justify-self: start;
  }

  .faq-column + .faq-column {
    border-top: 0;
  }

  .faq-list p {
    padding-right: 0;
  }

  .news-intro p {
    max-width: 680px;
  }

  .guest-intro p,
  .guest-module-copy p,
  .guest-fit-list {
    max-width: 720px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-lockup-scroll {
    transform: none;
    transition: none;
  }
}

@media (max-width: 560px) {
  :root {
    --section-title-size: clamp(1.8rem, 7.4vw, 2.22rem);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .brand-lockup {
    height: 46px;
    min-width: 46px;
    width: 46px;
  }

  .top-nav {
    font-size: 0.64rem;
    gap: 10px 14px;
    min-width: 0;
  }

  .top-nav a {
    white-space: nowrap;
  }

  .top-nav a[href="/guest.php"] {
    flex-basis: 100%;
    text-align: right;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-logo-panel {
    min-height: 0;
    padding: 0;
  }

  .hero-logo-panel img {
    max-width: none;
    width: 100%;
  }

  .hero-content {
    gap: 0;
    padding: 18px 18px 20px;
  }

  h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.7rem);
  }

  .hero-title {
    font-size: clamp(1.28rem, 6.2vw, 1.8rem);
    line-height: 1.18;
    margin-top: 34px;
  }

  .hero-title span + span {
    margin-top: 8px;
  }

  .hero-content .cta-row {
    margin-top: 24px;
  }

  .linkedin-cta .button,
  .load-more-wrap .button {
    width: 100%;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.34;
  }

  .faq-list summary {
    font-size: 0.76rem;
    letter-spacing: 0.13em;
    min-height: 64px;
    padding: 18px 0 16px;
  }

  .cta-row {
    gap: 10px;
  }

  .news-panel-head {
    align-items: flex-start;
    display: grid;
    gap: 10px;
  }

  .news-scroll {
    max-height: 330px;
    padding-right: 6px;
  }

  .news-connect {
    min-height: 260px;
  }

  .guest-module,
  .guest-page-grid {
    gap: 28px;
  }

  .explore-title {
    max-width: 100%;
  }

  .cta-row .button {
    flex: 1 1 calc(50% - 5px);
    font-size: 0.78rem;
    min-height: 42px;
    padding: 9px 10px;
  }

  .cta-row .button-quiet {
    flex-basis: 100%;
  }

  .topic-rail div {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .episode-row {
    grid-template-columns: 1fr;
  }

  .episode-art {
    max-width: 150px;
  }

  .episode-player {
    grid-template-columns: 1fr;
  }

  .episode-action {
    grid-column: 1;
    justify-self: start;
  }

  .footer-platforms,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-platforms {
    display: grid;
  }

  .platform-pill {
    justify-content: flex-start;
    min-height: 42px;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .access-shell {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .access-brand {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 0;
  }

  .access-brand img {
    width: 100%;
  }

  .access-panel {
    padding: 36px 22px 52px;
  }
}
