*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #2b7c8c;
  --white: #ffffff;
  --border: #e6e6e6;
  --text-dark: #1a1a1a;
  --text-mid: #555555;
  --bg: #f2f2f2;
}

/* ── Slider  ─────────────────────────────── */
.slider-section {
  padding: 28px 0 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 48px 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #666;
}



/* ── Slider wrapper ───────────────────────── */
.slider-outer {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.slider-track-wrap {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 0 0 0 45px;
}

/* ── Card ─────────────────────────────────── */
.show-card {
  flex: 0 0 calc(100% / 5.5);
  min-width: 0;
  border-right: 1px solid var(--border);
  border-bottom: 0;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s;
  position: relative;
  flex-direction: column;
}

.show-card .card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.show-card .card-more {
  position: relative;
  z-index: 6;
}

.show-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.12); z-index: 2; position: relative; }

.show-card:first-child { border-left: 1px solid #ddd; }

.card-image {
  width: 100%;
  aspect-ratio: 7 / 5;
  object-fit: cover;
  display: block;
  background: #222;
}

/* Poster placeholder using gradient */
.card-poster {
  width: 100%;
  aspect-ratio: 7 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 14px 16px 18px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.card-status {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

.card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
}

.card-more::before {
  content: '≡';
  font-size: 14px;
}

/* ── Nav buttons ──────────────────────────── */
.nav-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, opacity 0.2s;
  font-size: 22px;
  color: #1a1a1a;
  box-shadow: 2px 0 12px rgba(0,0,0,0.08);
}

.nav-btn.prev { left: 0; box-shadow: 2px 0 12px rgba(0,0,0,0.08); }
.nav-btn.next { right: 0; box-shadow: -2px 0 12px rgba(0,0,0,0.08); }
.nav-btn:hover { background: #fff; }
.nav-btn:disabled { opacity: 0.25; cursor: default; }
.nav-btn svg { pointer-events: none; }

/* tag pill */
.status-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 4px;
}
.tag-playing { background: #1a1a1a; color: #fff; }
.tag-preview { background: #e8e2d6; color: #555; }
.tag-soon    { background: #007678; color: #fff; }

@media (max-width: 900px) {
  .show-card { flex: 0 0 calc(100% / 2.3); }
  .section-header { padding: 0 20px 16px; }
}
@media (max-width: 600px) {
  .show-card { flex: 0 0 calc(100% / 1.1); }
}









/* Longest Running  */


.shows-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.show-row {
  display: flex;
  align-items: center;
}

/* Big rank number sits to the left, partially overlapping card */
.rank {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 110px;
  line-height: 1;
  color: var(--teal);
  width: 100px;
  min-width: 100px;
  text-align: right;
  padding-right: 0px;
  flex-shrink: 0;
  letter-spacing: -5px;
  user-select: none;
  /* nudge it so it sits against the card */
  margin-right: -12px;
  position: relative;
  z-index: 1;
}

.show-card2 {
  flex: 1;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  min-height: 170px;
  position: relative;
  z-index: 0;
}

.show-image-wrap {
  width: 210px;
  min-width: 210px;
  flex-shrink: 0;
  overflow: hidden;
  background: #000;
}

.show-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.show-image-wrap .fallback {
  width: 100%;
  height: 100%;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 12px;
  text-align: center;
  padding: 12px;
}

.show-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  gap: 3px;
  border-left: 1px solid var(--border);
}

.show-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 3px;
}

.show-creators {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.5;
}

.show-dates {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  width: fit-content;
}

.more-link:hover { color: var(--teal); }

/* Three-line hamburger icon matching screenshot */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 15px;
  height: 11px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.8px;
  background: currentColor;
  border-radius: 1px;
}

@media (max-width: 580px) {
  .rank { font-size: 72px; width: 70px; min-width: 70px; margin-right: -8px; }
  .show-image-wrap { width: 140px; min-width: 140px; }
  .show-name { font-size: 15px; }
  .show-info { padding: 16px 18px; }
  h1 { font-size: 20px; }


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Source Sans 3', sans-serif;
    background: #f7f5f0;
    color: #1a1a1a;
    padding: 0 0 60px;
  }






  /* ── Slider  ─────────────────────────────── */
  .slider-section {
    padding: 48px 0 0;
  }

  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 48px 18px;
    border-bottom: 2px solid #1a1a1a;
    margin-bottom: 0;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
  }

  .section-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #666;
  }

  /* ── Slider wrapper ───────────────────────── */
  .slider-outer {
    position: relative;
    border-bottom: 2px solid #1a1a1a;
  }

  .slider-track-wrap {
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* ── Card ─────────────────────────────────── */
  .show-card {
    flex: 0 0 calc(100% / 4.5);
    min-width: 0;
    border-right: 0;
    border-bottom: 0;
    background: #fff;
    cursor: pointer;
    transition: box-shadow 0.2s;
    position: relative;
    flex-direction: column;
  }

  .show-card .card-link {
    position: absolute;
    inset: 0;
    z-index: 5;
  }

  .show-card .card-more {
    position: relative;
    z-index: 6;
  }

  .show-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.12); z-index: 2; position: relative; }

  .show-card:first-child { border-left: 1px solid #ddd; }

  .card-image {
    width: 100%;
    aspect-ratio: 7 / 5;
    object-fit: cover;
    display: block;
    background: #222;
  }

  /* Poster placeholder using gradient */
  .card-poster {
    width: 100%;
    aspect-ratio: 7 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .card-body {
    padding: 14px 16px 18px;
  }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .card-status {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
  }

  .card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
  }

  .card-more::before {
    content: '≡';
    font-size: 14px;
  }

  /* ── Nav buttons ──────────────────────────── */
  .nav-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    background: rgba(255,255,255,0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, opacity 0.2s;
    font-size: 22px;
    color: #1a1a1a;
    box-shadow: 2px 0 12px rgba(0,0,0,0.08);
  }

  .nav-btn.prev { left: 0; box-shadow: 2px 0 12px rgba(0,0,0,0.08); }
  .nav-btn.next { right: 0; box-shadow: -2px 0 12px rgba(0,0,0,0.08); }
  .nav-btn:hover { background: #fff; }
  .nav-btn:disabled { opacity: 0.25; cursor: default; }
  .nav-btn svg { pointer-events: none; }

  /* tag pill */
  .status-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 2px;
    margin-bottom: 4px;
  }
  .tag-playing { background: #1a1a1a; color: #fff; }
  .tag-preview { background: #e8e2d6; color: #555; }
  .tag-soon    { background: #007678; color: #fff; }

  @media (max-width: 900px) {
    .show-card { flex: 0 0 calc(100% / 2.3); }
    .section-header { padding: 0 20px 16px; }
  }
  @media (max-width: 600px) {
    .show-card { flex: 0 0 calc(100% / 1.1); }
  }
