.page-hero {
  background: var(--white);
}

.page-hero .wrap {
  padding: 56px 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 16px;
  color: #8A95A0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.breadcrumb a {
  color: #1A549F;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.breadcrumb span {
  white-space: pre;
}

.page-hero h1 {
  max-width: 952px;
  margin: 0;
  color: #1A549F;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.5;
  letter-spacing: .05em;
  font-weight: 700;
  font-feature-settings: "palt" 1;
}

.policy-main {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
  margin-top: 50px;
  margin-bottom: 72px;
  padding: 104px 0 72px;
  border: 2px solid var(--navy-100);
  border-radius: 8px;
  background: var(--white);
}

.policy-body {
  grid-column: 2 / span 6;
  min-width: 0;
  color: var(--muted);
}

.policy-lead {
  margin: 0 0 64px;
  color: #5A6472;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  text-align: justify;
}

.policy-content {
  color: var(--muted);
  font-size: 18px;
  line-height: 2.2;
}

.policy-content h2 {
  margin: 64px 0 32px;
  padding: 0 0 16px;
  border-bottom: 2px solid var(--navy-100);
  color: var(--navy-500);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  font-feature-settings: "palt" 1;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  margin: 40px 0 16px;
  color: var(--navy-500);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .02em;
}

.policy-content h4 {
  margin: 32px 0 12px;
  color: var(--navy-600);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
}

.policy-content p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 2.2;
  text-align: justify;
}

.policy-content ol,
.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 32px;
  padding-left: 1.5em;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.policy-content li {
  padding-left: .15em;
}

.policy-content a {
  color: var(--navy-500);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.policy-content address {
  margin: 0 0 32px;
  padding: 32px;
  border-radius: 8px;
  background: var(--navy-50);
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
  line-height: 2;
}

.policy-content .policy-date {
  margin: 0;
}

@media (max-width: 900px) {
  .policy-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 32px;
  }

  .policy-body {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .page-hero .wrap {
    padding: 32px 0 0;
  }

  .page-hero h1 {
    font-size: 28px;
    line-height: 1.5;
  }

  .policy-main {
    margin-top: 32px;
    padding: 16px;
  }

  .policy-lead {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.9;
  }

  .policy-content h2 {
    margin: 40px 0 24px;
    font-size: 26px;
  }

  .policy-content h3 {
    margin: 32px 0 14px;
    font-size: 22px;
  }

  .policy-content h4 {
    margin: 28px 0 10px;
    font-size: 20px;
  }

  .policy-content p,
  .policy-content ol,
  .policy-content ul,
  .policy-content address {
    font-size: 16px;
    line-height: 1.9;
  }

  .policy-content address {
    padding: 20px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .page-hero .wrap,
  .policy-main {
    width: min(100% - 48px, 720px);
  }

  .page-hero .wrap {
    padding: 40px 0 0;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 34px;
  }

  .policy-main {
    margin-top: 40px;
    padding: 32px;
  }

  .policy-content h2 {
    font-size: 28px;
  }
}
