.offers-hero {
  padding-top: var(--space-16);
}

.offers-hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.offers-hero__lead {
  max-width: 34rem;
}

.offers-hero__actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.offers-hero__highlight {
  margin-left: auto;
  max-width: 26rem;
}

.offers-hero__bullets {
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  padding-left: 0;
}

.offers-hero__bullets li {
  position: relative;
  padding-left: 1.3rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.offers-hero__bullets li + li {
  margin-top: 0.4rem;
}

.offers-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.offers-hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.offers-hero__link,
.offers-card__link,
.offers-notice__link {
  font-size: var(--font-size-sm);
}

.offers-grid__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.offers-grid__header-cta {
  flex-shrink: 0;
}

.offers-grid__cards {
  align-items: stretch;
}

.offers-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offers-card__label-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-3);
}

.offers-card__title {
  margin-bottom: var(--space-2);
}

.offers-card__text {
  font-size: var(--font-size-sm);
}

.offers-card__list {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  padding-left: 0;
}

.offers-card__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.offers-card__list li + li {
  margin-top: 0.3rem;
}

.offers-card__list li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(228, 184, 104, 0.85);
}

.offers-card__media {
  margin-bottom: var(--space-4);
}

.offers-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}

.offers-notice {
  padding-top: var(--space-8);
  padding-bottom: var(--space-12);
}

.offers-notice__actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 1024px) {
  .offers-hero__container {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }

  .offers-hero__highlight {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .offers-hero {
    padding-top: var(--space-12);
  }

  .offers-hero__container {
    grid-template-columns: 1fr;
  }

  .offers-hero__highlight {
    order: -1;
  }

  .offers-grid__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .offers-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .offers-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .offers-notice__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
