:root {
  --page-intro-headline-2-font-size: clamp(11px, calc( 0.6875rem + ((1vw - 4px) * 0.8152)), 14px); /* 400-768 */
  --page-intro-headline-2-line-height: 23px;
}

/* Section */
body #app .page-intro {
  background: none;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  inline-size: 100%;
  min-block-size: 600px;
  position: relative;
}
@media (max-width: 991px) {
  body #app .page-intro {
    background: url('/tv-embrace/image/bg-page-intro.avif') no-repeat 85% 0;
    margin-block-end: -10px;
    transform: translateY(-10px);
  }
}


/* Video */
body #app page-intro-video {
  display: block;
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: -1;
}
body #app page-intro-video video {
  block-size: calc( 100% + 120px );
  display: inline-block;
  inline-size: 100%;
  margin: -120px auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  body #app page-intro-video {
    display: none;
  }
}


/* Content */
body #app page-intro-content {
  background-color: rgba(0 0 0 / .5);
  block-size: 100%;
  color: var(--tv-embrace-white);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body #app page-intro-content-inner {
  display: block;
  padding-inline: var(--tv-embrace-gutter);
  text-align: center;
}
body #app page-intro-content h1 {
  color: var(--tv-embrace-white);
  font-family: 'Gotham', sans-serif;
  font-size: var(--tv-embrace-headline-1-font-size);
  font-weight: 300;
  line-height: var(--tv-embrace-headline-1-line-height);
  margin: 0 0 var(--tv-embrace-gap-1);
}
body #app page-intro-content h2 {
  color: var(--tv-embrace-white);
  font-family: 'Gotham', sans-serif;
  font-size: var(--page-intro-headline-2-font-size);
  font-weight: 300;
  letter-spacing: 2px;
  line-height: var(--page-intro-headline-2-line-height);
  margin: 0 0 var(--tv-embrace-gap-1);
  padding: 0;
  text-transform: uppercase;
}
body #app page-intro-content h2:after {
  display: none;
}