.banner-component {
  margin-bottom: 44px;
  padding: 0 15px;
  position: relative;

  @media (min-width: 992px) {
    padding-left: 20px;
  }
}

.banner-component__media {
  position: relative;
  margin-bottom: 16px;
}

.banner-component__media img,
.banner-component__media video {
  object-fit: cover;
  width: 100%;
}

.banner-component__content {
  display: flex;
  flex-direction: column;

  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.banner-component__title {
  color: inherit;
  font-size: clamp(1rem,5vw + 2rem,7rem);
  line-height: normal;
  position: relative;
  text-align: center;
}

.banner-component__media:has(img, video, iframe) .banner-component__title {
  color: #fff;
  left: 50%;
  max-width: 80%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.banner-component__media:has(img, video, iframe) .banner-component__link a {
  background: #D6001C;
  color: #fff;
  font-size: clamp(1rem,5vw + 2rem,2rem);
  font-weight: 700;
  left: 50%;
  padding: 10px 15px;
  position: absolute;
  text-transform: uppercase;
  top: 80%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.banner-component__subheader {
  padding: 15px 15px 0 0;
  width: 100%;

  @media (min-width: 768px) {
    width: 25%;
  }
}

.banner-component__description {
  font-size: 20px;
  line-height: 28px;
  width: 100%;

  @media (min-width: 768px) {
    font-size: 20px;
    line-height: 28px;
    padding: 0 15px;
    width: 75%;
  }

  @media (min-width: 992px) {
    padding-left: 5px;
  }
}