.viewer-shell {
  flex: 1 0 auto;
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 24px 16px 0;
}

.viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.back-link,
.viewer-brand {
  color: var(--grey-light, #d5ced1);
  text-decoration: none;
}

.back-link {
  font-size: 0.82rem;
  font-weight: 700;
}

.viewer-brand {
  color: #f4eef0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible,
.viewer-brand:hover,
.viewer-brand:focus-visible {
  color: var(--rose-light, #a63a5a);
  outline: none;
}

.screen-section {
  width: 100%;
}

.cinema-screen {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #393238;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at center,
      var(--charcoal-light, #211c20) 0,
      var(--black, #090809) 72%
    );
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
}

.cinema-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.viewer-status {
  margin: 0;
  padding: 24px;
  color: var(--grey, #928a8e);
  font-size: 0.86rem;
  text-align: center;
}

.viewer-status.error {
  color: var(--rose-light, #a63a5a);
}

.video-consent {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  padding: 24px;
  text-align: center;
}

.video-consent[hidden] {
  display: none;
}

.video-play-button {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid var(--rose-light, #a63a5a);
  border-radius: 50%;
  background: var(--rose-dark, #581126);
  color: #fff;
  padding: 0;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(166, 58, 90, 0.18);
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.video-play-button span {
  display: block;
  margin-left: 5px;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  border-color: #fff;
  background: var(--rose, #781b38);
  transform: scale(1.06);
  outline: none;
}

.video-play-button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.video-third-party-note {
  margin: 0;
  color: var(--grey, #928a8e);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.embed-notice {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--rose-light, #a63a5a);
  background: var(--charcoal, #171417);
  color: var(--grey, #928a8e);
  font-size: 0.75rem;
  line-height: 1.55;
}

.embed-notice p {
  margin: 0;
}

.embed-notice-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.embed-notice a {
  color: var(--rose-light, #a63a5a);
  font-weight: 700;
  text-decoration: none;
}

.embed-notice a:hover,
.embed-notice a:focus-visible {
  color: #fff;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.viewer-copy {
  padding: 22px 2px 38px;
}

.viewer-kicker {
  margin: 0 0 7px;
  color: var(--rose-light, #a63a5a);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.viewer-copy h1 {
  margin: 0;
  color: #f4eef0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.viewer-description {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--grey, #928a8e);
  font-size: 0.9rem;
  line-height: 1.65;
}

.viewer-shell .site-footer {
  margin-top: 12px;
}

@media (max-width: 600px) {
  .viewer-shell {
    padding: 18px 12px 0;
  }

  .viewer-header {
    margin-bottom: 16px;
  }

  .back-link {
    font-size: 0.76rem;
  }

  .viewer-brand {
    font-size: 1rem;
  }

  .cinema-screen {
    border-radius: 12px;
  }

  .video-play-button {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }

  .embed-notice {
    font-size: 0.71rem;
  }

  .viewer-copy {
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-play-button {
    transition: none;
  }
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.08);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 18px;
  color: var(--grey, #928a8e);
  font-size: 0.74rem;
}

.breadcrumbs a {
  color: var(--grey-light, #d5ced1);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--rose-light, #a63a5a);
  outline: none;
}

.reading-detail {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 42px;
}

.reading-cover {
  margin: 0;
  overflow: hidden;
  border: 1px solid #393238;
  border-radius: 18px;
  background: var(--charcoal, #171417);
}

.reading-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.reading-copy {
  padding-top: 6px;
}

.reading-copy h1 {
  margin: 0;
  color: #f4eef0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.source-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  border: 1px solid var(--rose-light, #a63a5a);
  border-radius: 20px;
  background: var(--rose-dark, #581126);
  color: #fff;
  padding: 11px 18px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.source-button:hover,
.source-button:focus-visible {
  background: var(--rose, #781b38);
  outline: none;
}

.source-note {
  max-width: 680px;
  margin: 16px 0 10px;
  color: var(--grey, #928a8e);
  font-size: 0.76rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .reading-detail {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reading-cover {
    width: min(100%, 420px);
    margin-inline: auto;
  }
}

.item-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.item-genres a {
  border: 1px solid #4a3c43;
  border-radius: 999px;
  color: var(--grey-light, #d5ced1);
  padding: 7px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.item-genres a:hover,
.item-genres a:focus-visible {
  border-color: var(--rose-light, #a63a5a);
  color: #fff;
  outline: none;
}

.related-videos {
  padding: 30px 0 38px;
  border-top: 1px solid #393238;
}

.related-videos[hidden] {
  display: none;
}

.related-videos-heading {
  margin-bottom: 16px;
}

.related-videos-heading h2 {
  margin: 0;
  color: #f4eef0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.related-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.related-video-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #393238;
  border-radius: 14px;
  background: var(--charcoal, #171417);
  color: #f4eef0;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
  align-content: center;
}

.related-video-card:hover,
.related-video-card:focus-visible {
  border-color: var(--rose-light, #a63a5a);
  transform: translateY(-3px);
  outline: none;
}

.related-video-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid #393238;
  background: var(--black, #090809);
}

.related-video-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.76);
  transition: transform 220ms ease, filter 220ms ease;
}

.related-video-card:hover img,
.related-video-card:focus-visible img {
  transform: scale(1.035);
  filter: contrast(1.08) brightness(0.86);
}

.related-video-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 3.5rem;
  padding: 12px;
  color: #f4eef0;
  background: var(--charcoal-light, #211d20);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .related-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .related-videos {
    padding-top: 24px;
  }

  .related-videos-grid {
    gap: 10px;
  }

  .related-video-title {
    padding: 10px;
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .related-video-card,
  .related-video-thumbnail img {
    transition: none;
  }
}

