.banner__content {
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  padding: 0 0 0 16px;
  text-align: left;
  transform: translateY(-50%);
  width: 76%;
  z-index: 2;
}

.banner__link {
  position: absolute;
  color: transparent;
  font-size: 12px;
  text-align: center;
  inset: 0;
  z-index: 60;
}

.banner__content h1 {
  font-size: 1.3rem;
  font-family: var(--f3);
  line-height: normal;
}

.banner__content h2 {
  display: none;
  font-size: 12px;
  line-height: 1.2;
}

.banner__poster {
  display: block;
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 329 / 130;
}

.banner__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__video {
  position: absolute;
  top: 0;
  left: -2px;
  width: 101%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 329 / 100;
  z-index: 1;
}

.banner__term {
  display: none;
  position: absolute;
  white-space: nowarp;
  bottom: 8px;
  right: 12px;
  color: var(--white);
  font-size: .8rem;
  line-height: normal;
}

@media screen and (min-width: 768px) {

  .banner__poster,
  .banner__video {
    aspect-ratio: 1163 / 130;
  }

  .banner--inferior  .banner__poster,
  .banner--inferior  .banner__video {
    aspect-ratio: 1108 / 150;
  }

  .banner__content {
    display: block;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    padding: 0px 20px;
    text-align: left;
    line-height: 1.2;
  }

  .banner__content h1 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    font-weight: normal;
    font-weight: 300;
  }

  .banner__content h2 {
    display: block;
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .banner__term {
    display: block;
  }

}