/* ==========================================================================
   Bonus banner block. Pinned to the image's own ratio (1360:370) like the
   hero, with a small min-height floor so the overlaid eyebrow/amount/CTA
   never gets clipped on very narrow phones. On mobile the image is just
   decorative background — object-fit switches to cover so it always fills
   the box completely, cropping whatever doesn't fit.
   ========================================================================== */
.bonus-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1360 / 370;
  min-height: clamp(8.5rem, 20vw, 9rem);
  background: var(--color-bg-dark);
  overflow: hidden;
  margin-top: var(--space-section);
  border-radius: var(--radius-card-sm);
}

.bonus-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .bonus-banner__bg {
    object-fit: cover;
  }
}

.bonus-banner__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 50% 50%, rgba(13, 30, 33, 0.15) 0%, rgba(13, 30, 33, 0) 100%);
}

.bonus-banner__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding-block: 0.5rem;
}

.bonus-banner__eyebrow {
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  font-size: clamp(0.7rem, 0.6rem + 0.5vw, 1rem);
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bonus-banner__amount {
  color: var(--color-accent-light);
  font-weight: var(--font-weight-extrabold);
  font-size: clamp(1rem, 0.75rem + 1.4vw, 2rem);
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.bonus-banner .btn {
  padding: 0.55rem 1.25rem;
  font-size: clamp(0.7rem, 0.65rem + 0.35vw, 0.9375rem);
}

@media (min-width: 768px) {
  .bonus-banner .btn {
    padding: 0.9rem 1.75rem;
    font-size: var(--font-size-base);
  }
}
