:root{
  --charcoal:#1f1f1f;
  --darkgray:#666666;
  --gold:#f5c518;
  --paper:#f8f8f8;
  --white:#ffffff;
  --border:#eaeaea;
  --shadow: 0 12px 30px rgba(0,0,0,0.06);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: "Inter", system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: var(--paper);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

/* ===================== */
/* TOP BANNER */
/* ===================== */
/*
.site-banner{
  background: #ffffff;
  padding: 40px 0 30px;
  border-bottom: 1px solid #eaeaea;
}

.banner-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-banner img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

*/
/* ===================== */
/* HERO */
/* ===================== */

.hero{
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Full width banner, controlled height */
.hero-img{
  width: 100%;
  height: clamp(200px, 24vw, 340px); /* prevents “huge” */
  object-fit: cover;                /* crops nicely */
  object-position: center;          /* keeps it centered */
  display: block;
}

/* Optional subtle dark overlay (keeps badge readable) */
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.18)
  );
  pointer-events:none;
}

.hero-inner{
  position: absolute;
  inset: 0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom: 18px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 10px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ===================== */
/* TITLE SECTION */
/* ===================== */

.title-section{
  background: var(--white);
  padding: 40px 0 50px;
  text-align:center;
}

.site-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 56px);
  margin: 0;
  letter-spacing: -0.02em;
}

.subtitle{
  margin-top: 12px;
  color: var(--darkgray);
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
  margin-left:auto;
  margin-right:auto;
}

.gold-divider{
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto;
}

/* ===================== */
/* BUTTONS */
/* ===================== */

.btn-primary{
  background: var(--gold);
  color:#000;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition: 0.2s ease;
}

.btn-primary:hover{
  opacity:0.85;
}

/* ===================== */
/* CONTENT */
/* ===================== */

.container{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.content{
  padding: 60px 0;
}

.card{
  background: var(--white);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

/* Section headers */

.section-header{
  margin-bottom: 20px;
}

.section-header h2{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 0;
}

.mini-divider{
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

/* ===================== */
/* EPISODES */
/* ===================== */

.episode-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.episode-card{
  display:flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow:hidden;
  transition: 0.2s ease;
}

.episode-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.episode-thumb{
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.episode-body{
  padding: 20px;
}

.episode-title{
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin: 10px 0 6px;
}

.episode-desc{
  font-size: 14px;
  color: var(--darkgray);
  line-height: 1.7;
}

.episode-link{
  text-decoration:none;
  font-weight:600;
  margin-top:10px;
  display:inline-block;
}

.episode-link:hover{
  text-decoration: underline;
}

/* ===================== */
/* FOOTER */
/* ===================== */

.footer{
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align:center;
  font-size:14px;
  color: var(--darkgray);
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (min-width: 860px){
  .episode-grid{
    grid-template-columns: 1fr 1fr;
  }
}
