.policy-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.28fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 10rem);
  padding-block: clamp(6rem, 10vw, 10rem);
}

.policy-contents {
  position: sticky;
  top: 7.5rem;
}

.policy-contents h2 {
  color: var(--color-champagne-500);
  font-family: var(--font-brand);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-contents ol {
  display: grid;
  margin-top: 1.4rem;
  border-top: 1px solid rgb(213 179 106 / 18%);
}

.policy-contents a {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.8rem;
  padding-block: 0.9rem;
  color: rgb(242 234 221 / 52%);
  border-bottom: 1px solid rgb(213 179 106 / 14%);
  font-size: 0.75rem;
  line-height: 1.5;
  transition: color var(--duration-fast) var(--ease-standard);
}

.policy-contents a:hover,
.policy-contents a:focus-visible {
  color: var(--color-champagne-400);
}

.policy-contents a span {
  color: var(--color-champagne-500);
  font-family: var(--font-brand);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
}

.policy-document {
  min-width: 0;
}

.policy-section {
  position: relative;
  max-width: 52rem;
  padding: 0 0 clamp(4rem, 7vw, 6rem) 4.5rem;
  scroll-margin-top: 8.5rem;
}

.policy-section + .policy-section {
  padding-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid rgb(213 179 106 / 18%);
}

.policy-section__number {
  position: absolute;
  top: 0.35rem;
  left: 0;
  color: var(--color-champagne-500);
  font-family: var(--font-brand);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.policy-section + .policy-section .policy-section__number {
  top: calc(clamp(4rem, 7vw, 6rem) + 0.35rem);
}

.policy-section h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.05;
}

.policy-section__body {
  display: grid;
  gap: 1.2rem;
  max-width: 46rem;
  margin-top: 1.7rem;
  color: rgb(242 234 221 / 62%);
}

.policy-section__body p,
.policy-section__body li {
  overflow-wrap: anywhere;
}

.policy-section__body ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.policy-section__body li::marker {
  color: var(--color-champagne-500);
}

.policy-section__subsection {
  margin-top: 1.5rem;
}

.policy-section__subsection h3 {
  margin-bottom: 1rem;
  font-size: var(--text-heading-3);
}

.policy-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.8rem;
}

.policy-section__links a {
  overflow-wrap: anywhere;
}

@media (max-width: 899px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .policy-contents {
    position: static;
  }

  .policy-contents ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.5rem;
  }
}

@media (max-width: 539px) {
  .policy-contents ol {
    grid-template-columns: 1fr;
  }

  .policy-section {
    padding-left: 0;
  }

  .policy-section__number {
    position: static;
    display: block;
    margin-bottom: 1rem;
  }
}
