.promotions-page {
  background: #f5f7f4;
}

.promotions-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: clamp(100px, 15vw, 160px) clamp(18px, 6vw, 86px) 48px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 24, 40, 0.88), rgba(6, 24, 40, 0.36)),
    url("../assets/hero-generators.jpg") center / cover no-repeat;
}

.promotions-hero-copy {
  max-width: 820px;
}

.promotions-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.98;
}

.promotions-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  font-size: 19px;
}

.promotions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.promotion-status,
.promotion-products,
.promotion-terms {
  padding-left: clamp(18px, 6vw, 86px);
  padding-right: clamp(18px, 6vw, 86px);
}

.promotion-status {
  display: grid;
  align-items: center;
  gap: 22px;
  padding-top: 34px;
  padding-bottom: 34px;
  color: #fff;
  background: #0a2f4f;
}

.promotion-status-label {
  width: max-content;
  padding: 7px 10px;
  color: #18231f;
  background: #f7c948;
  font-size: 12px;
  font-weight: 900;
}

.promotion-status h2,
.promotion-status p {
  margin: 0;
}

.promotion-status h2 {
  margin-top: 4px;
  font-size: clamp(26px, 4vw, 42px);
}

.promotion-status p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.promotion-products {
  padding-top: 58px;
  padding-bottom: 66px;
}

.promotion-section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.promotion-section-heading h2,
.promotion-section-heading p {
  margin: 0;
}

.promotion-section-heading h2 {
  margin-top: 4px;
  font-size: clamp(30px, 4.5vw, 50px);
}

.promotion-section-heading > p {
  max-width: 600px;
  color: #5f6c68;
}

.promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.promotion-card {
  overflow: hidden;
  border: 1px solid #dfe6df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 32, 26, 0.08);
}

.promotion-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #edf3f0;
}

.promotion-card > div {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.promotion-card span {
  color: #12633f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promotion-card h3,
.promotion-card p {
  margin: 0;
}

.promotion-card h3 {
  font-size: 19px;
}

.promotion-card p {
  color: #5f6c68;
  font-size: 14px;
}

.promotion-card a {
  width: max-content;
  margin-top: 4px;
  color: #12633f;
  font-weight: 900;
}

.promotion-terms {
  display: grid;
  gap: 22px;
  padding-top: 40px;
  padding-bottom: 44px;
  color: #fff;
  background: #14231e;
}

.promotion-terms h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 42px);
}

.promotion-terms ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 780px) {
  .promotion-status {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .promotion-section-heading,
  .promotion-terms {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    align-items: end;
  }
}

@media (max-width: 640px) {
  .promotions-hero {
    min-height: 460px;
    padding-bottom: 28px;
  }

  .promotions-hero h1 {
    font-size: 44px;
  }

  .promotions-hero-actions .btn,
  .promotion-status .btn {
    width: 100%;
  }
}
