
:root{
  --bg:#f6f6f6;
  --paper:#ffffff;
  --text:#111;
  --muted:#666;
  --line:#e5e2db;
  --accent:#9a1c1c;
  --ink:#1a1a1a;
}
*{box-sizing:border-box}
html{background:var(--bg);} 

body{font-family: Arial, Helvetica, sans-serif;background:var(--bg)!important;color:var(--text);margin:0;padding:0;}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 24px}
/* Masthead */
header{
  position:sticky;top:0;z-index:10;
  background:rgba(251,251,248,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.mast{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 0;
  gap:18px;
}
.brand{
  display:flex;align-items:center;gap:12px;
}
.brand img{width:34px;height:34px;border-radius:6px}
.brand .title{
  display:flex;flex-direction:column;gap:2px;
}
.brand .title strong{font-size:18px;letter-spacing:.02em}
.brand .title span{font-size:12px;color:var(--muted)}
nav{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
nav a{font-size:14px;color:var(--ink)}
nav a.muted{color:var(--muted)}
.social{display:flex;gap:10px;align-items:center}
.social a{
  width:30px;height:30px;display:grid;place-items:center;
  color:var(--ink);
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--paper);
}
.social a:hover{border-color:#d7d2c7}
.social svg{width:16px;height:16px}
/* Hero / Lead */
.hero{
  padding:54px 0 14px;
}
.kicker{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.12em;
  text-transform:uppercase;
}
h1{
  font-size:56px;
  line-height:1.02;
  margin:14px 0 16px;
  color:var(--ink);
}
.lede{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-size:18px;
  line-height:1.65;
  color: rgba(17,17,17,.82);
  max-width: 980px;
  margin: 18px auto 0 auto;
  text-wrap: balance;
}
.rule{border:none;border-top:1px solid var(--line);margin:34px 0}
/* Layout */
.layout{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:36px;
  padding:20px 0 80px;
}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:16px;
  padding:22px;
}
.card h2{
  font-size:28px;
  margin:0 0 14px;
}
.meta{font-size:13px;color:var(--muted)}
/* Episode list */
.episodes{display:flex;flex-direction:column;gap:18px;margin-top:14px}
.episode{
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}
.episode:last-child{border-bottom:none;padding-bottom:0}
.episode h3{
  font-size:20px;margin:0 0 6px;
  color:var(--ink);
}
.episode p{margin:8px 0 0;color:#333;line-height:1.65;font-size:16px}
.btnrow{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:var(--paper);
  color:var(--ink);
  font-size:14px;
}
.btn.primary{
  border-color:var(--accent);
  color:var(--accent);
}
.btn:hover{border-color:#d7d2c7}
/* Sidebar blocks */
.sideblock{margin-bottom:18px}
.sideblock h3{margin:0 0 10px;font-size:16px;color:var(--ink)}
.host{
  display:flex;gap:14px;align-items:center;
  padding:12px 0;border-bottom:1px solid var(--line);
}
.host:last-child{border-bottom:none}
.host img{width:56px;height:56px;border-radius:50%;object-fit:cover}
.host strong{display:block}
.host span{font-size:13px;color:var(--muted)}
.small{font-size:14px;color:#333;line-height:1.65}
footer{
  border-top:1px solid var(--line);
  padding:0;
  color:var(--muted);
  font-size:14px;
}
@media(max-width:980px){
  .layout{grid-template-columns:1fr}
  h1{font-size:44px}
}


/* Top banner */
.top-banner{
  width:100%;
  height:360px;
  background:#000;
  border-bottom:1px solid var(--line);
}
.top-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


.hero h1{font-family:'Orbitron', Inter, system-ui, sans-serif;}


/* About page: taller banner to avoid face crop */
.page-about .hero img{
  height:520px;
}


/* About page: taller TOP banner to avoid face crop */
.page-about .top-banner{
  height:520px;
}
.page-about .top-banner img{
  height:520px;
  object-position:center 20%;
}


/* About page: extend banner further to reveal faces */
.page-about .top-banner{
  height:650px;
}
.page-about .top-banner img{
  height:650px;
  object-fit:cover;
  object-position:center 10%;
}


/* About page: keep banner framing consistent across screen sizes (no face crop) */
.page-about .top-banner{
  height: clamp(420px, 50vh, 640px);
  background: #000;
}
.page-about .top-banner img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}


/* Empty section placeholders (for anchor targets) */
.section-shell{
  padding: 40px 0;
}


/* Header typography refinement */
header .brand{
  font-family:'Orbitron', system-ui, sans-serif;
  font-weight:600;
  letter-spacing:.03em;
}

header nav a{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

header .brand small,
header .tagline{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight:600;
}


/* Header vertical alignment fix */
header .header-inner{
  align-items: center;
}

header nav{
  display: flex;
  align-items: center;
}

header nav a{
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

header .social{
  display: flex;
  align-items: center;
}

/* Header nav hover: UK/US gradient */
header nav a{
  position: relative;
  transition: color .2s ease;
}

header nav a:hover{
  background: linear-gradient(90deg, #012169, #C8102E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Optional subtle underline */
header nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background: linear-gradient(90deg, #012169, #C8102E);
  transition: width .2s ease;
}
header nav a:hover::after{
  width:100%;
}


.nav-link{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: color .2s ease;
}
.nav-link:hover{
  background: linear-gradient(90deg, #012169, #C8102E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background: linear-gradient(90deg, #012169, #C8102E);
  transition: width .2s ease;
}
.nav-link:hover::after{
  width:100%;
}
/* About section (hosts) */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin: 0 0 22px 0;
}
.section-head h2{
  font-family:'Orbitron', system-ui, sans-serif;
  font-size: 18px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:0;
}
.section-head .muted{
  margin:0;
  opacity:.8;
  max-width: 520px;
  text-align:right;
}


.section-head--center{
  justify-content:center;
  text-align:center;
}
.section-head--center h2{
  font-size: 24px;
}
.section-head--center .muted{
  display:none;
}
.host-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:18px;
}

.host-card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:21px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  overflow:hidden;
}

.host-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 18px 12px 18px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.host-kicker{
  font-family:'Orbitron', system-ui, sans-serif;
  letter-spacing:.14em;
  font-size: 12px;
  text-transform:uppercase;
  opacity:.95;
}

.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  opacity:.95;
}

.host-body{font-family: Arial, Helvetica, sans-serif; font-weight: bold;
  display:flex;
  gap:16px;
  padding:16px 18px 6px 18px;
  align-items:center;
}

.host-avatar{
  width:92px;
  height:92px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  flex:0 0 auto;
}
.host-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.host-copy h3{
  margin:0 0 6px 0;
  font-size:16px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.host-copy p{
  margin:0;
  opacity:.85;
  line-height:1.4;
}

.host-actions{
  display:flex;
  gap:10px;
  padding:14px 18px 18px 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: inherit;
  text-decoration:none;
  font-weight:700;
}

.btn:hover{
  background: rgba(255,255,255,.10);
}

.btn-ghost{
  background: transparent;
}

.btn-accent{
  border-color: rgba(200,16,46,.55);
  background: linear-gradient(90deg, rgba(1,33,105,.55), rgba(200,16,46,.55));
}

@media (max-width: 760px){
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .section-head .muted{
    text-align:left;
    max-width: 720px;
  }
  
.section-head--center{
  justify-content:center;
  text-align:center;
}
.section-head--center h2{
  font-size: 24px;
}
.section-head--center .muted{
  display:none;
}
.host-grid{
    grid-template-columns: 1fr;
  }
}


/* Tighten spacing above Hosts section */
#about .section-head{
  margin-top: 6px;
}


/* Pull About section closer to divider */
#about.section-shell{
  padding-top: 12px;
}
#about .section-head{
  margin-top: 0;
}


/* Host card typography */
.host-copy h3 {
  font-family: 'Orbitron', system-ui, sans-serif;
}

.host-copy p {
  font-family: Arial, Helvetica, sans-serif;
}


/* About card buttons typography */
.host-actions .btn {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}


.host-link{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.host-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  background: linear-gradient(90deg, #012169, #C8102E);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .25s ease;
}

.host-link:hover::after{
  transform: scaleX(1);
}


/* Host card links – identical hover behaviour to header nav */
.host-link{
  font-family: Arial, Helvetica, sans-serif;
  font-weight:700;
  text-decoration:none;
  color:inherit;
  position:relative;
}

.host-link:hover{
  background: linear-gradient(90deg, #012169, #C8102E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.host-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background: linear-gradient(90deg, #012169, #C8102E);
  transition: width .2s ease;
}

.host-link:hover::after{
  width:100%;
}


/* Hero description typography */
.hero-text p{
  font-family: Arial, Helvetica, system-ui, sans-serif;
}


/* Hero lede font to match site */
.hero .lede{
  font-family: Arial, Helvetica, system-ui, sans-serif;
}


/* Tighten hero spacing after removing label */
.hero{
  padding-top: 40px;
}


/* Videos card */
.video-body{font-family: Arial, Helvetica, sans-serif;
  padding: 14px 18px 18px 18px;
}

.episodes-status{
  opacity: .85;
  padding: 8px 0 2px 0;
  font-family: Arial, Helvetica, system-ui, sans-serif;
}

.episodes-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 6px;
}

.episode-item{
  display:block;
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 12px 10px 12px;
  background: rgba(255,255,255,.04);
  text-decoration:none;
  color: inherit;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.episode-item:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}

.episode-title{
  font-weight: 800;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  letter-spacing: .02em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.episode-meta{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  opacity: .8;
  font-size: 12px;
}

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


/* About text under host cards */
.about-text-block{
  margin-top: 28px;
  max-width: 780px;
}

.about-subheading{
  font-family: 'Orbitron', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-paragraph{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  line-height: 1.6;
  opacity: .9;
}


/* Match About subheading size to The Hosts heading */
.about-subheading{
  font-size: 18px;
}


/* Contact card */
.contact-body{font-family: Arial, Helvetica, sans-serif;
  padding: 14px 18px 18px 18px;
}

.contact-form label{
  display:block;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  opacity: .85;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 12px 12px;
  color: inherit;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.contact-form textarea{
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  opacity: .6;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}

.field-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field{
  margin-bottom: 14px;
}

.form-actions{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-top: 4px;
}

.contact-submit{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.contact-submit:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
  transform: translateY(-1px);
}

.contact-status{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  opacity: .85;
  font-size: 13px;
}

@media (max-width: 760px){
  .field-row{
    grid-template-columns: 1fr;
  }
  .form-actions{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Contact form — improve field visibility on light sections */
.contact-form input,
.contact-form textarea{
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.02);
  color: #111;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(0,0,0,.28);
  background: rgba(0,0,0,.03);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

.contact-form label{
  color:#111;
  opacity:.75;
}

.contact-submit{
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(0,0,0,.04);
  color:#111;
}

.contact-submit:hover{
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.26);
}

/* Make card top row cleaner without email */
.contact-card .host-card-top{
  justify-content: flex-start;
  gap: 14px;
}


/* =========================================
   Frosted Patriotic Card — Stronger
   ========================================= */
.host-card{
  background:
    linear-gradient(
      135deg,
      rgba(200,16,46,0.28),
      rgba(255,255,255,0.88),
      rgba(1,33,105,0.28)
    );
  backdrop-filter: saturate(1.12);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 12px 28px rgba(0,0,0,0.10);
}

.host-card:hover{
  background:
    linear-gradient(
      135deg,
      rgba(200,16,46,0.36),
      rgba(255,255,255,0.92),
      rgba(1,33,105,0.36)
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 18px 36px rgba(0,0,0,0.14);
}


  .footer-links{
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* =========================================
   Footer — UK / USA Identity (Refined)
   ========================================= */
.site-footer{
  margin-top: 80px;
  background:
    linear-gradient(
      90deg,
      #012169 0%,
      #ffffff 50%,
      #c8102e 100%
    );
  color: #111;
  border-top: 1px solid rgba(0,0,0,.12);
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer-title{
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
}

.footer-tagline{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  margin-top: 6px;
  font-weight: 700;
}

.footer-links{
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-links a{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  position: relative;
}

.footer-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background: linear-gradient(90deg, #012169, #c8102e);
  transition: width .2s ease;
}

.footer-links a:hover::after{
  width:100%;
}

@media (max-width: 800px){
  .footer-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links{
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* Make footer UK/USA colours clearly visible */
.site-footer{
  background:
    linear-gradient(
      90deg,
      rgba(1,33,105,0.85) 0%,
      rgba(255,255,255,0.95) 50%,
      rgba(200,16,46,0.85) 100%
    );
}

.footer-title,
.footer-tagline,
.footer-links a{
  color:#111;
}


.footer-title,
.footer-tagline,
.footer-links a{
  color:#ffffff !important;
}


/* Footer — refined, restrained UK / USA gradient */
.site-footer{
  background:
    linear-gradient(90deg, #012169, #8a0c20);
}

.footer-title,
.footer-tagline,
.footer-links a{
  color:#ffffff !important;
}


/* Contact split layout (aligned) */
.contact-grid{
  display:grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap:24px;
  align-items:start; /* top align both columns */
}

.contact-grid > *{
  margin-top:0;
}

.contact-side{
  display:flex;
  flex-direction:column;
  gap:24px;
  align-self:start;
  margin-top:0;
  padding-top:0;
}

.contact-side .host-card{
  margin:0;
}

.small-card .small-card-body{font-family: Arial, Helvetica, sans-serif;
  padding: 18px 20px 20px 20px;
}

.small-card p{
  margin: 0 0 12px 0;
  font-family: Arial, Helvetica, system-ui, sans-serif;
}

.side-link{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight:700;
  text-decoration:none;
  color:#111;
  position:relative;
  display:inline-block;
}

.side-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#012169,#c8102e);
  transition:width .2s ease;
}

.side-link:hover::after{
  width:100%;
}

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


/* Contact split layout */
.contact-grid{
  display:grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap:24px;
  align-items:start;
}

.contact-side{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.contact-card .contact-body{font-family: Arial, Helvetica, sans-serif; padding: 18px 20px 22px 20px; }

.contact-form .form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}

.contact-form label span{
  display:block;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight:700;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
  color: rgba(17,17,17,.75);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.18);
  border-radius:14px;
  padding:12px 14px;
  background: rgba(255,255,255,.55);
  outline:none;
  font-family: Arial, Helvetica, system-ui, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(1,33,105,.55);
  box-shadow: 0 0 0 3px rgba(1,33,105,.12);
}

.contact-form .form-full{ display:block; }

.form-actions{ margin-top:14px; }

.btn-primary{
  border:1px solid rgba(0,0,0,.2);
  border-radius:999px;
  padding:10px 16px;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight:700;
  background: rgba(255,255,255,.65);
  cursor:pointer;
}

.btn-primary:hover{
  background: rgba(255,255,255,.85);
}

.small-card .small-card-body{font-family: Arial, Helvetica, sans-serif; padding:18px 20px 20px 20px; }

.small-card p{
  margin:0 0 12px 0;
  font-family: Arial, Helvetica, system-ui, sans-serif;
}

.side-link{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight:700;
  text-decoration:none;
  color:#111;
  position:relative;
  display:inline-block;
}

.side-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#012169,#c8102e);
  transition:width .2s ease;
}
.side-link:hover::after{ width:100%; }

@media (max-width: 900px){
  .contact-form .form-row{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .contact-grid{ grid-template-columns: 1fr; }
}


/* Center hero text */
.hero,
.hero-content,
.hero-inner{
  text-align: center;
  align-items: center;
  justify-content: center;
}

.hero-content p{
  margin-left:auto;
  margin-right:auto;
}

/* Hero polish after centering */
.hero h1{
  margin-bottom: 8px;
}


/* Contact single column (full width) */
.contact-grid--single{
  grid-template-columns: 1fr !important;
}


/* Host avatar gradient border (UK/US) */
.host-avatar{
  /* Larger host images (requested) */
  width:150px;
  height:150px;
  border-radius:26px;
  padding:5px;
  background: linear-gradient(135deg, #012169, #c8102e);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  flex: 0 0 auto;
}
.host-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius:21px;
  display:block;
  background: rgba(255,255,255,.6);
}

/* Pills for host actions (hover swaps gradient direction) */
.pill-links{
  display:flex;
  gap:14px;
  padding-top:8px;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight:700;
  letter-spacing:.02em;
  color:#fff;
  border:1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.pill--br{
  background: #012169; /* UK/US blue */
}
.pill--rb{
  background: #C8102E; /* UK/US red */
}
.pill:hover{
  transform: translateY(-1px);
  filter: saturate(1.08);
}
.pill--br:hover{
  background: #C8102E;
}
.pill--rb:hover{
  background: #012169;
}


/* Prevent underline on host card pills */
.host-card a:hover,
.host-card button:hover {
  text-decoration: none;
}


/* Subtle lift on hover for host card pills */
.host-card a,
.host-card button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.host-card a:hover,
.host-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}


/* --- Card background: remove gradients site-wide --- */
.host-card,
.video-card,
.card,
.glass-panel,
.contact-card,
.pricing-card,
.feature-card,
.faq-card {
  background: rgba(255,255,255,0.92) !important;
  background-image: none !important;
}

/* Disable gradient overlay pseudo-elements on cards */
.host-card::before,
.video-card::before,
.card::before,
.glass-panel::before {
  background: none !important;
  content: none !important;
}

/* Episodes card: full width */
#videos .episodes-card {
  width: 100% !important;
  max-width: 100% !important;
}

#videos .video-body,
#videos #episodes-list {
  width: 100%;
}


/* --- Force center alignment for The Hosts heading --- */
#about .section-head{
  justify-content: center !important;
  text-align: center !important;
}
#about .section-head h2{
  margin-left: auto !important;
  margin-right: auto !important;
}


/* --- Hosts heading: centered + blue->red gradient + larger size --- */
#about .section-head h2{
  display: inline-block;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 32px;
  background: linear-gradient(90deg, #0033a0, #c62828);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* --- Official Podcast heading: hard-center + blue->red gradient + larger size --- */
.about-text-block .about-subheading{
  display:block;
  width:100%;
  text-align:center !important;
  font-size:2.2rem;
  line-height:1.1;
  margin: 0 0 24px 0;
  background: linear-gradient(90deg, #0033a0, #c62828);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}


/* --- TRUE centering for Official Podcast block --- */
.about-text-block{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.about-text-block p{
  text-align:left; /* keep paragraph readable */
  max-width: 760px;
}


/* --- Absolute centering override for Official Podcast heading --- */
.about-text-block{
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-text-block .about-subheading{
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* --- Headings: remove gradient, use solid black --- */
.about-text-block .about-subheading,
#about .section-head h2{
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #000000 !important;
}


/* --- Host card pills: white with black border, gradient on hover --- */
.host-card a,
.host-card button{
  background: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.host-card a:hover,
.host-card button:hover{
  background: linear-gradient(90deg, #0033a0, #c62828) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}


/* --- Match Official Podcast heading to The Hosts styling & size --- */
.about-text-block .about-subheading{
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}


/* =========================================
   EPISODES GRID FIX (3x3 Layout)
   ========================================= */

/* 3-column grid for episodes */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
  margin-top: 24px;
}

/* Card style for episode items */
.episode-item {
  display: flex;
  flex-direction: column; /* Stack image on top of text */
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%; /* Equal height cards */
  padding: 0 !important; /* Reset padding from previous styles */
}

.episode-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  background: #fff;
  border-color: rgba(0,0,0,0.2);
}

/* Large thumbnail container */
.episode-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  position: relative;
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.episode-item:hover .episode-thumb img {
  transform: scale(1.05);
}

/* Content padding */
.episode-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
}

.episode-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #111;
  /* Limit to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-meta {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #666;
  margin-top: auto; /* Push to bottom */
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .episodes-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================
   EPISODES GRID FIX (v93)
   ========================================= */

/* Ensure the container is visible */
#episodes-list {
  display: block;
  width: 100%;
}

/* 3-column grid */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
  margin-top: 20px;
}

/* Card Item */
.episode-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s;
}

.episode-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Thumbnail Container - 16:9 Aspect Ratio */
.episode-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Image - Force Rectangle, No Circle */
.episode-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important; /* Override any global circle styles */
  display: block;
}

/* Content */
.episode-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.episode-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-meta {
  font-size: 12px;
  color: #666;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .episodes-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================
   Added for Rumble Feed Thumbnails
   ========================================= */
.episode-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #000;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.episode-item:hover .episode-thumb img {
  transform: scale(1.05);
}


/* =========================================
   FORCE RECTANGULAR THUMBNAILS (v6 Fix)
   ========================================= */
#episodes-list .episode-thumb {
  border-radius: 4px !important; /* Slight rounded corners, but NOT circular */
  width: 100% !important;
  aspect-ratio: 16/9 !important;
  overflow: hidden !important;
  background: #000 !important;
  margin-bottom: 10px !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
}

#episodes-list .episode-thumb img {
  border-radius: 0 !important; /* Ensure image itself is not round */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Ensure the card itself isn't forcing anything */
#episodes-list .episode-item {
  border-radius: 8px !important;
  overflow: hidden !important;
}


/* =========================================
   FORCE RECTANGULAR THUMBNAILS (v6 Fix)
   ========================================= */
#episodes-list .episode-thumb {
  border-radius: 4px !important; /* Slight rounded corners, but NOT circular */
  width: 100% !important;
  aspect-ratio: 16/9 !important;
  overflow: hidden !important;
  background: #000 !important;
  margin-bottom: 10px !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
}

#episodes-list .episode-thumb img {
  border-radius: 0 !important; /* Ensure image itself is not round */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Ensure the card itself isn't forcing anything */
#episodes-list .episode-item {
  border-radius: 8px !important;
  overflow: hidden !important;
}


/* =========================================
   v7 Updates: Content Padding & Layout
   ========================================= */
.episode-content {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
}

.episode-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  color: #111;
}

.episode-meta {
  margin-top: auto;
  font-size: 12px;
  color: #666;
}

/* Ensure the item is a flex column to push footer down */
.episode-item {
  display: flex !important;
  flex-direction: column !important;
}


/* --- Episodes heading: centered and matched to The Hosts --- */
#videos .section-head{
  justify-content: center !important;
  text-align: center !important;
}

#videos .section-head h2{
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}


/* --- Episodes card: 'View channel' inline link (header-nav behaviour) --- */
#videos .host-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

#videos .host-card-top .episodes-view-link{
  font-size: 0.95rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  position: relative;
  white-space: nowrap;
}

#videos .host-card-top .episodes-view-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:1px;
  background: currentColor;
  transition: width 0.2s ease;
}

#videos .host-card-top .episodes-view-link:hover::after{
  width:100%;
}


/* --- Episodes 'View channel' link: match header nav link exactly --- */
#videos .host-card-top .episodes-view-link{
  font-family: inherit; /* same as header */
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color, #111);
  text-decoration: none;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  line-height: 1;
}

/* Hover behaviour identical to header nav */
#videos .host-card-top .episodes-view-link:hover{
  color: var(--text-color, #111); /* do NOT turn white */
}

#videos .host-card-top .episodes-view-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:1px;
  background: currentColor;
  transition: width 0.2s ease;
}

#videos .host-card-top .episodes-view-link:hover::after{
  width:100%;
}


/* --- Episodes card: make 'View channel' match header nav link styling + hover --- */
#videos .host-card-top .episodes-view-link{
  /* base = header nav */
  font-family: Arial, Helvetica, system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;

  font-size: 14px !important;
  color: var(--ink) !important;

  /* neutralize pill/button styles */
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  text-decoration: none !important;

  position: relative;
}

#videos .host-card-top .episodes-view-link:hover{
  /* match header nav hover = gradient TEXT, not pill fill */
  background: linear-gradient(90deg, #012169, #C8102E) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;

  /* ensure no pill hover effects leak in */
  box-shadow: none !important;
  transform: none !important;
}

/* keep the header-style underline animation */
#videos .host-card-top .episodes-view-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:1px;
  background: currentColor;
  transition: width 0.2s ease;
}

#videos .host-card-top .episodes-view-link:hover::after{
  width:100%;
}


/* --- Episodes 'View channel' link: stop flicker and match header nav exactly --- */
/* 1) Prevent host-card pill styles from applying to this link */
.host-card a.episodes-view-link,
.host-card a.episodes-view-link:hover{
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* 2) Remove our custom underline pseudo-element (can cause hover thrash) */
#videos .host-card-top .episodes-view-link::after{
  content: none !important;
}

/* 3) Apply the SAME CSS rules as header nav links */

#videos .host-card-top .episodes-view-link{
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

#videos .host-card-top .episodes-view-link:hover{
  background: linear-gradient(90deg, #012169, #C8102E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* --- Episodes card: View channel link EXACTLY like header nav (no pill hover leakage) --- */
#videos .host-card-top .episodes-view-link{
  /* neutralize pill styles */
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  text-decoration: none !important;

  /* header nav base */
  font-family: Arial, Helvetica, system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;

  position: relative !important;
  display: inline-block !important;
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important; /* prevent stuck transparent text */
}

#videos .host-card-top .episodes-view-link:hover{
  /* header nav hover */
  background: linear-gradient(90deg, #012169, #C8102E) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;

  /* keep stable */
  box-shadow: none !important;
  transform: none !important;
}

#videos .host-card-top .episodes-view-link::after{
  content:'' !important;
  position:absolute !important;
  left:0 !important;
  bottom:-4px !important;
  width:0 !important;
  height:2px !important;
  background: linear-gradient(90deg, #012169, #C8102E) !important;
  transition: width .2s ease !important;
}

#videos .host-card-top .episodes-view-link:hover::after{
  width:100% !important;
}


/* --- Host card actions: make 'Read Bio' and 'Contact' behave like header nav links --- */
.host-card .host-action-link{
  /* neutralize any pill styles */
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  text-decoration: none !important;

  /* header nav base */
  font-family: Arial, Helvetica, system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;

  position: relative !important;
  display: inline-block !important;
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;

  /* spacing between the two links */
  margin-right: 18px;
}

.host-card .host-action-link:last-child{
  margin-right: 0;
}

.host-card .host-action-link:hover{
  background: linear-gradient(90deg, #012169, #C8102E) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;

  box-shadow: none !important;
  transform: none !important;
}

.host-card .host-action-link::after{
  content:'' !important;
  position:absolute !important;
  left:0 !important;
  bottom:-4px !important;
  width:0 !important;
  height:2px !important;
  background: linear-gradient(90deg, #012169, #C8102E) !important;
  transition: width .2s ease !important;
}

.host-card .host-action-link:hover::after{
  width:100% !important;
}


/* --- Host card action links: slightly smaller text --- */
.host-card .host-action-link{
  font-size: 0.8rem !important;
  letter-spacing: 0.035em !important;
}


/* --- The Great Awakening section --- */
#awakening .section-head{
  justify-content: center !important;
  text-align: center !important;
}

#awakening .section-head h2{
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

#awakening .awakening-card{
  width: 100%;
  max-width: 100%;
}

#awakening .awakening-carousel{
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
}

#awakening .awakening-nav{
  height: 44px;
  width: 44px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  line-height: 1;
  font-size: 28px;
}

#awakening .awakening-nav:disabled{
  opacity: 0.35;
  cursor: default;
}

#awakening .awakening-viewport{
  overflow: hidden;
  width: 100%;
}

#awakening .awakening-track{
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

#awakening .awakening-item{
  flex: 0 0 calc((100% - 16px) / 2);
}

#awakening .awakening-video{
  width: 100%;
  height:auto;
  border-radius: 16px;
  background: #000;
}

@media (max-width: 820px){
  #awakening .awakening-carousel{
    grid-template-columns: 40px 1fr 40px;
  }
  #awakening .awakening-item{
    flex: 0 0 100%;
  }
  #awakening .awakening-video{
    height:auto;
  }
}
  #awakening-documentaries .awakening-carousel{
    grid-template-columns: 40px 1fr 40px;
  }
  
  #awakening-documentaries .awakening-video{
    height:auto;
  }


/* --- The Great Awakening: no card, full-width carousel, 16:9 videos --- */
#awakening .awakening-wrap{
  width: 100%;
}

#awakening .awakening-carousel{
  max-width: 1100px;
  margin: 0 auto;
}

/* 16:9 sizing */
#awakening .awakening-video{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 16px;
  background: #000;
  display: block;
}

/* Remove any inherited card padding if present */
#awakening .video-card,
#awakening .awakening-card{
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}


/* --- Awakening carousel: prevent half-cut items --- */
#awakening .awakening-viewport{
  scroll-snap-type: x mandatory;
}
#awakening .awakening-item{
  scroll-snap-align: start;
}


/* --- Contact heading: match other section headings --- */
#contact .section-head{
  justify-content: center !important;
  text-align: center !important;
}

#contact .section-head h2,
#contact .contact-heading{
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}


/* --- Donate section --- */
#donate .section-head{
  justify-content: center !important;
  text-align: center !important;
}

#donate .section-head h2{
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

#donate .donate-card{
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 32px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  text-align: center;
}

#donate .donate-inner{
  font-size: 0.95rem;
  color: rgba(0,0,0,0.7);
}


/* --- Contact form: Send Message styled like header nav --- */
#contact .send-message-link{
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  font-family: Arial, Helvetica, system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  font-size: 0.9rem;

  color: inherit;
  cursor: pointer;
  position: relative;
}

#contact .send-message-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background: linear-gradient(90deg, #012169, #C8102E);
  transition: width .2s ease;
}

#contact .send-message-link:hover{
  background: linear-gradient(90deg, #012169, #C8102E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#contact .send-message-link:hover::after{
  width:100%;
}


/* --- Fix Send Message hover turning white --- */
#contact .send-message-link{
  -webkit-text-fill-color: currentColor !important;
}

#contact .send-message-link:hover{
  background: linear-gradient(90deg, #012169, #C8102E) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

#contact .send-message-link:focus,
#contact .send-message-link:active{
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  color: inherit !important;
}


/* --- Footer (exact from donor build) --- */
/* =========================================
   2. Layout & Utilities
   ========================================= */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   7. Footer
   ========================================= */
.site-footer {
  margin-top: 60px;
  background: linear-gradient(90deg, #012169, #8a0c20);
  color: #fff;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-title {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 12px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

@media(max-width: 600px) {
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }

/* Ensure footer is full-width without causing horizontal scroll */
footer, .site-footer{width:100%;}

.site-footer{overflow-x:hidden;}


/* v121 marker */
body::before{content:'';display:none;}


/* Episodes: 3-column grid on desktop */
@media (min-width: 980px){
  .episodes-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* Featured episode card (uses same visual language as episode-item) */
.episode-featured{
  display:flex;
  gap: 14px;
  align-items: stretch;
  border:1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  text-decoration:none;
  color: inherit;
  margin-bottom: 14px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.episode-featured:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.episode-featured .episode-thumb{
  width: 44%;
  max-width: 360px;
  border-radius: 14px;
  overflow:hidden;
  flex: 0 0 auto;
}
.episode-featured .episode-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.episode-featured .episode-content{
  flex: 1 1 auto;
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.episode-featured .episode-kicker{
  font-family: 'Orbitron', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  opacity: .85;
  margin-bottom: 10px;
}
@media (max-width: 820px){
  .episode-featured{ flex-direction: column; }
  .episode-featured .episode-thumb{ width: 100%; max-width: none; }
}


/* v134: remove odd focus outline lines on episode cards (mobile tap) */
.episode-item:focus,
.episode-item:focus-visible,
.episode-featured:focus,
.episode-featured:focus-visible{
  outline: none !important;
}


/* v135: remove mobile tap highlight on episode cards (prevents odd black tap lines) */
.episode-item,
.episode-featured{
  -webkit-tap-highlight-color: transparent;
}

/* v135: "Previous episodes" subheader */
.episodes-subhead{
  margin: 10px 0 12px;
  font-family: 'Orbitron', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  opacity: .85;
}


/* ===== v136: remove mobile tap highlight + pseudo-line artifacts ===== */
a,
a:focus,
a:active {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.episode-item,
.episode-featured {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  user-select: none;
}

.episode-item::before,
.episode-item::after,
.episode-featured::before,
.episode-featured::after {
  content: none !important;
  display: none !important;
}

/* Ensure headers match exactly */
.episodes-section-title {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}


/* ===== v137: iOS/Android tap highlight + callout suppression for episode cards ===== */
.episode-featured,
.episode-item,
.episode-featured *,
.episode-item *{
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}

.episode-featured img,
.episode-item img{
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}

/* Keep your existing subhead class from affecting typography if present anywhere */
.episodes-subhead{ all: unset; }


/* ===== v138: cards are div role=link; ensure pointer + remove tap artifacts ===== */
.episode-featured,
.episode-item{
  cursor: pointer;
  caret-color: transparent;
}

.episode-featured,
.episode-item,
.episode-featured *,
.episode-item *{
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
}


/* ===== v142: restore original red/blue hover feel on episode cards (no pseudo-elements required) ===== */
.episode-item,
.episode-featured{
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.episode-item:hover,
.episode-featured:hover{
  background:
    linear-gradient(
      135deg,
      rgba(200,16,46,0.28),
      rgba(255,255,255,0.08),
      rgba(1,33,105,0.28)
    ) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 12px 28px rgba(0,0,0,0.12);
}

.episode-item:active,
.episode-featured:active{
  transform: translateY(-1px);
}


/* ===== v143: guaranteed desktop hover (lift + gradient glow) + thumbnail zoom ===== */
.episode-item,
.episode-featured{
  will-change: transform;
}

.episode-item .episode-thumb img,
.episode-featured .episode-thumb img{
  transition: transform .18s ease, filter .18s ease;
}

.episode-item:hover,
.episode-featured:hover{
  transform: translateY(-2px) !important;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.45) !important;
}

.episode-item:hover .episode-thumb img,
.episode-featured:hover .episode-thumb img{
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.03);
}

/* Recreate the red/blue border-glow feel without pseudo elements */
.episode-item:hover,
.episode-featured:hover{
  border-color: rgba(255,255,255,0.0) !important;
  background:
    linear-gradient(
      135deg,
      rgba(200,16,46,0.26),
      rgba(255,255,255,0.08),
      rgba(1,33,105,0.26)
    ) !important;
}


.videos-subheading {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: center;
  margin: 2rem 0 1rem;
  opacity: 0.9;
}

.site-footer {
    min-height: 250px !important; /* Increased height */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important; /* Ensure padding is gone as requested previously */
}
.footer-inner {
    width: 100%;
    padding: 0 20px !important; /* Add side padding for safety on mobile */
}
.footer-title {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 24px !important;
}
.footer-tagline, .footer-links a {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}


/* Final Footer Fix v24 */
.site-footer {
    min-height: 400px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    background: linear-gradient(90deg, #012169, #8a0c20) !important;
}
.footer-title, .footer-tagline, .footer-links a {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}


/* --- Documentaries section mirrors #awakening styles --- */
#awakening-documentaries .section-head{
  justify-content: center !important;
  text-align: center !important;
}


#awakening-documentaries .section-head h2{
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}


#awakening-documentaries .awakening-card{
  width: 100%;
  max-width: 100%;
}


#awakening-documentaries .awakening-carousel{
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
}


#awakening-documentaries .awakening-nav{
  height: 44px;
  width: 44px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  line-height: 1;
  font-size: 28px;
}


#awakening-documentaries .awakening-nav:disabled{
  opacity: 0.35;
  cursor: default;
}


#awakening-documentaries .awakening-viewport{
  overflow: hidden;
  width: 100%;
}


#awakening-documentaries .awakening-track{
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}


#awakening-documentaries .awakening-item{
  flex: 0 0 calc((100% - 16px) / 2);
}


#awakening-documentaries .awakening-video{
  width: 100%;
  height:auto;
  border-radius: 16px;
  background: #000;
}


  #awakening-documentaries .awakening-carousel{
    grid-template-columns: 40px 1fr 40px;
  }
  
  #awakening-documentaries .awakening-video{
    height:auto;
  }

#awakening-documentaries .awakening-wrap{
  width: 100%;
}


#awakening-documentaries .awakening-carousel{
  max-width: 1100px;
  margin: 0 auto;
}


#awakening-documentaries .awakening-video{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 16px;
  background: #000;
  display: block;
}


#awakening-documentaries .video-card,
#awakening-documentaries .awakening-card{
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}


#awakening-documentaries .awakening-viewport{
  scroll-snap-type: x mandatory;
}

#awakening-documentaries .awakening-item{
  scroll-snap-align: start;
}


#awakening-documentaries .videos-subheading{ text-align:center !important; }


/* --- FORCE: Documentaries carousel must mirror Awakening carousel (high specificity) --- */
#awakening-documentaries .videos-subheading{
  width:100% !important;
  text-align:center !important;
}
#awakening-documentaries .awakening-carousel{
  display:grid !important;
  grid-template-columns:48px 1fr 48px !important;
  align-items:center !important;
  gap:12px !important;
}

#awakening-documentaries .awakening-viewport{
  overflow:hidden !important;
  width:100% !important;
}
#awakening-documentaries .awakening-track{
  display:flex !important;
  flex-wrap:nowrap !important;
  gap:16px !important;
  transition:transform 0.35s ease !important;
  will-change:transform !important;
}
#awakening-documentaries .awakening-item{
  flex:0 0 calc((100% - 16px)/2) !important;
}
@media (max-width: 820px){
  #awakening-documentaries .awakening-carousel{
    grid-template-columns:40px 1fr 40px !important;
  }
  #awakening-documentaries .awakening-item{
    flex:0 0 100% !important;
  }
}


/* --- FORCE HEADER FIXES --- */
.container.mast {
  max-width: 1350px !important; /* Extended width as requested */
  width: 95% !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  flex-wrap: nowrap !important;
}

header nav {
  display: flex !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  gap: 18px !important; /* Restore original gap */
}

header nav a {
  white-space: nowrap !important;
  font-size: 14px !important; /* Restore original size */
}

/* --- FORCE PARTNERS SECTION STYLES --- */
#partners .section-head {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

#partners .section-head h2,


/* --- CONSISTENT SPACING FIX --- */
.section-shell {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.rule {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important; /* Ensure visible but subtle */
  opacity: 0.5 !important;
}

/* If sections are adjacent without a rule, the padding handles it (120px gap).
   If there is a rule, we might want less padding around it? 
   Usually HR is inside a container or between sections.
   Let's assume HR is between sections. 
   If we zero the margin on HR, the gap is just the section paddings (60+60=120px).
   That seems good and consistent.
*/

/* Ensure footer has consistent spacing too */
.site-footer {
  margin-top: 0 !important; /* Let the preceding section padding handle it */
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* --- SPACING REFINEMENTS --- */
/* Ensure no extra margin at the bottom of sections */
.section-shell .container > *:last-child {
  margin-bottom: 0 !important;
}

/* Ensure no extra margin at the top of sections */
.section-shell .container > *:first-child {
  margin-top: 0 !important;
}

/* Specific fix for section-head if it's first */
.section-head {
  margin-top: 0 !important;
}

/* Ensure HR is just a line with no space of its own */
.rule {
  height: 1px !important;
  border: none !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}


/* --- HOSTS HEADING FIX --- */


/* --- HOSTS HEADING FIX (Match Episodes Size) --- */
#hosts .section-head h2 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 2.6rem !important; /* Matches Episodes/Videos section */
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 32px !important;
  display: inline-block !important;
  line-height: 1.1 !important;
}

/* --- HOSTS HEADING FIX (Class-based) --- */
.hosts-heading,
.hosts-heading span {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 2.6rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  line-height: 1.1 !important;
  color: #000 !important; /* Ensure black color like others */
}

.hosts-heading {
  margin-bottom: 32px !important;
  display: block !important; /* Ensure it takes width */
  text-align: center !important;
}

/* --- HOSTS SPACING (Final - uses 40px HTML spacer) --- */
/* Reduced from 48px to 40px to match Official Podcast spacing closer. */
.hosts-heading {
  margin-bottom: 0 !important;
}
#hosts .section-head {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.host-grid {
  margin-top: 0 !important;
}

/* --- FEATURED EPISODE HOVER FIX V2 --- */
/* Ensure container allows interaction */
#episode-featured {
  display: block !important;
  position: relative !important;
  z-index: 5 !important;
}

/* Force the card to be interactive and on top */
#episode-featured .episode-featured {
  position: relative !important;
  z-index: 10 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transition: all 0.2s ease !important;
  /* Ensure it has a background to start with so transition is visible */
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
}

/* The Hover Effect - Forcefully applied */
#episode-featured .episode-featured:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.45) !important;
  background: linear-gradient(135deg, rgba(200,16,46,0.26), rgba(255,255,255,0.08), rgba(1,33,105,0.26)) !important;
  border-color: transparent !important;
}

/* Image Zoom on Hover */
#episode-featured .episode-featured:hover .episode-thumb img {
  transform: scale(1.04) !important;
  filter: saturate(1.05) contrast(1.03) !important;
  transition: transform 0.2s ease, filter 0.2s ease !important;
}


/* =========================================
   CUSTOM OVERRIDES (v77 CLEAN)
   ========================================= */

/* --- PARTNERS SECTION --- */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.partner-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 260px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.1);
}

.partner-logo-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
}

.partner-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.partner-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-info p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* --- DONATE SECTION LAYOUT --- */
#donate .donate-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    max-width: 800px !important;
    margin: 40px auto !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    #donate .donate-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
    }
}

/* --- DONATE CARD STYLING --- */
#donate .donate-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.05) !important; /* Match Partner Base Border */
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important; /* Match Partner Base Shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important; /* Match Partner Transition */
}

/* DONATE CARD HOVER - EXACT MATCH TO PARTNERS */
#donate .donate-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
    border-color: rgba(0,0,0,0.1) !important;
}

#donate .card-icon {
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

#donate .card-icon img {
    max-height: 100% !important;
    max-width: 180px !important;
    object-fit: contain !important;
}

#donate .donate-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #111;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

#donate .donate-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
    text-align: center;
}

/* --- DONATE LINKS (HEADER STYLE REPLICA) --- */
/* Using a very specific selector to override anything else */
#donate .donate-card a.donate-link {
    font-family: Arial, Helvetica, system-ui, sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin-top: 15px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;

    color: #111 !important;
    text-decoration: none !important;
    position: relative !important;
    transition: color .2s ease !important;
    cursor: pointer !important;
}

/* Hover State - Text Gradient */
#donate .donate-card a.donate-link:hover {
    background: linear-gradient(90deg, #012169, #C8102E) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Underline Element */
#donate .donate-card a.donate-link::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -4px !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #012169, #C8102E) !important;
    transition: width .2s ease !important;
}

/* Hover State - Underline Expansion */
#donate .donate-card a.donate-link:hover::after {
    width: 100% !important;
}


/* Contact Form Status Message */
.form-status {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    min-height: 24px;
    transition: all 0.3s ease;
}
.form-status.success {
    color: #28a745; /* Green */
}
.form-status.error {
    color: #dc3545; /* Red */
}


/* Contact Form Status Message */
.form-status {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    min-height: 24px;
    transition: all 0.3s ease;
}
.form-status.success {
    color: #28a745; /* Green */
}
.form-status.error {
    color: #dc3545; /* Red */
}

/* Partner Card 'More Info' Links - Match Header Nav Style */


/* Partner Read More Hover Effect - Match Header */


/* Partner Read More Button - Cleaned & Consolidated */
.partner-read-more {
  font-family: Arial, Helvetica, system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  cursor: pointer !important;
  margin-top: 10px !important;

  /* Base state */
  color: #111 !important;
  text-decoration: none !important;
  background: none !important;

  position: relative !important;
  display: inline-block !important;
  transition: all .2s ease !important;
}

.partner-read-more:hover {
  background: linear-gradient(90deg, #012169, #C8102E) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.partner-read-more::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #012169, #C8102E) !important;
  transition: width .2s ease !important;
}

.partner-read-more:hover::after {
  width: 100% !important;
}


/* Fix for anchor scrolling with sticky header */
#elisa, #stu {
  scroll-margin-top: 180px;
}


/* ============================================
   PHASE 2: MOBILE OPTIMIZATION
   Added: January 27, 2026
   Breakpoints: 768px (tablet), 480px (mobile)
   ============================================ */

/* ---------- Burger Menu Styles ---------- */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu span:nth-child(1) { margin-bottom: 6px; }
.burger-menu span:nth-child(3) { margin-top: 6px; }

/* Burger menu animation when open */
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Only show overlay on tablet/mobile when active */
@media (max-width: 768px) {
  .mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--paper);
  z-index: 1000;
  transition: right 0.3s ease, visibility 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  visibility: hidden;
  transform: translateX(100%);
}

.mobile-nav-drawer.active {
  right: 0;
  visibility: visible;
  transform: translateX(0);
}

/* Hide burger menu, drawer and overlay completely on desktop */
@media (min-width: 769px) {
  .burger-menu {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
  .burger-menu span {
    display: none !important;
  }
  .mobile-nav-drawer,
  .mobile-nav-overlay {
    display: none !important;
    visibility: hidden !important;
  }
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-header span {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  color: var(--ink);
  transition: background 0.2s ease;
}

.mobile-nav-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-nav-links {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-nav-links a:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Prevent body scroll when drawer is open */
body.nav-open {
  overflow: hidden;
}

/* ---------- Tablet Breakpoint (768px) ---------- */
@media (max-width: 768px) {
  /* Show burger menu, hide regular nav */
  .burger-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px !important;
    height: 44px !important;
    order: 2;
    flex-shrink: 0;
    pointer-events: auto !important;
  }
  
  .burger-menu span {
    display: block !important;
  }
  
  header nav {
    display: none !important;
  }
  
  /* Reposition header mast for mobile - two rows */
  header .mast {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 10px;
  }
  
  /* Brand stays horizontal, takes available space */
  header .brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Keep brand title horizontal */
  header .brand .title {
    display: flex;
    flex-direction: column;
    gap: 0;
    white-space: nowrap;
  }
  
  header .brand .title strong {
    font-size: 16px;
  }
  
  header .brand .title span {
    font-size: 11px;
  }
  
  /* Social buttons: move to second line, centered, full width */
  header .social {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 8px;
  }
  
  /* Hero image responsive scaling - index page */
  .top-banner {
    height: clamp(180px, 40vw, 400px);
  }
  
  .top-banner img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  /* About page top banner adjustment */
  .page-about .top-banner {
    height: clamp(300px, 45vw, 640px);
  }
  
  .page-about .top-banner img {
    object-fit: contain;
  }
  
  /* ===== TABLET SECTION HEADINGS - CENTER ALL ===== */
  
  /* Force all section-head containers to center their content */
  .section-head,
  .section-head--center,
  #hosts .section-head,
  #videos .section-head,
  #awakening .section-head,
  #donate .section-head,
  #contact .section-head,
  #partners .section-head,
  #awakening-documentaries .section-head {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }
  
  /* All heading elements - force centering */
  .section-head h2,
  .section-head h3,
  .section-head--center h2,
  .section-head--center h3,
  h2.hosts-heading,
  h3.videos-subheading,
  h2.contact-heading,
  #hosts .section-head h2,
  #hosts h2.hosts-heading,
  #videos .section-head h2,
  #awakening .section-head h3,
  #awakening h3.videos-subheading,
  #donate .section-head h2,
  #contact .section-head h2,
  #contact h2.contact-heading,
  #partners .section-head h2,
  #awakening-documentaries .section-head h2 {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* All span elements inside headings - center them */
  .section-head h2 span,
  .section-head h3 span,
  .section-head--center h2 span,
  h2.hosts-heading span,
  h3.videos-subheading span,
  h2.contact-heading span,
  #hosts .section-head h2 span,
  #hosts h2.hosts-heading span,
  #videos .section-head h2 span,
  #awakening .section-head h3 span,
  #awakening h3.videos-subheading span,
  #donate .section-head h2 span,
  #contact .section-head h2 span,
  #contact h2.contact-heading span,
  #partners .section-head h2 span,
  #awakening-documentaries .section-head h2 span {
    display: inline !important;
    text-align: center !important;
  }
}

/* ---------- Mobile Breakpoint (480px) ---------- */
@media (max-width: 480px) {
  /* Further reduce header padding */
  header .mast {
    padding: 8px 0;
    gap: 8px;
  }
  
  /* Smaller brand logo and text */
  header .brand img {
    width: 28px;
    height: 28px;
  }
  
  header .brand .title strong {
    font-size: 14px;
  }
  
  header .brand .title span {
    font-size: 10px;
  }
  
  /* Smaller social buttons on mobile */
  header .social a {
    width: 26px;
    height: 26px;
  }
  
  header .social svg {
    width: 14px;
    height: 14px;
  }
  
  /* Hero image for mobile - taller to show more content */
  .top-banner {
    height: clamp(160px, 45vw, 250px);
  }
  
  .top-banner img {
    object-position: center top;
  }
  
  /* About page mobile hero */
  .page-about .top-banner {
    height: clamp(250px, 50vw, 400px);
  }
  
  /* Hero text adjustments */
  h1 {
    font-size: clamp(28px, 8vw, 56px);
  }
  
  .hero {
    padding: 32px 0 10px;
  }
  
  .lede {
    font-size: 16px;
    padding: 0 10px;
  }
  
  /* Video Coverflow: Single item view on mobile */
  #video-coverflow-container {
    padding: 10px 0;
  }
  
  .coverflow-stage {
    height: 280px;
  }
  
  .coverflow-item {
    width: 90%;
    max-width: 320px;
  }
  
  /* Hide side items, only show active */
  .coverflow-item.left-1,
  .coverflow-item.left-2,
  .coverflow-item.right-1,
  .coverflow-item.right-2 {
    opacity: 0 !important;
    pointer-events: none;
  }
  
  .coverflow-item.active {
    transform: translateX(0) translateZ(0) rotateY(0deg) !important;
  }
  
  /* Make carousel navigation buttons larger and touch-friendly */
  .coverflow-nav {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  
  .coverflow-nav.prev {
    left: 5px;
  }
  
  .coverflow-nav.next {
    right: 5px;
  }
  
  /* ===== MOBILE SECTION HEADINGS - COMPREHENSIVE FIX ===== */
  
  /* Force all section-head containers to center their content */
  .section-head,
  .section-head--center,
  #hosts .section-head,
  #videos .section-head,
  #awakening .section-head,
  #donate .section-head,
  #contact .section-head,
  #partners .section-head,
  #awakening-documentaries .section-head {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }
  
  /* All heading elements - force mobile-friendly sizing and centering */
  .section-head h2,
  .section-head h3,
  .section-head--center h2,
  .section-head--center h3,
  h2.hosts-heading,
  h3.videos-subheading,
  h2.contact-heading,
  #hosts .section-head h2,
  #hosts h2.hosts-heading,
  #videos .section-head h2,
  #awakening .section-head h3,
  #awakening h3.videos-subheading,
  #donate .section-head h2,
  #contact .section-head h2,
  #contact h2.contact-heading,
  #partners .section-head h2,
  #awakening-documentaries .section-head h2 {
    font-size: clamp(18px, 5.5vw, 26px) !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  
  /* All span elements inside headings - force mobile font-size and centering */
  .section-head h2 span,
  .section-head h3 span,
  .section-head--center h2 span,
  h2.hosts-heading span,
  h3.videos-subheading span,
  h2.contact-heading span,
  #hosts .section-head h2 span,
  #hosts h2.hosts-heading span,
  #videos .section-head h2 span,
  #awakening .section-head h3 span,
  #awakening h3.videos-subheading span,
  #donate .section-head h2 span,
  #contact .section-head h2 span,
  #contact h2.contact-heading span,
  #partners .section-head h2 span,
  #awakening-documentaries .section-head h2 span {
    display: inline !important;
    white-space: normal !important;
    text-align: center !important;
    background-size: 100% 4px !important;
    font-size: clamp(18px, 5.5vw, 26px) !important;
  }
  
  /* Container padding for mobile */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Partners grid: single column on mobile */
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Host cards: stack on mobile */
  .host-cards {
    flex-direction: column;
    gap: 20px;
  }
  
  .host-card {
    width: 100%;
    max-width: 100%;
  }
}

/* ---------- Touch swipe support indicator for carousel ---------- */
@media (max-width: 768px) {
  #video-coverflow-container::after {
    content: 'Swipe to browse';
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    padding: 8px 0;
    opacity: 0.7;
  }
}

/* Ensure smooth transitions across all breakpoints */
.top-banner,
.top-banner img,
header .mast,
header .social,
.coverflow-stage,
.coverflow-item {
  transition: all 0.3s ease;
}
