/*
 * teasers.css — Build H-8: Gift Teaser + Enterprise Teaser
 */

/* ── Gift Teaser ── */
.section-gift {
  background: var(--color-gold-tint);
  padding: 100px 0;
}

.gift-inner {
  max-width: 640px;
}

/* ── Enterprise Teaser ── */
.section-enterprise {
  background: var(--color-near-black);
  padding: 100px 0;
}

.enterprise-inner {
  max-width: 640px;
}

.section-enterprise .section-headline {
  color: var(--color-off-white);
}

.section-enterprise .body-text {
  color: rgba(250, 249, 246, 0.75);
  margin-top: 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .section-gift,
  .section-enterprise {
    padding: 80px 0;
  }
}
