:root {
  --ink: #1d2421;
  --ink-soft: #3c4642;
  --paper: #e8e2d2;
  --paper-deep: #ddd5c2;
  --chalk: #cfd6d1;
  --chalk-deep: #9aa8a2;
  --wall: #8e9c94;
  --wall-deep: #6c7a73;
  --wall-dark: #4d5a54;
  --cold-white: #eef1ec;
  --red: #8c2f2a;
  --red-soft: #a8463e;
  --line: rgba(60, 70, 66, 0.22);
  --line-strong: rgba(40, 48, 44, 0.42);
  --radius: 2px;
  --gap: 10px;
  --shell: 1280px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background:
    linear-gradient(180deg, #7f8d85 0%, #8e9c94 12%, #93a099 34%, #8b978f 100%);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
ol, ul {
  list-style: none;
}
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-header {
  background: rgba(232, 226, 210, 0.94);
  border-bottom: 2px solid var(--line-strong);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(2px);
}
.header-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  font-stretch: condensed;
  transform: scaleX(0.94);
  transform-origin: left center;
  white-space: nowrap;
  border-left: 4px solid var(--red);
  padding-left: 8px;
}
a[data-contract="site-name"]:hover {
  color: var(--red);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 2px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  padding: 2px 8px;
  border-right: 1px solid var(--line);
  line-height: 1.7;
}
a.runtime-category:last-child {
  border-right: 0;
}
a.runtime-category:hover {
  color: var(--red);
  background: rgba(140, 47, 42, 0.08);
}
.page-main {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 12px 14px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-shell {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(30, 38, 34, 0.24);
}
.hero-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--wall-dark);
}
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.9) contrast(1.02);
}
.hero-media-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 46, 42, 0.34) 0%, rgba(38, 46, 42, 0.12) 42%, rgba(232, 226, 210, 0.92) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  padding: 22px 22px 26px;
  background:
    linear-gradient(180deg, rgba(232, 226, 210, 0.96) 0%, rgba(221, 213, 194, 0.98) 100%);
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: flex-end;
  border-left: 1px solid var(--line);
}
.hero-title {
  font-size: 34px;
  line-height: 1.06;
  transform: scaleY(1.06);
  transform-origin: left bottom;
  font-stretch: condensed;
  letter-spacing: 0.03em;
  color: var(--ink);
  border-bottom: 3px solid var(--red);
  padding-bottom: 7px;
  align-self: flex-start;
}
.hero-tagline {
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.14em;
  border-left: 2px solid var(--red-soft);
  padding-left: 7px;
}
.hero-desc {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  text-align: justify;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
a.action-primary {
  color: var(--cold-white);
  text-decoration: none;
  background: var(--red);
  border: 1px solid var(--red);
  padding: 7px 18px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  white-space: nowrap;
}
a.action-primary:hover {
  background: #74231f;
  border-color: #74231f;
}
a.action-ghost {
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 7px 18px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  white-space: nowrap;
}
a.action-ghost:hover {
  background: rgba(60, 70, 66, 0.1);
  border-color: var(--ink-soft);
}
.hero-player {
  position: relative;
  background: #101513;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--line-strong);
}
.hero-player video {
  display: block;
  width: 100%;
  background: #0a0d0c;
}
.player-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: #1b211f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.player-btn {
  background: rgba(238, 241, 236, 0.08);
  color: var(--chalk);
  border: 1px solid rgba(238, 241, 236, 0.18);
  border-radius: var(--radius);
  padding: 4px 9px;
  font-size: 11.5px;
  cursor: pointer;
  white-space: nowrap;
}
.player-btn:hover {
  background: rgba(238, 241, 236, 0.16);
  color: var(--cold-white);
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  flex: 1 1 150px;
  min-width: 110px;
  background: rgba(238, 241, 236, 0.22);
  border-radius: 0;
  cursor: pointer;
}
.player-range-volume {
  flex: 0 1 96px;
  min-width: 70px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 14px;
  background: var(--red-soft);
  border: 0;
  border-radius: 0;
}
.player-range::-moz-range-thumb {
  width: 9px;
  height: 14px;
  background: var(--red-soft);
  border: 0;
  border-radius: 0;
}
.player-select {
  background: #1b211f;
  color: var(--chalk);
  border: 1px solid rgba(238, 241, 236, 0.18);
  border-radius: var(--radius);
  padding: 4px 6px;
  font-size: 11.5px;
}
.hero-player.is-playing {
  border-top-color: var(--red-soft);
}
.hero-player.is-muted .player-range-volume {
  opacity: 0.5;
}
.hero-player.is-lights-off {
  background: #050706;
}
.hero-player.is-lights-off .player-bar {
  background: #0d100f;
}
.hero-player.is-theater {
  border-left: 3px solid var(--red);
  border-right: 3px solid var(--red);
}
.hero-player.is-theater video {
  max-height: 72vh;
  object-fit: contain;
}
.hero-player .player-btn.play, .hero-player .player-btn.pause, .hero-player .player-btn.mute, .hero-player .player-btn.fullscreen, .hero-player .player-btn.theater, .hero-player .player-btn.light, .hero-player .player-btn.pip, .hero-player .player-btn.speed {
  border-color: var(--red-soft);
}
.hero-player .player-range.progress, .hero-player .player-range.volume, .hero-player .player-range.timeupdate, .hero-player .player-range.input, .hero-player .player-range.change, .hero-player .player-range.click {
  accent-color: var(--red-soft);
}
.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr) minmax(0, 0.95fr);
  gap: 0;
  background: var(--paper);
}
.overview-body > section {
  padding: 13px 14px 15px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-width: 0;
}
.overview-body > section:last-child {
  border-right: 0;
}
.block-heading {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink);
  font-stretch: condensed;
  transform: scaleX(0.96);
  transform-origin: left center;
  padding-bottom: 5px;
  margin-bottom: 9px;
  border-bottom: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  gap: 7px;
}
.block-heading::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex: none;
}
.cast-block {
  grid-column: 1;
}
.cast-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cast-card {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: start;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.4);
  border-left: 2px solid var(--chalk-deep);
  border-radius: var(--radius);
}
.cast-name {
  grid-row: 1 / span 2;
  grid-column: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.cast-role {
  grid-column: 2;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.synopsis-block {
  grid-column: 2;
}
.synopsis-text {
  columns: 2;
  column-gap: 16px;
  column-rule: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.78;
  color: var(--ink-soft);
  text-align: justify;
}
.synopsis-text p {
  margin-bottom: 7px;
  break-inside: avoid;
}
.synopsis-text p:last-child {
  margin-bottom: 0;
}
.episode-status-block {
  grid-column: 3;
}
.status-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, rgba(140, 47, 42, 0.06) 0 1px, transparent 1px 22px),
    rgba(255, 255, 255, 0.42);
  padding: 10px 11px;
  border-radius: var(--radius);
}
.status-current {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 5px;
}
.status-total {
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.status-note {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.details-block {
  grid-column: 3;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.detail-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5px 7px;
  min-width: 0;
}
.detail-cell dt {
  font-size: 10px;
  color: var(--wall-deep);
  letter-spacing: 0.14em;
}
.detail-cell dd {
  font-size: 11.5px;
  color: var(--ink);
  letter-spacing: 0.02em;
  word-break: break-word;
}
.section-heading {
  font-size: 15px;
  letter-spacing: 0.2em;
  font-stretch: condensed;
  transform: scaleY(1.08);
  transform-origin: left bottom;
  color: var(--ink);
  padding: 0 0 5px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-heading::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 0 2px rgba(140, 47, 42, 0.18);
}
.timeline-section {
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px 16px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
  padding-top: 20px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 4%;
  right: 4%;
  height: 2px;
  background:
    repeating-linear-gradient(90deg, var(--chalk-deep) 0 8px, transparent 8px 13px);
  z-index: 0;
}
.timeline-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  text-align: center;
}
.timeline-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #f3f5f2 0%, var(--chalk) 46%, var(--chalk-deep) 100%);
  box-shadow: 0 0 0 3px rgba(232, 226, 210, 0.9), 0 1px 3px rgba(30, 38, 34, 0.28);
  flex: none;
}
.timeline-timecode {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.timeline-label {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.timeline-node-current .timeline-dot {
  background: radial-gradient(circle at 34% 30%, #c05a51 0%, var(--red) 62%, #6d211d 100%);
  transform: scale(1.28);
  box-shadow: 0 0 0 3px rgba(232, 226, 210, 0.9), 0 0 0 6px rgba(140, 47, 42, 0.16);
}
.timeline-node-current .timeline-timecode {
  color: var(--red);
  font-size: 12.5px;
}
.timeline-node-current .timeline-label {
  color: var(--ink);
  font-weight: 700;
}
.episodes-section {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px 15px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 9px;
  align-items: start;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--chalk-deep);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.36);
  transition: background 0.12s linear, border-color 0.12s linear;
}
.episode-card:hover {
  background:
    repeating-linear-gradient(0deg, rgba(60, 70, 66, 0.13) 0 1px, transparent 1px 20px),
    rgba(255, 255, 255, 0.6);
  border-left-color: var(--red);
}
.episode-number {
  grid-column: 1;
  grid-row: 1;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  white-space: nowrap;
  border: 1px solid rgba(140, 47, 42, 0.36);
  border-radius: var(--radius);
  padding: 1px 5px;
}
.episode-title {
  grid-column: 2;
  grid-row: 1;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em;
  font-stretch: condensed;
  transform: scaleX(0.97);
  transform-origin: left center;
  align-self: center;
}
.episode-summary {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 11.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  grid-column: 1 / -1;
  grid-row: 3;
  font-size: 10.5px;
  color: var(--wall-deep);
  letter-spacing: 0.1em;
  margin-top: 5px;
  padding-top: 4px;
  border-top: 1px dashed var(--line);
}
.episode-card-current {
  border-left-color: var(--red);
  background:
    linear-gradient(180deg, rgba(140, 47, 42, 0.07), rgba(140, 47, 42, 0.02)),
    rgba(255, 255, 255, 0.5);
}
.episode-card-current .episode-title {
  color: var(--red);
}
.comments-section {
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px 15px;
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}
.comments-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.comment-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-top: 2px solid var(--chalk-deep);
  border-radius: var(--radius);
  padding: 7px 9px 8px;
  min-width: 0;
}
.comment-nickname {
  display: block;
  font-family: "Kaiti SC", "STKaiti", "KaiTi", "Xingkai SC", cursive;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  padding-bottom: 3px;
  border-bottom: 1px dashed var(--line);
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.66;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-region {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px 14px;
}
.recommend-posters {
  display: grid;
  gap: 9px;
}
.recommend-posters-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.recommend-posters-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 0;
  align-self: start;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  background: var(--wall);
  border-radius: var(--radius);
  filter: saturate(0.88);
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.recommend-card:hover {
  border-color: var(--red);
  background: rgba(140, 47, 42, 0.06);
}
a.recommend-card:hover [data-runtime="name"] {
  color: var(--red);
}
.recommend-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}
.recommend-list-item {
  min-width: 0;
}
a.recommend-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 190px) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 5px 7px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}
a.recommend-row img {
  width: 46px;
  height: 62px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--wall);
  filter: saturate(0.85);
}
a.recommend-row [data-runtime="name"] {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.recommend-row [data-runtime="blurb"] {
  font-size: 11px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.recommend-row:hover {
  border-color: var(--red);
  background: rgba(140, 47, 42, 0.06);
}
a.recommend-row:hover [data-runtime="name"] {
  color: var(--red);
}
.site-footer {
  background: rgba(27, 33, 31, 0.94);
  color: var(--chalk);
  border-top: 3px solid var(--red);
  margin-top: 8px;
}
.footer-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(238, 241, 236, 0.16);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--chalk);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  border-left: 2px solid var(--red-soft);
  padding-left: 7px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #ffffff;
  border-left-color: var(--red);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 6px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--wall);
  margin-right: 4px;
  white-space: nowrap;
}
a.runtime-friend-link {
  color: rgba(207, 214, 209, 0.82);
  text-decoration: none;
  font-size: 11px;
  padding: 2px 7px;
  border: 1px solid rgba(238, 241, 236, 0.16);
  border-radius: var(--radius);
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: #ffffff;
  border-color: var(--red-soft);
  background: rgba(140, 47, 42, 0.24);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.72;
  color: rgba(207, 214, 209, 0.66);
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(238, 241, 236, 0.12);
  padding-top: 9px;
}
@media (max-width: 1080px) {.overview-body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  }
.episode-status-block, .details-block {
    grid-column: span 1;
  }
.synopsis-text {
    columns: 1;
  }
.recommend-posters-four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 900px) {.hero-frame {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-media {
    min-height: 260px;
    max-height: 420px;
  }
.hero-media-veil {
    background:
      linear-gradient(180deg, rgba(38, 46, 42, 0.28) 0%, rgba(232, 226, 210, 0.94) 100%),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px);
  }
.hero-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-body > section {
    border-right: 0;
  }
.comments-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 16px;
  }
.timeline-track::before {
    display: none;
  }}
@media (max-width: 720px) {.hero-title {
    font-size: 26px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-posters-four, .recommend-posters-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
a.recommend-row {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 2px;
  }
a.recommend-row img {
    width: 40px;
    height: 54px;
    grid-row: 1 / span 2;
  }
a.recommend-row [data-runtime="name"] {
    grid-column: 2;
  }
a.recommend-row [data-runtime="blurb"] {
    grid-column: 2;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }}
@media (max-width: 560px) {body {
    font-size: 12.5px;
  }
.page-main {
    padding: 10px 10px 20px;
    gap: 15px;
  }
.header-shell {
    padding: 6px 10px;
    gap: 8px;
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-posters-four, .recommend-posters-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.hero-copy {
    padding: 16px 14px 18px;
  }
.player-range {
    flex: 1 1 100%;
  }
.player-range-volume {
    flex: 1 1 100%;
  }}
@media (max-width: 380px) {.recommend-posters-four, .recommend-posters-three {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-media {
    min-height: 200px;
  }}

footer{text-align:center!important}
footer *{justify-content:center!important}
footer :is(div,nav,ul,ol,p,section,address){margin-left:auto!important;margin-right:auto!important}
