.offer-hero .page-hero-media {
  object-position: center 48%;
}

.offer-section {
  background: var(--paper);
}

.offer-heading {
  max-width: 780px;
}

.offer-tabs {
  display: grid;
  width: min(100%, 780px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 0 auto 3rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #e8e6df;
  padding: 4px;
}

.offer-tab {
  min-width: 0;
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  transition: background-color 180ms ease, color 180ms ease;
}

.offer-tab:hover {
  background: rgba(255, 255, 255, 0.72);
}

.offer-tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--white);
}

.offer-tab:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 2px;
}

.offer-panel[hidden] {
  display: none;
}

.offer-panel-heading {
  display: grid;
  max-width: 760px;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.offer-panel-heading .eyebrow {
  margin: 0;
}

.offer-panel-heading h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.02;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  display: flex;
  min-width: 0;
  min-height: 29rem;
  flex-direction: column;
  gap: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.65rem;
  box-shadow: 0 10px 30px rgba(27, 44, 35, 0.06);
}

.offer-card:nth-child(2) {
  border-top: 4px solid var(--wine);
}

.offer-card-label {
  margin: 0;
  color: var(--wine);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-card h4 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.08;
}

.offer-card > p:not(.offer-card-label) {
  margin: 0;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
}

.offer-list {
  display: grid;
  gap: 0.72rem;
  margin: auto 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.88rem;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 1.15rem;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--wine);
}

.offer-action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.offer-process {
  background: var(--ink);
  color: var(--white);
}

.offer-process .section-heading {
  max-width: 780px;
}

.offer-process .eyebrow {
  color: #efc7c8;
}

.offer-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.offer-process-grid article {
  display: grid;
  gap: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  padding-top: 1.25rem;
}

.offer-process-grid span {
  color: #efc7c8;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.offer-process-grid h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
}

.offer-process-grid p {
  margin: 0;
  color: #d6ded8;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .offer-tabs {
    margin-bottom: 2rem;
  }

  .offer-tab {
    min-height: 64px;
    padding: 0.55rem 0.35rem;
    font-size: 0.72rem;
  }

  .offer-panel-heading h3 {
    font-size: 2.25rem;
  }

  .offer-grid,
  .offer-process-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .offer-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

  .offer-process-grid {
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-tab {
    transition: none;
  }
}
