.bonus-page-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px var(--page-padding);
}

.bonus-intro-band {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding: 32px;
  background: rgba(239, 225, 197, 0.5);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(16px);
}

.bonus-intro-band h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}

.bonus-intro-band img {
  border-radius: var(--soft-radius);
  max-width: 280px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.bonus-pull-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  padding: 28px 36px;
  margin: 32px 0;
  text-align: center;
  background: rgba(244, 235, 217, 0.6);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(12px);
}

.bonus-section h2 {
  font-size: 1.35rem;
  margin: 32px 0 14px;
  color: var(--accent);
}

.bonus-section p {
  margin-bottom: 16px;
}

.bonus-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.bonus-checklist li {
  padding: 16px 18px;
  background: rgba(141, 91, 62, 0.1);
  border-radius: var(--soft-radius);
  font-size: 14px;
  font-family: "Segoe UI", Arial, sans-serif;
}

@media (max-width: 768px) {
  .bonus-intro-band {
    grid-template-columns: 1fr;
    overflow-x: hidden;
    max-width: 100%;
  }

  .bonus-intro-band img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 240px;
  }

  .bonus-page-wrap {
    overflow-x: hidden;
    max-width: 100%;
  }
}
