.offer-terms-page .site-header {
  grid-template-columns: 1fr auto 1fr;
}

.terms-header-label {
  color: #657078;
  font-size: 13px;
  font-weight: 760;
}

.offer-terms-main {
  width: min(1180px, calc(100vw - 40px));
  margin: 18px auto 110px;
}

.terms-hero {
  padding: clamp(44px, 7vw, 90px);
  background: var(--white);
  border: 1px solid rgba(23, 36, 44, .1);
  border-radius: var(--radius-lg);
}

.terms-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.3vw, 88px);
  line-height: .95;
}

.terms-hero > p:not(.eyebrow) {
  max-width: 720px;
  color: #576269;
  font-size: 19px;
}

.terms-hero > span {
  color: #657078;
  font-size: 13px;
  font-weight: 720;
}

.terms-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 20px;
  align-items: start;
}

.terms-summary {
  position: sticky;
  top: 20px;
  padding: 27px;
  background: var(--lime);
  border-radius: 26px;
}

.terms-summary > strong {
  display: block;
  margin-bottom: 20px;
  font-size: 22px;
}

.terms-summary dl {
  margin: 0;
}

.terms-summary dl div {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(23, 36, 44, .24);
}

.terms-summary dt {
  color: rgba(23, 36, 44, .7);
}

.terms-summary dd {
  margin: 0;
  font-weight: 820;
  text-align: right;
}

.terms-copy {
  padding: clamp(34px, 5vw, 70px);
  background: var(--white);
  border: 1px solid rgba(23, 36, 44, .1);
  border-radius: 34px;
}

.terms-copy section {
  max-width: 780px;
  padding: 0 0 42px;
}

.terms-copy section + section {
  padding-top: 42px;
  border-top: 1px solid rgba(23, 36, 44, .15);
}

.terms-copy section:last-child {
  padding-bottom: 0;
}

.terms-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.terms-copy p,
.terms-copy li {
  color: #4f5b62;
}

.terms-copy ul {
  padding-left: 22px;
}

.terms-copy li + li {
  margin-top: 9px;
}

.terms-copy a {
  color: var(--ink);
  font-weight: 740;
}

@media (max-width: 820px) {
  .offer-terms-page .site-header {
    grid-template-columns: 1fr auto;
  }

  .terms-header-label {
    display: none;
  }

  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .offer-terms-main {
    width: calc(100vw - 20px);
  }

  .terms-hero,
  .terms-copy {
    padding: 31px 22px;
    border-radius: 28px;
  }
}

