.banner {
  width: 100%;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner picture {
  display: block;
  position: relative;
}

.banner__video {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .banner__video--desktop {
    display: block;
    max-width: 1160px;
    margin: 0 auto;
  }

  .banner__video--mobile {
    display: none;
  }

  .overlay-activate {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .banner__video--mobile {
    display: block;
    max-width: 360px;
    margin: 0 auto;
  }

  .banner__video--desktop,
  .banner__overlay {
    display: none !important;
  }

  .banner-btn {
    margin-top: 0 !important;
  }

}

/* Overlay styles */
.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 15px 27px 15px 37px;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}


.overlay-right {
  margin-left: auto;
}

.overlay-left {
  color: #fff;
  margin-top: 28px;
}

.overlay-title {
  font-size: 1.6rem;
}

.banner-btn-wrapper {
  position: absolute;
  top: 50px;
  right: 32px;
  left: auto;
  width: auto;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
  pointer-events: none;
}

.banner picture {
  z-index: 0;
  position: relative;
}

.banner-btn {
  display: inline-block;
  background: #066FCB;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  padding: 5px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  text-align: center;
  pointer-events: auto;
  min-width: 145px;
}

.banner-btn:hover {
  background: #0558a0;
}

.banner picture img {
  border-radius: 18px;
  display: block;
  width: 100%;
  height: auto;
}

.copy-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.copy-mobile p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #383838;
  margin-bottom: 12px;
  line-height: normal;
}

.copy-mobile .banner-btn {
  margin-bottom: 20px;
}

.overlay-center {
  color: white;
  line-height: normal;
}

.overlay-center-mb {
  position: absolute;
  align-items: center;
  text-align: left;
  line-height: normal;
  color: white;
  font-size: 12px;
  top: 56%;
  transform: translate(-32%, -50%);
  z-index: 2;
}

.price-pill {
  background-color: #019DF4;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}

.price-pill-mb {
  background-color: #019DF4;
  width: fit-content;
  padding: 4px 7px;
  border-radius: 6px;
  font-size: 11px;
  margin-top: 5px;
}

@media (min-width: 767px) {

  .copy-mobile,
  .overlay-center-mb {
    display: none;
  }

  .banner-btn-wrapper {
    top: 65px;
    right: 70px;
  }
}

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

  .banner {
    margin: 25px auto;
  }

  .banner__overlay {
    gap: 42px;
    padding: 10px 42px;
  }

  .overlay-title {
    font-size: 17px;
    line-height: 1.15;
  }

  .overlay-activate {
    font-size: 13px;
  }

  .price-pill {
    font-size: 9px;
    padding: 8px 16px;
  }

  .banner-btn {
    min-width: 85px;
    padding: 5px 14px;
    font-size: 10px;
  }
}

@media (min-width: 910px) and (max-width: 1093px) {

  .banner {
    margin: 25px auto;
  }

  .banner__overlay {
    gap: 70px;
    padding: 10px 52px;
  }

  .overlay-title {
    font-size: clamp(1rem, 2.2vw + .4rem, 1.5rem);
    line-height: 1.15;
  }

  .overlay-activate {
    font-size: 1.2rem;
  }

  .price-pill {
    font-size: 12px;
    padding: 8px 16px;
  }

  .banner-btn {
    min-width: 115px;
    padding: 5px 14px;
    font-size: 12px;
  }
}

@media (min-width: 885px) and (max-width: 911px) {

  .banner {
    margin: 25px auto;
  }

  .banner__overlay {
    gap: 70px;
    padding: 10px 45px;
  }

  .overlay-title {
    font-size: 17px;
    line-height: 1.15;
  }

  .overlay-activate {
    font-size: 15px;
  }

  .banner-btn {
    min-width: 100px;
    padding: 5px 14px;
    font-size: 10px;
  }
}