:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #202a2e;
  background: #f7f8f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f8f7;
  line-height: 1.65;
}

a {
  color: #176b5a;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #0d4e41;
}

.site-header {
  border-bottom: 1px solid #d9dfdc;
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #173e3a;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

.page-label {
  color: #67736f;
  font-size: 13px;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.document-header {
  max-width: 780px;
  padding: 74px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b85a45;
  font-size: 12px;
  font-weight: 800;
}

h1 {
  max-width: 700px;
  margin: 0;
  color: #173e3a;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
}

.summary {
  max-width: 720px;
  margin: 26px 0 0;
  color: #43514d;
  font-size: 19px;
  line-height: 1.6;
}

.effective-date {
  margin: 22px 0 0;
  color: #727d79;
  font-size: 13px;
}

.document-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 76px;
  align-items: start;
  border-top: 1px solid #d9dfdc;
  padding: 48px 0 80px;
}

.contents {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 10px;
  border-left: 3px solid #e7a23c;
  padding-left: 18px;
}

.contents strong {
  margin-bottom: 3px;
  color: #283632;
  font-size: 13px;
}

.contents a {
  color: #65716d;
  font-size: 12px;
  text-decoration: none;
}

.contents a:hover {
  color: #176b5a;
}

.policy section {
  scroll-margin-top: 28px;
  border-bottom: 1px solid #d9dfdc;
  padding: 0 0 40px;
  margin-bottom: 40px;
}

.policy h2 {
  margin: 0 0 16px;
  color: #173e3a;
  font-size: 23px;
  line-height: 1.25;
}

.policy p,
.policy li,
.policy dd {
  color: #46534f;
  font-size: 15px;
}

.policy p {
  margin: 0 0 16px;
}

.policy ul {
  padding-left: 22px;
}

.policy li + li {
  margin-top: 7px;
}

dl {
  margin: 0;
}

dl > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid #e0e5e2;
  padding: 16px 0;
}

dl > div:last-child {
  border-bottom: 1px solid #e0e5e2;
}

dt,
dd {
  margin: 0;
}

code {
  color: #9d4937;
  font-size: 13px;
  font-weight: 750;
}

.policy footer {
  border-left: 3px solid #62ae9a;
  padding-left: 18px;
}

.policy footer p {
  color: #6e7975;
  font-size: 12px;
}

@media (max-width: 760px) {
  .header-inner,
  main {
    width: min(100% - 28px, 680px);
  }

  .page-label {
    display: none;
  }

  .document-header {
    padding: 52px 0 42px;
  }

  .summary {
    font-size: 17px;
  }

  .document-layout {
    display: block;
    padding-top: 34px;
  }

  .contents {
    position: static;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
  }

  .contents strong {
    grid-column: 1 / -1;
  }

  dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
