body.video-page {
  background: #ffffff;
  color: #111111;
}

.video-hub {
  padding-top: var(--header-height, 118px);
  background: #ffffff;
  color: #111111;
  font-family: "Inter", Arial, sans-serif;
}

.video-page-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.video-page-hero {
  padding: 34px 0 28px;
  border-bottom: 1px solid #e4e4e4;
}

.video-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.video-hero-media {
  min-width: 0;
}

.video-frame,
.video-play-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #111111;
}

.video-play-card {
  display: block;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
}

.video-play-card img,
.video-card-thumb img,
.story-video-thumb img,
.story-article-media img,
.guest-avatar img,
.quick-clip-thumb img,
.watched-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-card img,
.video-card-thumb img,
.story-video-thumb img,
.quick-clip-thumb img {
  transition: transform 0.2s ease;
}

.video-play-card:hover img,
.video-card:hover .video-card-thumb img,
.story-video-card:hover .story-video-thumb img,
.quick-clip-card:hover .quick-clip-thumb img {
  transform: scale(1.025);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.08);
}

.video-play-icon {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.36);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  padding-left: 4px;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-frame-preview .video-play-card {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.video-hero-copy {
  min-width: 0;
}

.video-eyebrow {
  margin: 0 0 14px;
  color: #d40000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-hero-copy h1 {
  margin: 0;
  color: #080808;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.video-hero-guest {
  margin: 18px 0 0;
  color: #555555;
  font-size: 18px;
  font-weight: 700;
}

.video-hero-description {
  margin: 16px 0 0;
  color: #252525;
  font-size: 16px;
  line-height: 1.6;
  max-width: 54ch;
}

.video-hero-description.is-expanded {
  max-width: 58ch;
  white-space: pre-wrap;
}

.video-description-inline-button {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d40000;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.video-description-inline-button[hidden] {
  display: none;
}

.video-description-inline-button:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-hero-meta {
  margin: 18px 0 0;
  color: #606060;
  font-size: 14px;
  font-weight: 600;
}

.video-watch-button {
  margin-top: 22px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #d40000;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-watch-button:hover {
  background: #a90000;
  transform: translateY(-1px);
}

.video-page-section {
  padding: 34px 0;
}

.video-page-section + .video-page-section {
  border-top: 1px solid #e6e6e6;
}

.video-section-head {
  margin-bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.video-section-head h2 {
  position: relative;
  margin: 0;
  padding-bottom: 10px;
  color: #070707;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.video-section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: #d40000;
}

.video-section-head a {
  color: #d40000;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.video-section-head a::after {
  content: " ->";
}

.latest-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 24px;
}

.video-card,
.story-video-card,
.story-article-card,
.guest-card,
.quick-clip-card,
.watched-row {
  color: inherit;
  text-decoration: none;
}

.video-card {
  display: grid;
  gap: 12px;
}

.video-card-thumb,
.story-video-thumb,
.quick-clip-thumb,
.watched-thumb,
.story-article-media {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #161616;
}

.video-card-thumb,
.story-video-thumb {
  aspect-ratio: 16 / 9;
}

.video-duration-badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-height: 23px;
  padding: 0 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  background: #d40000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.video-card h3,
.story-video-card h3,
.story-article-card h3 {
  margin: 0;
  color: #101010;
  font-size: 17px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.video-card p,
.story-video-card p,
.story-article-card p,
.guest-card p,
.quick-clip-card p,
.watched-copy p {
  margin: 0;
}

.video-card-guest,
.story-video-guest,
.watched-copy p {
  color: #595959;
  font-size: 13px;
  font-weight: 600;
}

.video-card-date {
  color: #858585;
  font-size: 12px;
  font-weight: 600;
}

.clips-shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.clips-shorts-column {
  min-width: 0;
}

.clips-shorts-column h3 {
  margin: 0 0 14px;
  color: #111111;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.mini-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-video-card {
  display: grid;
  gap: 9px;
  color: inherit;
  text-decoration: none;
}

.mini-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 5px;
  background: #161616;
}

.mini-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.mini-video-card:hover .mini-video-thumb img {
  transform: scale(1.025);
}

.mini-video-card h4 {
  margin: 0;
  color: #101010;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.mini-video-card p {
  margin: 0;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
}

.stories-interviews-list {
  display: grid;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #e2e2e2;
}

.story-row:first-child {
  padding-top: 0;
}

.story-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.story-row.is-flipped .story-video-card {
  order: 2;
}

.story-row.is-flipped .story-article-card {
  order: 1;
}

.story-video-card,
.story-article-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.92fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.story-video-card {
  align-items: center;
}

.story-article-media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background: #f2f2f2;
}

.story-article-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.story-card-copy {
  display: grid;
  gap: 8px;
}

.story-article-card p {
  color: #313131;
  font-size: 14px;
  line-height: 1.45;
}

.story-read-link {
  color: #d40000;
  font-size: 13px;
  font-weight: 900;
}

.story-read-link::after {
  content: " ->";
}

.stories-interviews-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 26px;
}

.story-load-more-button {
  min-height: 44px;
  border: 1px solid #d40000;
  border-radius: 4px;
  padding: 0 20px;
  background: #ffffff;
  color: #d40000;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.story-load-more-button:hover {
  background: #d40000;
  color: #ffffff;
  transform: translateY(-1px);
}

.stories-interviews-count,
.stories-interviews-end {
  margin: 0;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.topic-card {
  min-height: 92px;
  padding: 18px 12px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #f2f2f2;
  color: #111111;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.topic-card:hover {
  transform: translateY(-1px);
  background: #e9e9e9;
}

.topic-card.is-active {
  background: #111111;
  color: #ffffff;
}

.topic-card.is-active strong {
  color: #ffffff;
}

.topic-card.is-active span {
  color: rgba(255, 255, 255, 0.76);
}

.topic-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.topic-card span {
  display: block;
  margin-top: 8px;
  color: #626262;
  font-size: 13px;
  font-weight: 600;
}

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

.guest-card {
  min-height: 236px;
  padding: 24px 18px 18px;
  border: 1px solid #dedede;
  border-radius: 6px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  background: #ffffff;
}

.guest-avatar {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  overflow: hidden;
  background: #dddddd;
}

.guest-card h3 {
  margin: 14px 0 0;
  color: #111111;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.guest-card p {
  margin-top: 8px;
  color: #666666;
  font-size: 13px;
  font-weight: 600;
}

.guest-card span {
  width: min(100%, 180px);
  min-height: 34px;
  margin-top: 16px;
  border: 1px solid #d40000;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d40000;
  font-size: 13px;
  font-weight: 900;
}

.quick-clips-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.quick-clip-card {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 9px;
  scroll-snap-align: start;
}

.quick-clip-thumb {
  aspect-ratio: 16 / 9;
}

.quick-clip-card p {
  color: #111111;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.most-watched-list {
  width: min(900px, 100%);
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
  counter-reset: watched;
}

.watched-row {
  counter-increment: watched;
  display: grid;
  grid-template-columns: 56px 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
}

.watched-row::before {
  content: counter(watched);
  color: #080808;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.watched-thumb {
  aspect-ratio: 16 / 9;
}

.watched-copy {
  display: grid;
  gap: 5px;
}

.watched-copy h3 {
  margin: 0;
  color: #111111;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.video-page-newsletter {
  padding: 28px 0 46px;
}

.video-newsletter-panel {
  padding: 34px 24px;
  border-radius: 7px;
  background: #f3f3f3;
  text-align: center;
}

.video-newsletter-panel h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.video-newsletter-panel p {
  margin: 12px auto 0;
  color: #303030;
  font-size: 14px;
  line-height: 1.5;
}

.video-newsletter-form {
  width: min(460px, 100%);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.video-newsletter-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.video-newsletter-form input {
  min-height: 42px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 0 14px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 14px;
}

.video-newsletter-form button {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  padding: 0 18px;
  background: #d40000;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.video-newsletter-status {
  font-weight: 700;
}

.video-empty-state {
  padding: 22px;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: #fafafa;
  color: #333333;
}

@media (max-width: 980px) {
  .video-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .latest-video-grid,
  .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clips-shorts-grid {
    grid-template-columns: 1fr;
  }

  .story-row,
  .story-video-card,
  .story-article-card {
    grid-template-columns: 1fr;
  }

  .story-row.is-flipped .story-video-card,
  .story-row.is-flipped .story-article-card {
    order: initial;
  }
}

@media (max-width: 640px) {
  .video-page-container {
    width: min(100% - 28px, 1120px);
  }

  .video-page-hero {
    padding-top: 22px;
  }

  .video-hero-copy h1 {
    font-size: clamp(32px, 12vw, 44px);
  }

  .latest-video-grid,
  .guest-grid,
  .topic-grid,
  .mini-video-grid {
    grid-template-columns: 1fr;
  }


  .video-section-head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .quick-clips-track {
    grid-auto-columns: minmax(152px, 72vw);
  }

  .watched-row {
    grid-template-columns: 40px 94px minmax(0, 1fr);
    gap: 12px;
  }

  .watched-row::before {
    font-size: 32px;
  }

  .video-newsletter-form {
    grid-template-columns: 1fr;
  }
}
