/* ============================================================
   FRESH CORDUROY — main.css
   Global layout, navigation, header, hero, section patterns,
   footer. Mobile-first.
   ============================================================ */

/* ============================================================
   NAVIGATION / HEADER
   ============================================================ */

.fc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--fc-nav-height);
  background: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.fc-header.is-scrolled {
  background: var(--fc-black);
  box-shadow: var(--fc-shadow-lg);
}

.fc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--fc-nav-height);
  gap: 24px;
}

/* Logo */
.fc-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.fc-header__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.fc-header__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.fc-header__wordmark-top,
.fc-header__wordmark-bottom {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fc-white);
}

.fc-header__wordmark-top { font-size: 0.65rem; opacity: 0.7; }
.fc-header__wordmark-bottom { font-size: 1rem; }

/* Primary Nav */
.fc-header__nav {
  display: none;
  flex: 1;
}

@media (min-width: 900px) {
  .fc-header__nav { display: flex; justify-content: center; }
}

.fc-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fc-nav__list .menu-item a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: var(--fc-radius-sm);
  transition: var(--fc-transition);
}

.fc-nav__list .menu-item a:hover,
.fc-nav__list .menu-item.current-menu-item a {
  color: var(--fc-white);
  background: rgba(255,255,255,0.1);
}

/* Header Actions */
.fc-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.fc-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 900px) {
  .fc-header__hamburger { display: none; }
}

.fc-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fc-white);
  border-radius: 2px;
  transition: var(--fc-transition);
}

.fc-header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.fc-header__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.fc-header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.fc-mobile-nav {
  position: fixed;
  top: var(--fc-nav-height);
  left: 0;
  right: 0;
  background: var(--fc-black);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  z-index: 999;
}

.fc-mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.fc-mobile-nav__inner {
  padding: 24px;
}

.fc-mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.fc-mobile-nav__list .menu-item a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fc-white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fc-mobile-nav__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Body offset for fixed header */
body {
  padding-top: var(--fc-nav-height);
}

/* ============================================================
   HERO
   ============================================================ */

.fc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--fc-nav-height));
  margin-bottom: 0;
  padding-top: var(--fc-nav-height);
  padding-bottom: 0;
  background-color: var(--fc-blue-dark);
}

.fc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: fc-hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes fc-hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.fc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 25, 35, 0.92) 0%,
    rgba(26, 58, 92, 0.75) 40%,
    rgba(15, 25, 35, 0.45) 100%
  );
}

.fc-hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.fc-hero__content {
  flex: 1;
  max-width: 680px;
}

.fc-hero__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fc-blue-light);
  margin-bottom: 16px;
}

.fc-hero__headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--fc-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.fc-hero__subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 560px;
}

.fc-hero__proof {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 36px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border-left: 3px solid var(--fc-blue-light);
  border-radius: 0 var(--fc-radius-sm) var(--fc-radius-sm) 0;
  display: inline-block;
}

.fc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fc-hero__artwork {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .fc-hero__artwork {
    display: block;
  }
}

.fc-hero__cover {
  width: 220px;
  height: 220px;
  border-radius: var(--fc-radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  object-fit: cover;
  animation: fc-float 6s ease-in-out infinite;
}

@keyframes fc-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================================
   SECTION PATTERNS
   ============================================================ */

.fc-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.fc-section-title {
  color: var(--fc-black);
}

.fc-section-cta {
  text-align: center;
  margin-top: 48px;
}

.fc-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fc-blue-mid);
  margin-bottom: 12px;
  display: block;
}

.fc-eyebrow--light { color: var(--fc-blue-light); }

/* Page header banner */
.fc-page-header {
  padding: 64px 0 48px;
}

.fc-page-header--dark {
  background: var(--fc-blue-dark);
  color: var(--fc-white);
}

.fc-page-header__title {
  color: var(--fc-white);
  margin-bottom: 8px;
}

.fc-page-header__subtitle,
.fc-page-header__count {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: none;
}

/* Off-white section */
.fc-section--off-white {
  background: var(--fc-off-white);
}

.fc-section--dark {
  background: var(--fc-blue-dark);
  color: var(--fc-white);
}

.fc-section--dark h1,
.fc-section--dark h2,
.fc-section--dark h3,
.fc-section--dark h4 {
  color: var(--fc-white);
}

.fc-section--dark p {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   LATEST EPISODE HERO BLOCK
   ============================================================ */

.fc-latest-episode {
  background: var(--fc-blue-dark);
  padding: 80px 0;
  margin-top: 0;
}

.fc-latest-episode__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 760px) {
  .fc-latest-episode__inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.fc-latest-episode__image {
  width: 100%;
  border-radius: var(--fc-radius-md);
  box-shadow: var(--fc-shadow-lg);
}

.fc-latest-episode__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: var(--fc-radius-md);
  min-height: 280px;
}

.fc-latest-episode__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.fc-latest-episode__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fc-white);
  margin-bottom: 12px;
}

.fc-latest-episode__title a {
  color: inherit;
  text-decoration: none;
}

.fc-latest-episode__title a:hover {
  color: var(--fc-blue-light);
}

.fc-latest-episode__guest {
  color: var(--fc-blue-light);
  font-size: 1rem;
  margin-bottom: 12px;
}

.fc-latest-episode__guest strong { color: var(--fc-white); }

.fc-latest-episode__meta {
  display: flex;
  gap: 16px;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.fc-latest-episode__excerpt {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.fc-latest-episode__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   ABOUT SPLIT
   ============================================================ */

.fc-about-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 760px) {
  .fc-about-split__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.fc-about-split__title {
  margin-bottom: 20px;
}

.fc-about-split__text p {
  margin-bottom: 16px;
  color: var(--fc-gray-text);
}

.fc-about-split__image img {
  width: 100%;
  border-radius: var(--fc-radius-lg);
  box-shadow: var(--fc-shadow-lg);
  object-fit: cover;
}

/* ============================================================
   EMAIL CAPTURE SECTION
   ============================================================ */

.fc-email-section {
  background: var(--fc-blue-mid);
  padding: 80px 0;
}

.fc-email-capture--full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 760px) {
  .fc-email-capture--full {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.fc-email-capture__title {
  color: var(--fc-white);
  margin-bottom: 12px;
}

.fc-email-capture__subtitle {
  color: rgba(255,255,255,0.8);
  max-width: 44ch;
  font-size: 1.05rem;
}

/* ============================================================
   SUBSCRIBE STRIP
   ============================================================ */

.fc-subscribe-strip--full {
  background: var(--fc-off-white);
  border-top: 1px solid var(--fc-gray-light);
  border-bottom: 1px solid var(--fc-gray-light);
  padding: 32px 0;
}

.fc-subscribe-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.fc-subscribe-strip__heading {
  font-size: 1.25rem;
  white-space: nowrap;
  color: var(--fc-black);
}

.fc-subscribe-strip__platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Sidebar variant */
.fc-subscribe-strip--sidebar .fc-subscribe-strip__platforms {
  flex-direction: column;
}

/* ============================================================
   GUEST WALL
   ============================================================ */

.fc-guest-wall {
  background: var(--fc-off-white);
  padding: 64px 0;
  overflow: hidden;
}

.fc-guest-wall .fc-section-title {
  margin-bottom: 36px;
}

.fc-guest-wall__scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 16px 24px;
}

.fc-guest-wall__scroll-wrapper::-webkit-scrollbar { display: none; }

.fc-guest-wall__track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.fc-guest-wall__item {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.fc-guest-wall__link {
  display: block;
  text-decoration: none;
}

.fc-guest-wall__link:hover .fc-guest-wall__image {
  border-color: var(--fc-blue-mid);
  transform: translateY(-4px);
}

.fc-guest-wall__image-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}

.fc-guest-wall__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--fc-gray-light);
  transition: var(--fc-transition);
}

.fc-guest-wall__image--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-blue-dark);
  color: var(--fc-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.fc-guest-wall__name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fc-gray-text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}

.fc-guest-wall__cta {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.fc-footer__body {
  background: var(--fc-black);
  padding: 64px 0;
}

.fc-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 600px) {
  .fc-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

.fc-footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 16px;
}

.fc-footer__tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 28ch;
}

.fc-footer__social {
  display: flex;
  gap: 12px;
}

.fc-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: var(--fc-transition);
}

.fc-footer__social-link:hover {
  background: var(--fc-blue-mid);
  color: var(--fc-white);
}

.fc-footer__nav-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.fc-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-footer__nav-list a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--fc-transition);
}

.fc-footer__nav-list a:hover {
  color: var(--fc-white);
}

.fc-footer__bottom {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.fc-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-footer__copyright,
.fc-footer__love {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ============================================================
   PROSE (RICH TEXT)
   ============================================================ */

.fc-prose p { margin-bottom: 1.25rem; }
.fc-prose h2, .fc-prose h3, .fc-prose h4 { margin: 2rem 0 0.75rem; }
.fc-prose ul, .fc-prose ol { margin: 0 0 1.25rem 1.5rem; }
.fc-prose ul { list-style: disc; }
.fc-prose ol { list-style: decimal; }
.fc-prose li { margin-bottom: 0.4rem; }
.fc-prose a { color: var(--fc-blue-mid); text-decoration: underline; }
.fc-prose blockquote {
  border-left: 4px solid var(--fc-blue-light);
  padding: 8px 20px;
  margin: 1.5rem 0;
  color: var(--fc-gray-text);
  font-style: italic;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */

.fc-empty-state {
  padding: 60px 0;
  text-align: center;
}

.fc-empty-state p {
  color: var(--fc-gray-text);
  margin-bottom: 20px;
  max-width: none;
}

/* ============================================================
   404
   ============================================================ */

.fc-404 { text-align: center; padding: 120px 0; }
.fc-404__code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--fc-gray-light);
  line-height: 1;
  margin-bottom: 16px;
}
.fc-404__title { margin-bottom: 16px; }
.fc-404__message { max-width: 44ch; margin: 0 auto 32px; }
.fc-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   EPISODE LAYOUT (SINGLE)
   ============================================================ */

.fc-episode-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .fc-episode-layout {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.fc-episode-header {
  position: relative;
  background: var(--fc-blue-dark);
  padding: 64px 0 48px;
  overflow: hidden;
}

.fc-episode-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) saturate(0.4);
  transform: scale(1.1);
  opacity: 0.3;
}

.fc-episode-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,58,92,0.95) 40%, rgba(26,58,92,0.6));
}

.fc-episode-header__container { position: relative; z-index: 1; }

.fc-episode-header__meta {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.fc-episode-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--fc-white);
  margin-bottom: 16px;
}

.fc-episode-header__info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.fc-episode-header__guest strong { color: var(--fc-white); }

.fc-audio-player { margin: 0 0 24px; }

.fc-episode-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.fc-episode-platforms__label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fc-gray-text);
}

.fc-episode-notes { margin-bottom: 40px; }
.fc-episode-notes__heading { margin-bottom: 20px; }

.fc-episode-transcript { margin-bottom: 40px; }

.fc-transcript-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: none;
  border: 2px solid var(--fc-gray-light);
  border-radius: var(--fc-radius-md);
  padding: 12px 20px;
  cursor: pointer;
  color: var(--fc-blue-mid);
  transition: var(--fc-transition);
  width: 100%;
  text-align: left;
}

.fc-transcript-toggle:hover {
  border-color: var(--fc-blue-mid);
  background: var(--fc-off-white);
}

.fc-transcript-toggle__icon {
  margin-left: auto;
  transition: transform 0.2s;
}

.fc-transcript-toggle[aria-expanded="true"] .fc-transcript-toggle__icon {
  transform: rotate(180deg);
}

.fc-transcript-body {
  padding: 24px 0;
  border-bottom: 1px solid var(--fc-gray-light);
}

.fc-episode-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fc-episode-share__label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fc-gray-text);
}

.fc-episode-sidebar__image img {
  width: 100%;
  border-radius: var(--fc-radius-md);
  margin-bottom: 24px;
}

.fc-sidebar-subscribe { padding: 24px; background: var(--fc-off-white); border-radius: var(--fc-radius-md); }
.fc-sidebar-subscribe__title { font-size: 1rem; margin-bottom: 16px; }

.fc-sidebar-email {
  padding: 24px;
  background: var(--fc-blue-dark);
  border-radius: var(--fc-radius-md);
  color: var(--fc-white);
  margin-top: 24px;
}
.fc-sidebar-email h3 { color: var(--fc-white); margin-bottom: 8px; font-size: 1rem; }
.fc-sidebar-email p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.fc-about-mission { background: var(--fc-off-white); }
.fc-about-mission__body { margin-top: 24px; }

.fc-about-host { background: var(--fc-blue-dark); }
.fc-about-host__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 760px) {
  .fc-about-host__grid { grid-template-columns: 360px 1fr; }
}

.fc-about-host__image {
  width: 100%;
  border-radius: var(--fc-radius-lg);
  object-fit: cover;
  box-shadow: var(--fc-shadow-lg);
}

.fc-about-host__name { color: var(--fc-white); margin: 8px 0 24px; }

.fc-about-host__creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.fc-cred {
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--fc-radius-md);
  border-left: 3px solid var(--fc-blue-light);
}

.fc-cred strong {
  display: block;
  color: var(--fc-white);
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.fc-cred span {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}

/* ============================================================
   MERCH PAGE
   ============================================================ */

.fc-merch-hero {
  position: relative;
  padding: 120px 0;
  background: var(--fc-blue-dark);
  text-align: center;
  overflow: hidden;
}

.fc-merch-hero__bg {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="20"/></svg>');
  background-size: 300px;
  opacity: 0.5;
}

.fc-merch-hero__container { position: relative; z-index: 1; }
.fc-merch-hero__title { color: var(--fc-white); margin-bottom: 16px; }
.fc-merch-hero__subtitle { color: rgba(255,255,255,0.75); max-width: 50ch; margin: 0 auto 24px; }
.fc-merch-hero__cta-label { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 16px; }

.fc-merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.fc-merch-item {
  padding: 32px 24px;
  background: var(--fc-off-white);
  border-radius: var(--fc-radius-lg);
  text-align: center;
  border: 1px solid var(--fc-gray-light);
}

.fc-merch-item__image--placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--fc-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--fc-gray-text);
}

.fc-merch-item h3 { margin-bottom: 8px; font-size: 1.25rem; }
.fc-merch-item p { font-size: 0.875rem; color: var(--fc-gray-text); max-width: none; }

/* ============================================================
   SUBSCRIBE PAGE
   ============================================================ */

.fc-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.fc-platform-card {
  padding: 36px 28px;
  background: var(--fc-off-white);
  border-radius: var(--fc-radius-lg);
  border: 1px solid var(--fc-gray-light);
  text-align: center;
  transition: var(--fc-transition);
}

.fc-platform-card:hover {
  box-shadow: var(--fc-shadow-lg);
  transform: translateY(-2px);
}

.fc-platform-card__icon {
  margin-bottom: 16px;
}

.fc-platform-card__name {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.fc-platform-card__desc {
  font-size: 0.875rem;
  color: var(--fc-gray-text);
  margin-bottom: 24px;
  max-width: none;
}

/* ============================================================
   EPISODES LAYOUT
   ============================================================ */

.fc-episodes-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .fc-episodes-layout {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

/* Guest Directory */
.fc-guest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.fc-guest-card {
  transition: var(--fc-transition);
}

.fc-guest-card:hover { transform: translateY(-4px); }

.fc-guest-card__link { display: block; text-decoration: none; }

.fc-guest-card__image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--fc-radius-md);
  margin-bottom: 12px;
}

.fc-guest-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fc-guest-card:hover .fc-guest-card__image { transform: scale(1.04); }

.fc-guest-card__image--placeholder {
  background: var(--fc-blue-dark);
  color: var(--fc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  height: 100%;
}

.fc-guest-card__name {
  font-size: 1rem;
  color: var(--fc-black);
  margin-bottom: 4px;
}

.fc-guest-card__ep-title {
  font-size: 0.8rem;
  color: var(--fc-gray-text);
  line-height: 1.4;
  margin: 0;
  max-width: none;
}

.fc-guest-card__ep-count {
  font-size: 0.75rem;
  color: var(--fc-blue-mid);
  font-weight: 600;
  margin: 4px 0 0;
}

/* Guest search */
.fc-guest-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.fc-guest-search__input { flex: 1; min-width: 200px; }

/* ============================================================
   FILTER BAR
   ============================================================ */

.fc-filter-bar { margin-bottom: 32px; }

.fc-filter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.fc-filter-form__search {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.fc-filter-form__input { padding-right: 44px; width: 100%; }

.fc-filter-form__submit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--fc-gray-text);
  cursor: pointer;
  padding: 4px;
  display: flex;
}

.fc-filter-form__clear {
  font-size: 0.875rem;
  color: var(--fc-gray-text);
  text-decoration: underline;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.fc-pagination { margin-top: 48px; }

.fc-pagination .page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
}

.fc-pagination .page-numbers li a,
.fc-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--fc-gray-light);
  border-radius: var(--fc-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fc-gray-text);
  transition: var(--fc-transition);
}

.fc-pagination .page-numbers li a:hover {
  border-color: var(--fc-blue-mid);
  color: var(--fc-blue-mid);
}

.fc-pagination .page-numbers li .current {
  background: var(--fc-blue-mid);
  border-color: var(--fc-blue-mid);
  color: var(--fc-white);
}

/* ============================================================
   SEARCH RESULTS
   ============================================================ */

.fc-search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.fc-search-form__input { flex: 1; }

.fc-search-result {
  padding: 24px 0;
  border-bottom: 1px solid var(--fc-gray-light);
}

.fc-search-result h2 { font-size: 1.25rem; margin-bottom: 8px; }
.fc-search-result p { font-size: 0.9rem; max-width: none; }

/* ============================================================
   SPINNER ANIMATION
   ============================================================ */

@keyframes fc-spin {
  to { transform: rotate(360deg); }
}

.fc-spin {
  animation: fc-spin 0.8s linear infinite;
}

/* Fix about section text color on dark background */
.fc-about-split {
    background-color: var(--fc-blue-dark);
    padding: 80px 0;
}

.fc-about-split .fc-eyebrow {
    color: var(--fc-blue-light);
}

.fc-about-split .fc-about-split__title {
    color: #ffffff;
}

.fc-about-split__text p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.fc-about-split .fc-btn--secondary {
    color: #ffffff;
    border-color: #ffffff;
}

/* Subscribe page fixes */
.fc-platform-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    margin-bottom: 16px;
}

.fc-platform-card__icon img {
    display: block;
    margin: 0 auto;
    width: 40px;
    height: 40px;
}

.fc-platform-card .fc-btn {
    font-size: 0.75rem;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.fc-platform-card__icon img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}
/* Lighten latest episode section background */
.fc-latest-episode {
    background: var(--fc-blue-mid);
}

/* Recent episodes heading white text */
.fc-episode-grid-section .fc-section-title {
    color: #ffffff;
}

/* Apple Podcasts button */
.fc-btn--apple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6A0DAD;
    color: #ffffff;
    border: 2px solid #6A0DAD;
    padding: 14px 24px;
    border-radius: var(--fc-radius-md);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: var(--fc-transition);
}

.fc-btn--apple:hover {
    background: #550AAA;
    border-color: #550AAA;
    color: #ffffff;
}
/* Hero eyebrow text - make white for better readability */
.fc-hero__eyebrow {
    color: #ffffff;
    opacity: 0.9;
}