.page-hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #eefbf8 0%, #fff 52%, #eef5f8 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -15% -40% 50%;
  height: 420px;
  background: radial-gradient(circle, rgba(24, 190, 160, .18), rgba(24, 190, 160, 0) 65%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
}

.breadcrumb-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: #667085;
  font-weight: 800;
}

.breadcrumb-nav a {
  color: var(--brand2);
  text-decoration: none;
}

.policy-summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(16, 24, 40, .12);
}

.policy-summary-card span {
  display: block;
  color: var(--brand2);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.policy-summary-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.policy-content {
  background: #fff;
}

.policy-sidebar {
  position: sticky;
  top: 128px;
  border-left: 4px solid var(--brand);
  background: #f8fbfb;
  padding: 24px;
  border-radius: 0 8px 8px 0;
}

.policy-sidebar h2 {
  font-size: 1.25rem;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.policy-sidebar a {
  display: block;
  color: #344054;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.policy-sidebar a:hover {
  color: var(--brand2);
}

.policy-article {
  display: grid;
  gap: 22px;
}

.policy-block {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 32px 30px 86px;
  box-shadow: 0 14px 36px rgba(16, 24, 40, .06);
  scroll-margin-top: 130px;
}

.policy-block i {
  position: absolute;
  left: 28px;
  top: 32px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eefbf8;
  color: var(--brand2);
  font-size: 1.35rem;
}

.policy-block h2 {
  font-size: 1.85rem;
  margin-bottom: 14px;
}

.policy-block p {
  color: #475467;
  margin-bottom: 14px;
}

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

.policy-cta h2 {
  max-width: 880px;
}

.policy-cta p {
  color: #475467;
  max-width: 740px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .page-hero {
    padding: 130px 0 70px;
  }

  .policy-sidebar {
    position: relative;
    top: auto;
  }

  .policy-block {
    padding: 78px 24px 26px;
  }

  .policy-block i {
    left: 24px;
    top: 24px;
  }

  .policy-block h2 {
    font-size: 1.55rem;
  }
}
