.bonus-hero-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.bonus-hero-strip h1 {
  font-size: clamp(22px, 4vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  flex: 1;
}

.bonus-hero-img {
  flex-shrink: 0;
  width: 280px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
}

.bonus-hero-img img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.bonus-columns {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bonus-col h2 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.bonus-col p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}

.bonus-callout {
  grid-column: 1 / -1;
  padding: 28px;
  background: rgba(0, 53, 102, 0.2);
  border: 1px solid var(--border);
  text-align: center;
}

.bonus-callout p {
  font-size: 15px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bonus-hero-strip {
    flex-direction: column;
    text-align: center;
  }

  .bonus-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .bonus-hero-strip {
    padding: 40px 16px;
    overflow: hidden;
  }

  .bonus-hero-img {
    width: 100%;
    max-width: 100%;
  }

  .bonus-hero-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }
}
