/* =============================================
   PREVENTION & PURPOSE — Podcast Page
   ============================================= */

:root {
  --pod-navy:    #0a1628;
  --pod-navy2:   #060e1a;
  --pod-gold:    #d4940c;
  --pod-gold2:   #e8aa18;
  --pod-white:   #ffffff;
  --pod-muted:   rgba(255,255,255,0.65);
  --pod-subtle:  rgba(255,255,255,0.08);
  --pod-border:  rgba(255,255,255,0.12);
  --pod-radius:  14px;
}

/* ── SHARED BUTTONS ───────────────────────── */
.pod-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--pod-gold), var(--pod-gold2));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212,148,12,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.pod-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,148,12,0.5);
}

.pod-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.pod-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* =============================================
   HERO
   ============================================= */
.pod-hero {
  position: relative;
  min-height: 640px;
  background: var(--pod-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pod-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pod-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.pod-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,26,62,0.98) 0%,
    rgba(13,26,62,0.90) 40%,
    rgba(13,26,62,0.55) 68%,
    rgba(13,26,62,0.15) 100%
  );
}

.pod-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px 70px;
  display: flex;
  align-items: center;
}

/* Badge */
.pod-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,148,12,0.45);
  background: rgba(212,148,12,0.12);
  margin-bottom: 26px;
}
.pod-badge i {
  font-size: 0.75rem;
  color: var(--pod-gold);
}
.pod-badge span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--pod-gold);
}

/* Title block */
.pod-title-block {
  margin-bottom: 22px;
}

.pod-title-line {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.0;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.pod-title-gold {
  color: var(--pod-gold);
  text-shadow: 0 0 40px rgba(212,148,12,0.4);
}

.pod-title-and-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pod-flame-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pod-gold), var(--pod-gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,148,12,0.45);
  flex-shrink: 0;
}
.pod-flame-icon i {
  font-size: 1.1rem;
  color: #fff;
}

/* Text */
.pod-subtitle {
  font-family: 'Barlow', 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  max-width: 680px;
}

.pod-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--pod-muted);
  margin-bottom: 32px;
  max-width: 660px;
}

/* CTA row */
.pod-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Tags */
.pod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pod-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--pod-subtle);
  border: 1px solid var(--pod-border);
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.pod-tag i {
  font-size: 0.65rem;
  color: var(--pod-gold);
}
.pod-tag:hover {
  background: rgba(212,148,12,0.15);
  border-color: rgba(212,148,12,0.4);
}

/* Podcast Logo — right side of hero */
.pod-hero-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding-left: 40px;
}
.pod-hero-logo-img {
  width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 80px rgba(212,148,12,0.15));
  animation: podLogoFloat 5s ease-in-out infinite;
}
@keyframes podLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Scroll cue */
.pod-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-decoration: none;
  animation: pod-bounce 2s infinite;
}
@keyframes pod-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* =============================================
   STATS STRIP
   ============================================= */
.pod-stats-strip {
  background: var(--pod-gold);
}

.pod-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.pod-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  flex: 1;
}

.pod-stat strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--pod-navy);
  line-height: 1;
}

.pod-stat span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(13,26,62,0.7);
  font-weight: 600;
  margin-top: 3px;
  text-align: center;
}

.pod-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(13,26,62,0.2);
  flex-shrink: 0;
}

/* =============================================
   HOST SECTION
   ============================================= */
.pod-host {
  background: #f5f7fa;
  padding: 90px 40px;
}

.pod-host-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

/* Image side */
.pod-host-img-wrap {
  position: relative;
}

.pod-host-img-bg {
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: linear-gradient(135deg, var(--pod-gold), var(--pod-gold2));
  border-radius: var(--pod-radius);
  opacity: 0.25;
  z-index: 0;
}

.pod-host-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--pod-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.pod-host-badge {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--pod-navy);
  border-radius: 999px;
  border: 2px solid var(--pod-gold);
  white-space: nowrap;
}
.pod-host-badge i {
  font-size: 0.8rem;
  color: var(--pod-gold);
}
.pod-host-badge span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Content side */
.pod-host-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pod-gold);
  margin-bottom: 10px;
}

.pod-host-name {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--pod-navy);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.pod-host-title-bar {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(13,26,62,0.06);
  border-left: 3px solid var(--pod-gold);
  border-radius: 0 6px 6px 0;
  margin-bottom: 24px;
}
.pod-host-title-bar span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--pod-navy);
  letter-spacing: 0.5px;
}

.pod-host-bio {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}

/* Pillars */
.pod-host-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}

.pod-host-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-left: 3px solid var(--pod-gold);
}
.pod-host-pillar > i {
  font-size: 1.2rem;
  color: var(--pod-gold);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.pod-host-pillar strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--pod-navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pod-host-pillar span {
  font-size: 0.76rem;
  color: #6b7280;
  margin-top: 1px;
  display: block;
}

/* Host CTA */
.pod-host-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pod-listen-platforms {
  display: flex;
  gap: 10px;
}

.pod-platform-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pod-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.pod-platform-btn:hover {
  background: var(--pod-gold);
  transform: translateY(-2px);
}

/* =============================================
   EPISODES
   ============================================= */
.pod-episodes {
  background: var(--pod-navy);
  padding: 90px 40px;
}

.pod-episodes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pod-episodes-header {
  text-align: center;
  margin-bottom: 50px;
}

.pod-section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pod-gold);
  margin-bottom: 10px;
}

.pod-section-title {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.pod-section-sub {
  font-size: 0.95rem;
  color: var(--pod-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Episode grid */
.pod-episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pod-episode-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--pod-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.pod-episode-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,148,12,0.35);
  transform: translateY(-4px);
}

.pod-ep-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pod-gold);
}

.pod-episode-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.pod-episode-card p {
  font-size: 0.82rem;
  color: var(--pod-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.pod-ep-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
}
.pod-ep-meta i {
  color: var(--pod-gold);
  margin-right: 2px;
}

.pod-ep-play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: rgba(212,148,12,0.15);
  border: 1px solid rgba(212,148,12,0.35);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--pod-gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  width: fit-content;
}
.pod-ep-play:hover {
  background: rgba(212,148,12,0.28);
}

.pod-episodes-footer {
  text-align: center;
}

/* =============================================
   SUBSCRIBE
   ============================================= */
.pod-subscribe {
  background: linear-gradient(135deg, #060e1a, #0a1628);
  padding: 70px 40px;
  border-top: 1px solid rgba(212,148,12,0.2);
}

.pod-subscribe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pod-subscribe-text h2 {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.pod-subscribe-text p {
  font-size: 0.9rem;
  color: var(--pod-muted);
  line-height: 1.6;
  max-width: 380px;
}

.pod-subscribe-platforms {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pod-platform-large {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}
.pod-platform-large:hover {
  background: rgba(212,148,12,0.15);
  border-color: rgba(212,148,12,0.4);
  transform: translateY(-2px);
}
.pod-platform-large > i {
  font-size: 1.5rem;
  color: var(--pod-gold);
}
.pod-platform-large div {
  display: flex;
  flex-direction: column;
}
.pod-platform-large span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif;
}
.pod-platform-large strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pod-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 32px;
  }
  .pod-hero-right {
    margin-left: 0;
    padding-left: 0;
    justify-content: center;
  }
  .pod-hero-logo-img { width: 320px; }

  .pod-host-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pod-host-img-wrap { max-width: 420px; margin: 0 auto; }

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

@media (max-width: 768px) {
  .pod-hero-inner { padding: 50px 24px 40px; }
  .pod-hero-logo-img { width: 260px; opacity: 0.85; }
  .pod-stats-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px;
    justify-content: center;
  }
  .pod-stat-divider { display: none; }
  .pod-stat { flex: none; min-width: 120px; }

  .pod-host { padding: 60px 24px; }
  .pod-episodes { padding: 60px 24px; }
  .pod-episode-grid { grid-template-columns: 1fr; }

  .pod-subscribe-inner { flex-direction: column; align-items: flex-start; }
  .pod-subscribe { padding: 50px 24px; }

  .pod-cta-row { flex-direction: column; }
  .pod-host-cta-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .pod-title-line { font-size: 3rem; }
  .pod-hero-right { display: none; }
  .pod-stats-inner { padding: 20px 16px; }
  .pod-subscribe-platforms { flex-direction: column; }
}
