/* =====================================================================
   The Ideas & Capital Show — landing page styles
   Scoped under .podcast-landing so they will not affect the rest of the
   GravCMS site. Drop this file at:
     /user/themes/interwest-dark/css/podcast-page.css
   and the page template will pull it in via <link rel="stylesheet">.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

.podcast-landing {
  --pl-bg: #14181f;
  --pl-bg-alt: #1b2129;
  --pl-bg-card: #20262f;
  --pl-border: #2c333e;
  --pl-gold: #c89a2f;
  --pl-gold-bright: #e0b242;
  --pl-gold-soft: rgba(200, 154, 47, 0.15);
  --pl-text: #f3f4f6;
  --pl-text-muted: #a8adb6;
  --pl-text-dim: #7d8390;
  --pl-shadow: 0 12px 40px rgba(0,0,0,0.45);

  background: var(--pl-bg);
  color: var(--pl-text);
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.podcast-landing * { box-sizing: border-box; }
.podcast-landing h1,
.podcast-landing h2,
.podcast-landing h3,
.podcast-landing h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--pl-text);
}
.podcast-landing a { color: var(--pl-gold-bright); text-decoration: none; transition: color .2s ease; }
.podcast-landing a:hover { color: var(--pl-gold); }
.podcast-landing img { max-width: 100%; height: auto; display: block; }

.podcast-landing .pl-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Hero ---------------- */
.podcast-landing .pl-hero {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(1100px 600px at 75% -10%, rgba(200,154,47,0.16), transparent 60%),
    radial-gradient(900px 500px at 10% 100%, rgba(200,154,47,0.08), transparent 65%),
    linear-gradient(180deg, #14181f 0%, #0f1218 100%);
  overflow: hidden;
}
.podcast-landing .pl-hero .pl-container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.podcast-landing .pl-eyebrow {
  display: inline-block;
  color: var(--pl-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--pl-gold-soft);
  border: 1px solid rgba(200,154,47,0.35);
  border-radius: 999px;
}
.podcast-landing .pl-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}
.podcast-landing .pl-accent { color: var(--pl-gold); }
.podcast-landing .pl-tagline {
  font-size: 1.15rem;
  color: var(--pl-text-muted);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.podcast-landing .pl-desc {
  color: var(--pl-text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.podcast-landing .pl-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.podcast-landing .pl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.podcast-landing .pl-btn-primary {
  background: var(--pl-gold);
  color: #0f1218;
}
.podcast-landing .pl-btn-primary:hover { background: var(--pl-gold-bright); color: #0f1218; transform: translateY(-2px); }
.podcast-landing .pl-btn-secondary {
  background: transparent;
  color: var(--pl-text);
  border-color: var(--pl-border);
}
.podcast-landing .pl-btn-secondary:hover { border-color: var(--pl-gold); color: var(--pl-gold-bright); }
.podcast-landing .pl-btn-youtube { background: #ff0000; color: #fff; }
.podcast-landing .pl-btn-youtube:hover { background: #cc0000; color: #fff; transform: translateY(-2px); }
.podcast-landing .pl-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.podcast-landing .pl-hero-art {
  position: relative;
  justify-self: end;
  max-width: 480px;
  width: 100%;
}
.podcast-landing .pl-hero-art img {
  border-radius: 10px;
  box-shadow: var(--pl-shadow), 0 0 0 1px rgba(200,154,47,0.25);
}
.podcast-landing .pl-hero-art::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  right: -22px;
  bottom: -22px;
  border: 2px solid var(--pl-gold);
  border-radius: 10px;
  z-index: -1;
  opacity: 0.7;
}

/* ---------------- Section base ---------------- */
.podcast-landing section { padding: 80px 0; }
.podcast-landing .pl-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.podcast-landing .pl-section-eyebrow {
  color: var(--pl-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.podcast-landing .pl-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.podcast-landing .pl-section-head p {
  color: var(--pl-text-muted);
  font-size: 1.05rem;
  margin: 0;
}
.podcast-landing .pl-divider {
  width: 60px;
  height: 3px;
  background: var(--pl-gold);
  margin: 0 auto 22px;
  border-radius: 2px;
}

/* ---------------- About ---------------- */
.podcast-landing .pl-about {
  background: var(--pl-bg-alt);
  border-top: 1px solid var(--pl-border);
  border-bottom: 1px solid var(--pl-border);
}
.podcast-landing .pl-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.podcast-landing .pl-card {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform .25s ease, border-color .25s ease;
}
.podcast-landing .pl-card:hover { transform: translateY(-4px); border-color: var(--pl-gold); }
.podcast-landing .pl-card-icon {
  width: 52px;
  height: 52px;
  background: var(--pl-gold-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--pl-gold-bright);
}
.podcast-landing .pl-card-icon svg { width: 26px; height: 26px; }
.podcast-landing .pl-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.podcast-landing .pl-card p { color: var(--pl-text-muted); font-size: 0.97rem; margin: 0; }

/* ---------------- Episodes ---------------- */
.podcast-landing .pl-episodes { background: var(--pl-bg); }
.podcast-landing .pl-video {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--pl-shadow);
  border: 1px solid var(--pl-border);
}
.podcast-landing .pl-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.podcast-landing .pl-center { text-align: center; }

/* ---------------- Appearances ---------------- */
.podcast-landing .pl-appearances {
  background: var(--pl-bg-alt);
  border-top: 1px solid var(--pl-border);
  border-bottom: 1px solid var(--pl-border);
}
.podcast-landing .pl-appearances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.podcast-landing .pl-appearance {
  background: var(--pl-bg-card);
  border: 1px solid var(--pl-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.podcast-landing .pl-appearance:hover { transform: translateY(-6px); border-color: var(--pl-gold); }
.podcast-landing .pl-appearance-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  display: block;
}
.podcast-landing .pl-appearance-thumb img { width: 100%; height: 100%; object-fit: cover; }
.podcast-landing .pl-appearance-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity .25s ease;
}
.podcast-landing .pl-appearance:hover .pl-appearance-play { opacity: 1; }
.podcast-landing .pl-appearance-play svg {
  width: 64px; height: 64px;
  color: var(--pl-gold-bright);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.podcast-landing .pl-appearance-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.podcast-landing .pl-appearance-show {
  color: var(--pl-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.podcast-landing .pl-appearance h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.35; }
.podcast-landing .pl-appearance-meta {
  color: var(--pl-text-dim);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.podcast-landing .pl-appearance-meta span { display: inline-flex; align-items: center; gap: 6px; }
.podcast-landing .pl-appearance-meta svg { width: 14px; height: 14px; opacity: 0.7; }
.podcast-landing .pl-appearance-desc {
  color: var(--pl-text-muted);
  font-size: 0.94rem;
  margin: 0 0 22px;
  flex: 1;
}
.podcast-landing .pl-appearance-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pl-gold-bright);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.podcast-landing .pl-appearance-link:hover { gap: 12px; }
.podcast-landing .pl-appearance-link svg { width: 14px; height: 14px; }

/* ---------------- Subscribe ---------------- */
.podcast-landing .pl-subscribe {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(200,154,47,0.18), transparent 70%),
    var(--pl-bg);
  text-align: center;
}
.podcast-landing .pl-subscribe-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a2029 0%, #0f1218 100%);
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  padding: 56px 40px;
  box-shadow: var(--pl-shadow);
}
.podcast-landing .pl-youtube-icon {
  width: 70px; height: 50px;
  background: #ff0000;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.podcast-landing .pl-youtube-icon svg { width: 34px; height: 34px; color: #fff; }
.podcast-landing .pl-subscribe-card h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 12px; }
.podcast-landing .pl-subscribe-card p {
  color: var(--pl-text-muted);
  margin: 0 auto 30px;
  max-width: 540px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .podcast-landing .pl-hero { padding: 60px 0 70px; }
  .podcast-landing .pl-hero .pl-container { grid-template-columns: 1fr; gap: 40px; }
  .podcast-landing .pl-hero-art { justify-self: center; max-width: 380px; }
  .podcast-landing .pl-hero-art::before { display: none; }
  .podcast-landing .pl-about-grid { grid-template-columns: 1fr; }
  .podcast-landing section { padding: 60px 0; }
}
@media (max-width: 720px) {
  .podcast-landing .pl-hero h1 { font-size: 2rem; }
  .podcast-landing .pl-ctas { flex-direction: column; align-items: stretch; }
  .podcast-landing .pl-btn { justify-content: center; }
  .podcast-landing .pl-subscribe-card { padding: 40px 24px; }
}
