:root {
  color-scheme: light;
  --ink: #000;
  --channel-ink: #1b1b1b;
  --muted: #606060;
  --accent: #e60000;
  --footer: #f4f4f4;
  --footer-copy: #bcb6b6;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/roboto.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

.main-section {
  min-height: 1111px;
  padding: 72px 14px 216px;
}

.page-container {
  width: min(100%, 1000px);
  margin: 0 auto;
  font-weight: 600;
}

.search-header {
  height: 60px;
  text-align: center;
}

.search-header img {
  width: 699px;
  height: 60px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 657px 322px;
  gap: 21px;
  margin-top: 50px;
}

.video-column {
  min-width: 0;
}

.desktop-spacer {
  min-height: 1px;
}

.player-mock {
  width: 400px;
  height: 611px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.player-headline {
  display: grid;
  height: 78px;
  margin: 0;
  place-content: center;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px;
  text-align: center;
}

.player-headline em {
  color: #f00;
  font-style: normal;
}

.player-headline u {
  text-underline-offset: 2px;
}

.player-headline-mobile {
  display: none;
}

.player-preview {
  width: 400px;
  height: 533px;
  border-top: 2px solid #111;
  object-fit: cover;
}

.channel-block {
  display: grid;
  grid-template-columns: 325px 325px;
  gap: 8px;
  height: 32px;
  margin-top: 16px;
}

.channel-info {
  display: grid;
  grid-template-columns: 32px 128px 100px;
  gap: 0 32px;
  align-items: center;
}

.expert-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.channel-copy {
  display: grid;
  align-content: center;
}

.channel-copy strong {
  color: var(--channel-ink);
  font-size: 11px;
  line-height: 13px;
  white-space: nowrap;
}

.channel-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  white-space: nowrap;
}

.subscribe-pill {
  display: grid;
  width: 100px;
  height: 19px;
  align-self: center;
  border-radius: 64px;
  background: var(--channel-ink);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  place-content: center;
}

.action-strip {
  width: 292px;
  height: 30px;
  justify-self: end;
}

.notices {
  margin-top: 16px;
}

.notices p {
  margin: 0;
  font-size: 16px;
  line-height: 19px;
}

.expiry strong {
  color: var(--accent);
}

.site-footer {
  min-height: 203px;
  padding: 48px 0;
  background: var(--footer);
}

.footer-inner {
  width: min(calc(100% - 40px), 1140px);
  margin: 0 auto;
  text-align: center;
}

.disclaimer {
  min-height: 72px;
  margin: 0 0 16px;
  color: var(--footer-copy);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: #747474;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 700px) {
  .main-section {
    min-height: 944px;
    padding: 39px 4px 80px;
  }

  .page-container {
    width: 100%;
  }

  .search-header {
    height: auto;
  }

  .search-header img {
    width: 100%;
    height: auto;
  }

  .content-grid {
    display: block;
    margin-top: 50px;
  }

  .desktop-spacer {
    display: none;
  }

  .player-mock {
    width: 100%;
    height: auto;
  }

  .player-headline-desktop {
    display: none;
  }

  .player-headline-mobile {
    display: flex;
    min-height: 87px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 21px;
  }

  .player-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 533;
  }

  .channel-block {
    display: flex;
    height: auto;
    margin-top: 16px;
    flex-direction: column;
    gap: 8px;
  }

  .channel-info {
    display: grid;
    min-height: 34px;
    grid-template-columns: 32px minmax(0, 1fr) 80px;
    gap: 0 20px;
    align-items: center;
  }

  .channel-copy strong {
    font-size: 16px;
    line-height: 19px;
  }

  .channel-copy span {
    padding-left: 8px;
    font-size: 12px;
    line-height: 18px;
  }

  .subscribe-pill {
    width: 80px;
    height: 26px;
    font-size: 12px;
  }

  .action-strip {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .notices {
    margin-top: 16px;
    text-align: center;
  }

  .notices .expiry {
    font-size: 16px;
    line-height: 19px;
  }

  .notices .viewers {
    font-size: 12px;
    line-height: 14px;
  }

  .site-footer {
    min-height: 172px;
    padding: 32px 0;
  }

  .footer-inner {
    width: 100%;
  }

  .disclaimer {
    min-height: 80px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 16px;
  }

  .legal-links {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
