.bonus-mosaic {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.bonus-top-band {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

.bonus-top-band .text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-top-band h1 {
  font-weight: 200;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 16px;
}

.bonus-top-band .intro {
  color: var(--muted);
  font-size: 16px;
  line-height: var(--feel-airy);
}

.bonus-img-col {
  flex: 0 0 340px;
  max-width: 100%;
  overflow: hidden;
}

.bonus-img-col img {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--style-ios-like);
  border: 1px solid var(--glass-border);
  display: block;
}

.bonus-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bonus-col h2 {
  font-weight: 300;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.bonus-col p {
  color: var(--muted);
  font-size: 15px;
  line-height: var(--feel-airy);
  margin-bottom: 16px;
}

.bonus-col ul {
  color: var(--muted);
  margin: 0 0 16px 20px;
  font-size: 14px;
}

.bonus-col li {
  margin-bottom: 8px;
}

.wagering-callout {
  grid-column: 1 / -1;
  padding: 32px;
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.08) 0%, rgba(163, 230, 53, 0.06) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: var(--effect-glassmorphism);
  -webkit-backdrop-filter: var(--effect-glassmorphism);
}

.wagering-callout h2 {
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}

.wagering-callout p {
  color: var(--muted);
  font-size: 15px;
  line-height: var(--feel-airy);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .bonus-top-band {
    flex-direction: column;
  }

  .bonus-img-col {
    flex: none;
    max-width: 100%;
  }

  .bonus-img-col img {
    max-height: 240px;
  }

  .bonus-mosaic {
    overflow-x: hidden;
  }
}
