:root {
  --yhv-navy: #071b2f;
  --yhv-panel: #10263b;
  --yhv-card: #101c28;
  --yhv-blue: #1769ff;
  --yhv-light-blue: #72a6ff;
  --yhv-white: #f5f8fb;
  --yhv-muted: #b8c6d3;
  --yhv-border: rgba(159, 178, 196, .2);
}

.yhv-watch,
.yhv-home-hub,
.yhv-article-video {
  box-sizing: border-box;
  font-family: Mulish, Arial, sans-serif;
}

.yhv-watch *,
.yhv-home-hub *,
.yhv-article-video *,
.yhv-entertainment *,
.yhv-single *,
.yhv-submit-form * {
  box-sizing: border-box;
}

.yhv-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.yhv-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #000;
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.yhv-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .62));
}

.yhv-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.yhv-branded-poster {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 72% 22%, rgba(23, 105, 255, .55), transparent 34%),
    linear-gradient(145deg, #173b5d, #07111b);
}

.yhv-branded-poster strong {
  font-size: clamp(42px, 9vw, 88px);
  font-weight: 950;
  letter-spacing: -.08em;
}

.yhv-branded-poster small {
  color: var(--yhv-light-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.yhv-poster:hover img {
  transform: scale(1.02);
}

.yhv-play-icon {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: var(--yhv-blue);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  transform: translate(-50%, -50%);
}

.yhv-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
  transform: translate(-42%, -50%);
}

.yhv-play-label {
  z-index: 2;
  position: absolute;
  right: 17px;
  bottom: 15px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.yhv-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.yhv-button,
.yhv-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 17px;
  color: #fff !important;
  background: var(--yhv-blue);
  border: 1px solid var(--yhv-blue);
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
  cursor: pointer;
}

.yhv-button--secondary {
  color: var(--yhv-white) !important;
  background: transparent;
  border-color: rgba(255, 255, 255, .32);
}

.yhv-button--small {
  min-height: 38px;
  padding: 10px 13px;
  font-size: 11px;
}

.yhv-section-header {
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
}

.yhv-section-header p,
.yhv-home-copy > p,
.yhv-watch-intro > p,
.yhv-watch-hero-copy > p,
.yhv-card-copy > p,
.yhv-lower-cta p,
.yhv-article-video-copy > p {
  margin: 0 0 7px !important;
  color: var(--yhv-light-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.15;
  text-transform: uppercase;
}

.yhv-section-header h2 {
  margin: 0 !important;
  color: var(--yhv-white);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: .98;
  text-transform: uppercase;
}

.yhv-home-hub.yh-video-hub {
  width: calc(100% - 40px) !important;
  max-width: 1140px !important;
  margin: 56px auto 24px !important;
  padding: 30px !important;
  color: var(--yhv-white);
  background: var(--yhv-navy);
  border-top: 5px solid var(--yhv-blue);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(11, 34, 57, .18);
}

.yhv-home-hub .yhv-section-header {
  margin-bottom: 22px;
}

.yhv-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, .75fr);
  gap: 22px;
}

.yhv-home-feature {
  overflow: hidden;
  background: var(--yhv-card);
  border-radius: 6px;
}

.yhv-home-copy {
  padding: 20px 22px 23px;
}

.yhv-home-copy h3 {
  margin: 0 !important;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.yhv-home-copy h3 a {
  color: #fff !important;
  text-decoration: none !important;
}

.yhv-home-copy > span {
  display: block;
  margin-top: 10px;
  color: var(--yhv-muted);
  font-size: 14px;
  line-height: 1.45;
}

.yhv-home-copy > a {
  display: inline-block;
  margin-top: 15px;
  color: var(--yhv-light-blue) !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
  text-transform: uppercase;
}

.yhv-home-playlist {
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  gap: 10px;
}

.yhv-home-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 10px;
  color: #fff;
  text-align: left;
  background: #17334d;
  border: 1px solid var(--yhv-border);
  border-radius: 5px;
  cursor: pointer;
}

.yhv-home-card.is-active {
  background: #1a3d61;
  border-color: var(--yhv-blue);
}

.yhv-home-card img {
  width: 112px;
  height: 68px;
  object-fit: cover;
  border-radius: 3px;
}

.yhv-home-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--yhv-light-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.yhv-home-card strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.yhv-watch-page main {
  max-width: none !important;
  min-height: 70vh;
  padding-right: 0 !important;
  padding-left: 0 !important;
  color: var(--yhv-white);
  background: #07111b;
}

body.yhv-videos-page main,
body.yhv-submit-page main,
body.yhv-video-single main {
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  color: var(--yhv-white);
  background: #07111b;
}

body.yhv-videos-page main .wp-block-post-title,
body.yhv-submit-page main .wp-block-post-title,
body.yhv-video-single main .wp-block-post-title {
  display: none !important;
}

.yhv-entertainment,
.yhv-single,
.yhv-submit-form {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 72px;
  font-family: Mulish, Arial, sans-serif;
}

.yhv-entertainment__intro,
.yhv-single > header {
  max-width: 850px;
  margin-bottom: 28px;
}

.yhv-entertainment__intro > p,
.yhv-entertainment__hero > div > p,
.yhv-entertainment-card > div > p,
.yhv-single > header > p,
.yhv-video-submit-cta p,
.yhv-kicker {
  margin: 0 0 7px;
  color: var(--yhv-light-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.yhv-entertainment__intro h1,
.yhv-single > header h1,
.yhv-submit-form h1 {
  margin: 0 0 14px !important;
  color: #fff;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .92;
}

.yhv-entertainment__intro > span {
  display: block;
  max-width: 760px;
  color: var(--yhv-muted);
  font-size: 17px;
  line-height: 1.5;
}

.yhv-entertainment__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  overflow: hidden;
  margin-bottom: 30px;
  background: var(--yhv-panel);
  border-top: 5px solid var(--yhv-blue);
  border-radius: 8px;
}

.yhv-entertainment__hero > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.yhv-entertainment__hero h2,
.yhv-entertainment-card h2 {
  margin: 0 !important;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.yhv-entertainment__hero h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

.yhv-entertainment__hero h2 a,
.yhv-entertainment-card h2 a {
  color: #fff !important;
  text-decoration: none !important;
}

.yhv-entertainment__hero span,
.yhv-entertainment-card span {
  display: block;
  margin-top: 12px;
  color: var(--yhv-muted);
  line-height: 1.48;
}

.yhv-entertainment__hero small,
.yhv-entertainment-card small {
  display: block;
  margin-top: 14px;
  color: #8ea2b5;
}

.yhv-entertainment__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.yhv-entertainment__queue-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 4px 0 30px;
  padding: 24px 26px;
  background: rgba(16, 43, 68, .72);
  border: 1px solid var(--yhv-border);
  border-radius: 7px;
}

.yhv-entertainment__queue-note p {
  margin: 0 0 7px;
  color: var(--yhv-light-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.yhv-entertainment__queue-note h2 {
  margin: 0 !important;
  color: #fff;
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -.035em;
}

.yhv-entertainment__queue-note span {
  display: block;
  max-width: 670px;
  margin-top: 8px;
  color: var(--yhv-muted);
  line-height: 1.5;
}

.yhv-entertainment-card {
  overflow: hidden;
  background: var(--yhv-card);
  border: 1px solid var(--yhv-border);
  border-radius: 7px;
}

.yhv-entertainment-card[hidden] {
  display: none;
}

.yhv-entertainment-card > div:last-child {
  padding: 17px;
}

.yhv-entertainment-card h2 {
  font-size: 21px;
}

.yhv-entertainment-card span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.yhv-external-player {
  display: block;
  color: #fff !important;
  text-decoration: none !important;
}

.yhv-external-player > span:last-child {
  z-index: 2;
  position: absolute;
  right: 15px;
  bottom: 14px;
  padding: 8px 10px;
  background: var(--yhv-blue);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.yhv-video-submit-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
  padding: 28px;
  background: var(--yhv-panel);
  border: 1px solid var(--yhv-border);
  border-top: 4px solid var(--yhv-blue);
  border-radius: 7px;
}

.yhv-video-club-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
  padding: 28px;
  background:
    radial-gradient(circle at 85% 20%, rgba(23, 105, 255, .35), transparent 32%),
    var(--yhv-panel);
  border: 1px solid rgba(114, 166, 255, .35);
  border-radius: 7px;
}

.yhv-video-club-cta p {
  margin: 0 0 7px;
  color: var(--yhv-light-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.yhv-video-club-cta h2 {
  margin: 0 0 8px !important;
  color: #fff;
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -.035em;
}

.yhv-video-club-cta span {
  color: var(--yhv-muted);
  line-height: 1.5;
}

.yhv-video-submit-cta h2,
.yhv-single__more h2 {
  margin: 0 0 8px !important;
  color: #fff;
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -.035em;
}

.yhv-video-submit-cta span {
  color: var(--yhv-muted);
  line-height: 1.5;
}

.yhv-single {
  max-width: 900px;
}

.yhv-single__context {
  margin: 28px auto 16px;
  color: #e6edf3;
  font-size: 18px;
  line-height: 1.7;
}

.yhv-single__credit {
  padding: 15px 0;
  color: var(--yhv-muted);
  border-top: 1px solid var(--yhv-border);
  border-bottom: 1px solid var(--yhv-border);
}

.yhv-single__credit a {
  color: var(--yhv-light-blue) !important;
}

.yhv-related-story {
  display: grid;
  gap: 5px;
  margin: 24px 0;
  padding: 20px;
  color: #fff !important;
  background: var(--yhv-panel);
  border-left: 4px solid var(--yhv-blue);
  text-decoration: none !important;
}

.yhv-related-story span {
  color: var(--yhv-light-blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.yhv-single__more {
  margin-top: 42px;
}

.yhv-single__more > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.yhv-single__more a {
  overflow: hidden;
  color: #fff !important;
  background: var(--yhv-card);
  border-radius: 6px;
  text-decoration: none !important;
}

.yhv-single__more img,
.yhv-single__more .yhv-branded-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.yhv-single__more strong {
  display: block;
  padding: 14px;
}

.yhv-submit-form {
  max-width: 760px;
}

.yhv-submit-form > p {
  color: var(--yhv-muted);
  font-size: 17px;
  line-height: 1.55;
}

.yhv-submit-form form {
  display: grid;
  gap: 17px;
  margin-top: 28px;
  padding: 25px;
  color: #102235;
  background: #fff;
  border-radius: 8px;
}

.yhv-submit-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.yhv-submit-form input,
.yhv-submit-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #aebdcc;
  border-radius: 4px;
  font: inherit;
}

.yhv-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.yhv-submit-form .yhv-submit-rights {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.yhv-submit-form .yhv-submit-rights input {
  width: auto;
  margin-top: 4px;
}

.yhv-submit-success {
  margin: 20px 0;
  padding: 15px;
  color: #173b25;
  background: #e8f7ed;
  border: 1px solid #86c598;
  border-radius: 5px;
}

body.yhv-watch-page main .wp-block-post-title {
  display: none !important;
}

.yhv-watch {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 70px;
  color: var(--yhv-white);
}

.yhv-watch-intro {
  max-width: 790px;
  margin-bottom: 30px;
}

.yhv-watch-intro h1 {
  margin: 0 0 14px !important;
  color: #fff;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .92;
  text-transform: uppercase;
}

.yhv-watch-intro > span {
  display: block;
  max-width: 680px;
  color: var(--yhv-muted);
  font-size: 17px;
  line-height: 1.5;
}

.yhv-watch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  overflow: hidden;
  margin-bottom: 56px;
  background: var(--yhv-panel);
  border-top: 5px solid var(--yhv-blue);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
}

.yhv-watch-stage {
  min-height: 100%;
}

.yhv-watch-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.yhv-watch-hero-copy h2 {
  margin: 0 !important;
  color: #fff;
  font-size: clamp(26px, 3.5vw, 43px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
}

.yhv-watch-hero-copy > span {
  display: block;
  margin-top: 13px;
  color: var(--yhv-muted);
  font-size: 15px;
  line-height: 1.5;
}

.yhv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.yhv-watch-latest {
  margin-bottom: 54px;
}

.yhv-watch-latest > .yhv-section-header {
  margin-bottom: 20px;
}

.yhv-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.yhv-filters button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 13px;
  color: var(--yhv-muted);
  background: #10263b;
  border: 1px solid var(--yhv-border);
  border-radius: 999px;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.yhv-filters button.is-active {
  color: #fff;
  background: var(--yhv-blue);
  border-color: var(--yhv-blue);
}

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

.yhv-video-card {
  overflow: hidden;
  background: var(--yhv-card);
  border: 1px solid var(--yhv-border);
  border-radius: 7px;
  transition: border-color .18s ease, transform .18s ease;
}

.yhv-video-card:hover,
.yhv-video-card:focus-within {
  border-color: rgba(114, 166, 255, .58);
}

.yhv-video-card[hidden] {
  display: none !important;
}

.yhv-card-copy {
  padding: 17px;
}

.yhv-card-copy h3 {
  margin: 0 !important;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.yhv-card-copy h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

.yhv-card-copy h3 a:hover,
.yhv-card-copy h3 a:focus-visible {
  color: var(--yhv-light-blue) !important;
}

.yhv-card-copy > span {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  color: var(--yhv-muted);
  font-size: 13px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.yhv-card-copy .yhv-actions {
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.yhv-card-copy .yhv-actions a,
.yhv-text-button {
  min-height: 44px;
  padding: 10px 2px;
  color: var(--yhv-light-blue) !important;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none !important;
  text-transform: uppercase;
}

.yhv-card-copy .yhv-actions a {
  display: inline-flex;
  align-items: center;
}

.yhv-lower-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
  padding: 28px;
  background: var(--yhv-panel);
  border: 1px solid var(--yhv-border);
  border-radius: 7px;
}

.yhv-lower-cta--insider {
  border-top: 4px solid var(--yhv-blue);
}

.yhv-lower-cta h2 {
  margin: 0 0 8px !important;
  color: #fff;
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.yhv-lower-cta div > span {
  color: var(--yhv-muted);
  font-size: 14px;
  line-height: 1.45;
}

.yhv-article-video {
  max-width: 820px;
  margin: 28px auto 34px;
  overflow: hidden;
  color: var(--yhv-white);
  background: var(--yhv-panel);
  border: 1px solid rgba(114, 166, 255, .28);
  border-top: 4px solid var(--yhv-blue);
  border-radius: 7px;
}

.yhv-article-video-copy {
  padding: 20px 22px;
}

.yhv-article-video-copy h2 {
  margin: 0 0 8px !important;
  color: #fff;
  font-size: clamp(24px, 4vw, 34px) !important;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.yhv-article-video-copy > span {
  display: block;
  color: var(--yhv-muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .yhv-home-layout,
  .yhv-watch-hero,
  .yhv-entertainment__hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .yhv-home-playlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .yhv-entertainment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .yhv-play-icon {
    width: 58px;
    height: 58px;
  }

  .yhv-home-hub.yh-video-hub {
    width: calc(100% - 28px) !important;
    margin: 38px auto 20px !important;
    padding: 20px 14px 16px !important;
    border-radius: 6px;
  }

  .yhv-section-header {
    align-items: center;
  }

  .yhv-section-header h2 {
    font-size: 29px;
  }

  .yhv-home-hub .yhv-section-header .yhv-button {
    padding: 9px 10px;
    font-size: 9px;
  }

  .yhv-home-copy {
    padding: 17px;
  }

  .yhv-home-copy h3 {
    font-size: 23px;
  }

  .yhv-home-playlist {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .yhv-home-card {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 10px 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--yhv-border);
    border-radius: 0;
  }

  .yhv-home-card.is-active {
    background: rgba(23, 105, 255, .08);
  }

  .yhv-home-card img {
    width: 92px;
    height: 58px;
  }

  .yhv-watch {
    width: min(100% - 28px, 1120px);
    padding: 34px 0 48px;
  }

  .yhv-entertainment,
  .yhv-single,
  .yhv-submit-form {
    width: min(100% - 28px, 1120px);
    padding: 34px 0 50px;
  }

  .yhv-entertainment__intro h1,
  .yhv-single > header h1,
  .yhv-submit-form h1 {
    font-size: 43px;
  }

  .yhv-entertainment__hero > div:last-child {
    padding: 20px;
  }

  .yhv-entertainment__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .yhv-entertainment-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .yhv-entertainment-card.is-playing {
    grid-template-columns: 1fr;
  }

  .yhv-entertainment-card .yhv-player {
    width: 132px;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .yhv-entertainment-card.is-playing .yhv-player {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .yhv-entertainment-card h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .yhv-entertainment-card span,
  .yhv-entertainment-card small {
    display: none;
  }

  .yhv-video-submit-cta {
    grid-template-columns: 1fr;
    padding: 21px;
  }

  .yhv-video-submit-cta .yhv-button,
  .yhv-video-club-cta .yhv-button {
    width: 100%;
  }

  .yhv-video-club-cta {
    grid-template-columns: 1fr;
    padding: 21px;
  }

  .yhv-entertainment__queue-note {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .yhv-entertainment__queue-note .yhv-button {
    width: 100%;
  }

  .yhv-single__more > div {
    grid-template-columns: 1fr;
  }

  .yhv-submit-form form {
    padding: 18px;
  }

  .yhv-watch-intro {
    margin-bottom: 22px;
  }

  .yhv-watch-intro h1 {
    font-size: 44px;
  }

  .yhv-watch-intro > span {
    font-size: 15px;
  }

  .yhv-watch-hero {
    margin-bottom: 40px;
  }

  .yhv-watch-hero-copy {
    padding: 20px;
  }

  .yhv-watch-hero-copy h2 {
    font-size: 28px;
  }

  .yhv-video-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
  }

  .yhv-video-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .yhv-video-card.is-playing {
    grid-template-columns: minmax(0, 1fr);
  }

  .yhv-card-player {
    width: 132px;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .yhv-video-card.is-playing .yhv-card-player {
    width: 100%;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .yhv-card-copy {
    padding: 13px;
  }

  .yhv-card-copy h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .yhv-card-copy > span {
    -webkit-line-clamp: 2;
  }

  .yhv-card-copy .yhv-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
  }

  .yhv-card-copy .yhv-actions a,
  .yhv-card-copy .yhv-actions button {
    width: 100%;
    min-height: 42px;
    padding: 8px 6px;
    justify-content: center;
    text-align: center;
    background: #17334d;
    border: 1px solid rgba(114, 166, 255, .25);
    border-radius: 4px;
  }

  .yhv-card-copy .yhv-actions button {
    color: #fff !important;
    background: var(--yhv-blue);
    border-color: var(--yhv-blue);
  }

  .yhv-lower-cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .yhv-lower-cta .yhv-button {
    width: 100%;
  }

  .yhv-article-video {
    margin: 24px 0 30px;
  }

  .yhv-article-video-copy {
    padding: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yhv-poster img {
    transition: none;
  }
}
