/* ==========================================================================
   Block: bonus-banner
   Contained within the page container — same width as the surrounding
   text blocks, not a full-bleed section.
   ========================================================================== */
.bonus-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-card);
  background-color: var(--color-bg-dark);
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 220px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .bonus-banner {
    aspect-ratio: 3 / 1;
  }
}

.bonus-banner__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bonus-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 16, 12, 0.92) 0%, rgba(11, 16, 12, 0.55) 100%);
}

.bonus-banner__inner {
  width: 100%;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.75rem, 5vw, 3rem);
}

.bonus-banner__text {
  display: grid;
  gap: 0.5rem;
  text-align: center;
}

.bonus-banner__label {
  margin: 0;
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: var(--fs-small);
}

.bonus-banner__sum {
  margin: 0;
  color: var(--color-heading-accent);
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
}

.bonus-banner__note {
  margin: 0;
  color: var(--color-text-main);
}

.bonus-banner__cta {
  justify-self: center;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .bonus-banner__text {
    text-align: left;
  }

  .bonus-banner__cta {
    justify-self: start;
  }
}
