.banner-section .img img,
.banner-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.banner-section > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner-button {
  display: flex;
  gap: 8px;
  margin-top: var(--space-lg, 24px);
}
.banner-section .description * {
  color: var(--color-foreground-on-inverse-active, #FFFFFF);
  margin-bottom: 0;
}
@media only screen and (min-width: 961px) {
  .banner-section {
    padding: var(--space-3xl, 64px) 0 48px;
  }
  .banner-section > div {
    min-height: 562px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .banner-section .img {
    width: 82%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .banner-section-text,
  .content-bottom {
    z-index: var(--z-index-z-dropdown, 1);
  }
  .banner-section > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 4, 20, 0) 72.16%, #010414 100%);
    pointer-events: none;
    z-index: var(--z-index-z-dropdown);
  }
  .banner-section > div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(1, 4, 20, 1) 17%, rgba(237, 221, 83, 0.01) 100%);
  }
  .squeeze-width {
    width: 45%;
    gap: var(--space-sm, 8px);
  }
}
@media only screen and (max-width: 960px) {
  .banner-section {
    padding: var(--space-2xl, 40px) 0;
  }
  .banner-section {
    background-color: var(--color-background-inverse-neutral, #010414);
  }
  .banner-section > div {
    min-height: 617px;
  }
  .content-bottom p {
    margin-bottom: var(--space-lg, 24px);
  }
  .banner-section .img {
    margin: var(--space-lg, 24px) 0 var(--space-md, 16px);
  }
  .banner-button {
    margin-top: var(--space-md, 16px);
  }
}
