/* ==========================================================================
   Bonus banner block
   The card matches the width of the surrounding text block (it sits inside
   the page .container, not full-bleed). The image is a cover background
   filling that card, with the offer copy overlaid directly on top of it at
   every breakpoint, using a dark gradient scrim + text-shadow for legibility.
   ========================================================================== */

.bonus-banner {
  background: var(--color-bg-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 22rem;
}

.bonus-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.bonus-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 0, 24, 0.3) 0%, rgba(19, 0, 24, 0.85) 100%);
  z-index: 1;
}

.bonus-banner__content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.bonus-banner__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-small);
  color: var(--color-accent-yellow);
  font-weight: var(--fw-btn);
  margin-bottom: 0;
}

.bonus-banner__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  color: var(--color-heading-gold);
  margin-bottom: 0;
}

.bonus-banner__amount {
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  font-weight: var(--fw-heading);
  color: var(--color-white);
  margin-bottom: 0;
}

.bonus-banner__description {
  color: var(--color-white);
  max-width: 100%;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .bonus-banner {
    min-height: clamp(20rem, 26vw, 26rem);
  }
}
