/* ============================================
   Tann — Main Styles
   ============================================ */

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-blue);
  background-color: var(--color-bg-white);
}

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

a {
  color: var(--color-text-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-red);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p { margin-bottom: var(--space-md); }
strong { font-weight: 700; }

/* ---------- Highlight utilities ---------- */

/* Surligné rouge : fond rouge, texte blanc */
.hl-red {
  background: var(--color-red);
  color: var(--color-text-white);
  padding: 0.05em 0.35em;
  border-radius: 3px;
}

/* Surligné bleu : fond bleu, texte blanc */
.hl-blue {
  background: var(--color-accent-blue);
  color: var(--color-text-white);
  padding: 0.05em 0.35em;
  border-radius: 3px;
}

/* Texte rouge */
.text-red {
  color: var(--color-red);
}

/* Texte blanc */
.text-white {
  color: var(--color-text-white);
}

/* Soulignement rouge à la main (courbe SVG) */
.underline-hand {
  position: relative;
  display: inline-block;
}

.underline-hand::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -4px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2 8c30-6 60-4 90 0s70 4 106-2' stroke='%23e63946' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

/* Cercle rouge à la main */
.circle-hand {
  position: relative;
  display: inline-block;
}

.circle-hand::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -10px;
  right: -10px;
  bottom: -6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 50'%3E%3Cellipse cx='60' cy='25' rx='56' ry='20' stroke='%23e63946' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-dasharray='2,0'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
  pointer-events: none;
}

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow { max-width: var(--max-width-narrow); }
.container--wide   { max-width: var(--max-width-wide); }

.section {
  padding: var(--space-section) 0;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 26, 62, 0.7) 0%,
    rgba(26, 26, 62, 0.3) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: var(--space-xl) var(--gutter);
}

.hero__title {
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.1;
}

.hero__scroll {
  display: inline-block;
  color: var(--color-text-white);
  opacity: 0.7;
  margin-top: var(--space-2xl);
  transition: opacity var(--transition-fast);
  animation: hero-bounce 2s infinite;
}

.hero__scroll:hover {
  opacity: 1;
  color: var(--color-text-white);
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   Section : L'audio selon Tann (fond blanc)
   ============================================ */

.audio-section {
  background: var(--color-bg-white);
  padding: var(--space-section) 0;
  color: var(--color-text-blue);
}

.audio-section__title {
  font-size: var(--font-size-4xl);
  color: var(--color-red);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.audio-section__text {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text-blue);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   Section : Notre Mission (fond bleu clair)
   ============================================ */

.mission-section {
  background: var(--color-bg-light-blue);
  padding: var(--space-section) 0;
  color: var(--color-text-blue);
}

.mission-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.mission-section__text h3 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--color-text-blue);
  margin-bottom: var(--space-2xl);
}

.mission-section__list {
  padding: 0;
}

.mission-section__list p {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--space-xl);
  color: var(--color-text-blue);
}

/* Images : grand cercle Jocelyne au centre-droit, petit cercle Esy en bas-droite, icone Tann en haut-droite */
.mission-section__images {
  position: relative;
  min-height: 520px;
}

.mission-img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
}

/* Jocelyne Béroard — grand cercle principal */
.mission-img--main {
  width: 380px;
  height: 380px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* E.Sy Kennenga — cercle secondaire en bas à droite */
.mission-img--secondary {
  width: 220px;
  height: 220px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

/* Icone Tann — petit cercle blanc en haut à droite */
.mission-img--icon {
  width: 100px;
  height: 100px;
  top: 0;
  right: 40px;
  z-index: 3;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-md);
  padding: 15px;
}

/* ============================================
   Section : Explorez nos créations (fond blanc)
   ============================================ */

.explore-section {
  background: var(--color-bg-white);
  padding: var(--space-section) 0;
  color: var(--color-text-blue);
}

.explore-section h2 {
  text-align: center;
  font-size: var(--font-size-4xl);
  color: var(--color-red);
  margin-bottom: var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
}

.service-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.service-card__icon {
  width: 160px;
  height: 160px;
  margin: 0 auto var(--space-xl);
}

.service-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text-blue);
}

.service-card__text {
  color: var(--color-text-blue);
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: 1.7;
}

/* ============================================
   Section : Sponsoring (fond bleu foncé)
   ============================================ */

.sponsoring-section {
  background: var(--color-bg-dark-blue);
  padding: var(--space-section) 0;
  color: var(--color-text-white);
}

.sponsoring-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.sponsoring-section__text h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.sponsoring-section__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-md);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.sponsoring-section__image-wrap {
  display: flex;
  justify-content: center;
}

.sponsoring-section__image-wrap img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Section : Réalisations (fond blanc)
   ============================================ */

.realisations-section {
  background: var(--color-bg-white);
  padding: var(--space-section) 0;
  color: var(--color-text-blue);
}

.realisations-section h2 {
  text-align: center;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-lg);
}

.realisations-section .section-intro {
  text-align: center;
  color: var(--color-text-blue);
  font-size: var(--font-size-xl);
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.podcast-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base);
}

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

.podcast-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.podcast-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--color-text-white);
}

.podcast-card__title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text-white);
}

.podcast-card__tagline {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Section CTA (Brand Identity)
   ============================================ */

.cta-section {
  text-align: center;
  padding: var(--space-section) 0;
  background: var(--color-bg-dark-blue);
  color: var(--color-text-white);
}

.cta-section h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  color: var(--color-text-white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--font-size-md);
  line-height: 1.7;
}

.cta-section__subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 1.4;
}

/* ============================================
   Section : Le podcast, nouveau média phare (fond blanc)
   ============================================ */

.media-phare-section {
  background: var(--color-bg-white);
  padding: var(--space-section) 0;
  color: var(--color-text-blue);
}

.media-phare-section h2 {
  text-align: center;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-3xl);
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: var(--space-2xl);
  transition: transform var(--transition-slow);
}

.carousel__item {
  flex: 0 0 calc(33.333% - var(--space-xl) * 2 / 3);
  min-width: 0;
}

.carousel__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
}

.carousel__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-text-blue);
  background: transparent;
  color: var(--color-text-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel__btn:hover {
  background: var(--color-text-blue);
  color: var(--color-text-white);
}

/* ============================================
   Section : Contact
   ============================================ */

.contact-section {
  background: var(--color-bg-dark-blue);
  padding: var(--space-4xl) 0;
  color: var(--color-text-white);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.contact-section__text h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text-white);
}

.contact-section__text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-white);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-fast);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-red);
}

.contact-form__textarea { resize: vertical; }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-text-blue);
  color: var(--color-text-white);
}

.btn--primary:hover {
  background: var(--color-red);
  color: var(--color-text-white);
}

.btn--red {
  background: var(--color-red);
  color: var(--color-text-white);
}

.btn--red:hover {
  background: #c62d38;
  color: var(--color-text-white);
}

.btn--white {
  background: var(--color-text-white);
  color: var(--color-text-blue);
}

.btn--white:hover {
  background: var(--color-red);
  color: var(--color-text-white);
}

/* ============================================
   Blog
   ============================================ */

.blog-index { padding: var(--space-section) 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-2xl);
}

.blog-card { display: block; }

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-md);
}

.blog-card__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.blog-card__excerpt {
  color: var(--color-text-gray);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.blog-post {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-3xl) var(--gutter);
}

.blog-post__header { margin-bottom: var(--space-2xl); }

.blog-post__title {
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
  margin-bottom: var(--space-md);
}

.blog-post__meta { color: var(--color-text-light); font-size: var(--font-size-sm); }

.blog-post__cover {
  width: 100%;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-2xl);
}

.blog-post__content h2 { margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.blog-post__content h3 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
.blog-post__content p { color: var(--color-text-gray); line-height: 1.8; }
.blog-post__content a { color: var(--color-red); }
.blog-post__content a:hover { text-decoration: underline; }

.blog-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-red-light);
  color: var(--color-red);
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 500;
}

/* ============================================
   Territory Pages
   ============================================ */

.territory-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--gutter);
}

.territory-page__header { margin-bottom: var(--space-2xl); }

.territory-page__title {
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
  color: var(--color-text-blue);
  margin-bottom: var(--space-md);
}

.territory-page__cover {
  width: 100%;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-2xl);
}

.territory-page__content h2 { margin-top: var(--space-2xl); margin-bottom: var(--space-md); color: var(--color-text-blue); }
.territory-page__content h3 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); color: var(--color-text-blue); }
.territory-page__content p { color: var(--color-text-blue); line-height: 1.8; font-weight: 500; }
.territory-page__content a { color: var(--color-red); font-weight: 700; }
.territory-page__content a:hover { text-decoration: underline; }
.territory-page__content strong { color: var(--color-text-blue); }

/* ============================================
   Podcasts Index Page
   ============================================ */

.podcasts-index {
  padding: var(--space-2xl) 0 var(--space-section);
}

.podcasts-index__title {
  text-align: center;
  font-size: var(--font-size-4xl);
  color: var(--color-text-blue);
  margin-bottom: var(--space-md);
}

.podcasts-index__intro {
  text-align: center;
  color: var(--color-text-gray);
  font-size: var(--font-size-md);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.podcast-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.podcast-filter {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--color-text-blue);
  border-radius: 30px;
  background: transparent;
  color: var(--color-text-blue);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.podcast-filter:hover {
  background: var(--color-bg-light-blue);
}

.podcast-filter--active {
  background: var(--color-text-blue);
  color: var(--color-text-white);
}

.podcast-filter--active:hover {
  background: var(--color-text-blue);
}

.podcast-card__badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--color-red);
  color: var(--color-text-white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 12px;
  margin-bottom: var(--space-xs);
}

/* ============================================
   Podcast Show Pages
   ============================================ */

.show-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--gutter);
}

.show-page__header {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.show-page__cover {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  flex-shrink: 0;
}

.badge-client {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--color-red);
  color: var(--color-text-white);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.show-page__title {
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
  color: var(--color-text-blue);
  margin-bottom: var(--space-sm);
}

.show-page__tagline {
  color: var(--color-text-gray);
  font-size: var(--font-size-md);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.show-page__platforms {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-xs);
}

.show-page__content h2 { margin-top: var(--space-2xl); margin-bottom: var(--space-md); color: var(--color-text-blue); }
.show-page__content h3 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); color: var(--color-text-blue); }
.show-page__content p { color: var(--color-text-blue); line-height: 1.8; font-weight: 500; }
.show-page__content a { color: var(--color-red); font-weight: 700; }
.show-page__content a:hover { text-decoration: underline; }

/* Client Card */
.client-card {
  margin: var(--space-2xl) 0;
  padding: var(--space-2xl);
  background: var(--color-bg-dark-blue);
  border-radius: var(--border-radius-lg);
  color: var(--color-text-white);
}

.client-card__inner {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}

.client-card__logo-wrap {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.client-card__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-card__label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.client-card__name {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-sm);
}

.client-card__description {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .client-card__inner { flex-direction: column; text-align: center; }
}

/* Host Card */
.host-card {
  margin: var(--space-2xl) 0;
  padding: var(--space-2xl);
  background: var(--color-bg-light-blue);
  border-radius: var(--border-radius-lg);
}

.host-card__inner {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.host-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-text-white);
  box-shadow: var(--shadow-md);
}

.host-card__label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-gray);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.host-card__name {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-blue);
  margin-bottom: var(--space-xs);
}

.host-card__nickname {
  font-size: var(--font-size-sm);
  color: var(--color-red);
  font-weight: 600;
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.host-card__funfact {
  font-size: var(--font-size-sm);
  color: var(--color-text-blue);
  font-weight: 500;
  line-height: 1.6;
}

/* Episode rows */
.episodes-list {
  display: flex;
  flex-direction: column;
}

.episode-row {
  display: block;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.episode-row:hover { background: var(--color-bg-light-blue); padding-left: var(--space-md); }

.episode-row__title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-blue);
  margin-bottom: var(--space-xs);
}

.episode-row__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-gray);
}

@media (max-width: 768px) {
  .show-page__header { flex-direction: column; text-align: center; }
  .show-page__platforms { justify-content: center; }
  .host-card__inner { flex-direction: column; text-align: center; }
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-3xl) var(--gutter);
}

.legal-page h2 { margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.legal-page p { color: var(--color-text-gray); line-height: 1.8; }

/* ============================================
   Breadcrumbs
   ============================================ */

.breadcrumbs { padding: var(--space-md) 0; padding-top: 80px; font-size: var(--font-size-xs); color: var(--color-text-light); }
.breadcrumbs a { color: var(--color-text-light); }
.breadcrumbs a:hover { color: var(--color-red); }
.breadcrumbs__separator { margin: 0 var(--space-sm); }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  :root {
    --space-section: 3.5rem;
    --gutter: 1.25rem;
  }

  h1 { font-size: var(--font-size-3xl); }
  h2 { font-size: var(--font-size-2xl); }

  .mission-section__inner { grid-template-columns: 1fr; }

  .mission-section__images {
    order: -1;
    position: relative;
    min-height: 320px;
  }

  .mission-img--main { width: 240px; height: 240px; }

  .mission-img--secondary { width: 150px; height: 150px; }

  .mission-img--icon { width: 70px; height: 70px; padding: 10px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .sponsoring-section__inner { grid-template-columns: 1fr; text-align: center; }

  .sponsoring-section__image-wrap img { width: 250px; height: 250px; }

  .blog-grid { grid-template-columns: 1fr; }

  .contact-section__inner { grid-template-columns: 1fr; text-align: center; }

  .contact-form__row { grid-template-columns: 1fr; }

  .carousel__item { flex: 0 0 calc(50% - var(--space-md)); }
}

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