.policy-page {
  --policy-max: 1040px;
  background: #f8f9f4;
}

.policy-page .shell {
  width: min(calc(100% - 40px), var(--policy-max));
}

.policy-header {
  border-bottom: 1px solid var(--line);
  background: rgba(248, 249, 244, 0.92);
  backdrop-filter: blur(16px);
}

.policy-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.home-link span[aria-hidden="true"] {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.home-link:hover span[aria-hidden="true"] {
  transform: translateX(-3px);
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 72px;
  align-items: end;
  padding-block: 88px 76px;
}

.policy-heading .section-kicker {
  margin-bottom: 20px;
}

.policy-heading h1 {
  margin-bottom: 20px;
  font-size: 5.35rem;
  letter-spacing: 0;
}

.policy-date {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.local-note {
  position: relative;
  border-top: 1px solid var(--line-strong);
  padding: 26px 0 0 32px;
}

.local-note-mark {
  position: absolute;
  top: 32px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid #dfe8dd;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 1px var(--green-deep);
}

.local-note p {
  margin-bottom: 0;
  color: #31352f;
  font-size: 1.17rem;
  line-height: 1.8;
}

.policy-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 680px);
  justify-content: space-between;
  gap: 76px;
  border-top: 1px solid var(--line);
  padding-block: 72px 112px;
}

.policy-index {
  position: sticky;
  top: 32px;
  align-self: start;
}

.policy-index > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.policy-index nav {
  display: grid;
  border-left: 1px solid var(--line-strong);
}

.policy-index a {
  margin-left: -1px;
  border-left: 2px solid transparent;
  padding: 7px 0 7px 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.policy-index a:hover,
.policy-index a:focus-visible {
  border-left-color: var(--green-deep);
  color: var(--ink);
}

.policy-copy section {
  scroll-margin-top: 32px;
  padding-bottom: 58px;
}

.policy-copy section + section {
  border-top: 1px solid var(--line);
  padding-top: 58px;
}

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

.policy-copy h2 {
  margin-bottom: 24px;
  font-size: 1.72rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.policy-copy p {
  margin-bottom: 18px;
  color: #4f534d;
  font-size: 1.04rem;
  line-height: 1.9;
}

.policy-copy p:last-child {
  margin-bottom: 0;
}

.policy-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.policy-footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.policy-footer p {
  margin: 0;
  font-weight: 720;
}

.policy-footer a {
  color: var(--green-deep);
  font-weight: 700;
}

@media (max-width: 760px) {
  .policy-page .shell {
    width: min(calc(100% - 32px), var(--policy-max));
  }

  .policy-nav {
    min-height: 68px;
  }

  .policy-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 58px 54px;
  }

  .policy-heading h1 {
    font-size: 3.25rem;
  }

  .local-note {
    padding-top: 22px;
  }

  .local-note-mark {
    top: 28px;
  }

  .local-note p {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 48px 76px;
  }

  .policy-index {
    position: static;
  }

  .policy-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
  }

  .policy-copy section {
    padding-bottom: 44px;
  }

  .policy-copy section + section {
    padding-top: 44px;
  }

  .policy-copy h2 {
    font-size: 1.48rem;
  }

  .policy-copy p {
    font-size: 1rem;
    line-height: 1.82;
  }
}

@media (max-width: 420px) {
  .policy-heading h1 {
    font-size: 2.75rem;
  }

  .policy-index nav {
    grid-template-columns: 1fr;
  }

  .home-link span:last-child {
    display: none;
  }
}
