.policy-site {
  min-height: 100vh;
  background: #f6f8fb;
}

.policy-header {
  border-bottom: 1px solid rgba(5, 9, 19, 0.12);
  background: #ffffff;
}

.policy-header__inner,
.policy-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0b1220;
  font-family: var(--font-display);
  font-weight: 800;
}

.policy-brand img {
  width: 38px;
  height: 38px;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.policy-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 760px);
  justify-content: center;
  gap: 64px;
}

.policy-aside {
  align-self: start;
  position: sticky;
  top: 24px;
}

.policy-kicker {
  margin: 0 0 10px;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.policy-aside p,
.policy-meta,
.policy-content p,
.policy-content li {
  color: #4b5565;
}

.policy-aside a,
.policy-content a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.policy-content h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 0;
}

.policy-content h2 {
  margin-top: 44px;
  padding-top: 4px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.policy-content h3 {
  margin-top: 28px;
  font-size: 1rem;
  letter-spacing: 0;
}

.policy-content ul,
.policy-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 24px;
}

.policy-summary,
.policy-callout {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid rgba(5, 9, 19, 0.12);
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  background: #ffffff;
}

.policy-summary p:last-child,
.policy-callout p:last-child {
  margin-bottom: 0;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.policy-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.policy-directory a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(5, 9, 19, 0.14);
  border-radius: 6px;
  background: #ffffff;
  color: #0b1220;
  text-decoration: none;
}

.policy-directory a:hover,
.policy-directory a:focus-visible {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.policy-directory strong {
  color: #0b1220;
  font-size: 1rem;
}

.policy-directory span {
  color: #4b5565;
  line-height: 1.55;
}

.policy-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #1d4ed8;
  border-radius: 6px;
  background: #1d4ed8;
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none !important;
}

.policy-action--secondary {
  background: #ffffff;
  color: #1d4ed8 !important;
}

.policy-footer {
  border-top: 1px solid rgba(5, 9, 19, 0.12);
  background: #0b1324;
  color: rgba(255, 255, 255, 0.78);
}

.policy-footer__inner {
  min-height: 112px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.policy-footer p {
  margin: 0;
}

.policy-footer a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 760px) {
  .policy-directory {
    grid-template-columns: minmax(0, 1fr);
  }

  .policy-header__inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-nav {
    gap: 14px;
  }

  .policy-main {
    padding: 40px 0 56px;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .policy-aside {
    position: static;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(5, 9, 19, 0.12);
  }

  .policy-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
