/* ============================================================
   PODCAST PAGE — Success Explained with Chris Guerriero
   ============================================================ */

/* --- HERO --- */
.pod-hero {
  background: #000;
  padding: clamp(140px, 14vw, 180px) clamp(24px, 6vw, 80px) clamp(80px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}

.pod-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,168,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pod-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: clamp(40px, 6vw, 80px);
}

.pod-hero-text {
  flex: 1 1 0;
  min-width: clamp(260px, 36vw, 520px);
  overflow: visible;
}

.pod-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent, #D4A853);
  margin-bottom: 20px;
}

.pod-show-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pod-show-name span {
  color: var(--accent, #D4A853);
}

.pod-host {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.pod-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 16px;
}

.pod-body {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.pod-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.pod-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent, #D4A853);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid var(--accent, #D4A853);
  transition: background 0.2s, color 0.2s;
}

.pod-btn-primary:hover {
  background: transparent;
  color: var(--accent, #D4A853);
}

.pod-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.pod-btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* Cover image */
.pod-hero-cover {
  flex: 0 0 clamp(300px, 36vw, 540px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  margin-top: -clamp(140px, 14vw, 180px);
  margin-bottom: -clamp(80px, 10vw, 120px);
}

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

.pod-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}

/* --- DIVIDER BAR --- */
.pod-bar {
  background: var(--accent, #D4A853);
  height: 4px;
}

/* --- EPISODES SECTION --- */
.pod-episodes {
  background: #faf7f2;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
}

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

.pod-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent, #D4A853);
  margin-bottom: 12px;
}

.pod-section-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}

.pod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* --- EPISODE CARD --- */
.pod-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pod-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

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

.pod-card:hover .pod-card-thumb img {
  transform: scale(1.03);
}

.pod-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pod-card:hover .pod-play-overlay {
  opacity: 1;
}

.pod-play-btn {
  width: 60px;
  height: 60px;
  background: var(--accent, #D4A853);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pod-play-btn svg {
  width: 22px;
  height: 22px;
  fill: #000;
  margin-left: 3px;
}

.pod-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pod-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin-bottom: 16px;
  flex: 1;
}

.pod-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #D4A853);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.pod-card-link:hover {
  gap: 10px;
}

.pod-card-link::after {
  content: '→';
  font-size: 14px;
}

/* --- CTA STRIP (dark) --- */
.pod-cta {
  background: #0a0a0a;
  padding: clamp(60px, 7vw, 80px) clamp(24px, 6vw, 80px);
  text-align: center;
}

.pod-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.pod-cta h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--accent, #D4A853);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.pod-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.pod-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Platform logos */
.pod-platform-logos {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pod-platform-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.7;
}

.pod-platform-logo:hover {
  color: #fff;
  opacity: 1;
}

.pod-platform-logo svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.pod-platform-logo span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .pod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pod-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .pod-hero-cover {
    width: clamp(140px, 40vw, 200px);
    margin: 0 auto;
  }
  .pod-tagline, .pod-body {
    max-width: 100%;
  }
  .pod-platforms {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .pod-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
