/* ==========================================================================
   Bonus banner block (home page)
   ========================================================================== */

.bonus-banner {
  position: relative;
  isolation: isolate;
  margin-top: var(--space-section);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.bonus-banner__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 200px;
}

.bonus-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ratio matches source exactly: nothing is cropped */
}

.bonus-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.35) 0%, rgba(19, 19, 19, 0.85) 100%);
}

.bonus-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding-block: 1rem;
}

.bonus-banner__kicker {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  color: var(--color-white);
  text-transform: uppercase;
}

.bonus-banner__amount {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
