.content-page {
  background: var(--bg);
}

.content-header {
  background: rgba(245, 250, 251, .94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.content-menu {
  position: fixed;
  z-index: 1090;
  inset: var(--header-h) 0 auto;
  padding: 1rem 4vw 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.content-menu a {
  display: block;
  padding: .8rem 0;
  font-family: var(--ff-display);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.page-main {
  padding-top: var(--header-h);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 70% 25%, rgba(53, 199, 227, .18), transparent 30%),
    linear-gradient(160deg, #f8fcfd 0%, #eaf4f6 100%);
}

.page-hero__orb {
  position: absolute;
  width: 30rem;
  height: 30rem;
  right: -12rem;
  bottom: -17rem;
  border: 1px solid rgba(10, 166, 201, .18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4rem rgba(255,255,255,.18);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 2.25rem;
  color: var(--ink-2);
  font-size: .82rem;
}

.breadcrumbs a:hover {
  color: var(--aqua-deep);
  text-decoration: underline;
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
}

.page-hero__intro {
  max-width: 64ch;
  margin-top: 1.5rem;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.page-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.page-section--soft {
  background: var(--bg-soft);
}

.prose {
  font-size: 1.08rem;
}

.prose > * + * {
  margin-top: 1.35rem;
}

.prose h2 {
  margin-top: 3rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.prose h3 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--ink-2);
}

.prose ul {
  display: grid;
  gap: .65rem;
  margin-block: 1.4rem 2rem;
}

.prose li {
  position: relative;
  padding-left: 1.65rem;
}

.prose li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(10,166,201,.11);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.content-card__label {
  display: block;
  margin-bottom: 1rem;
  color: var(--aqua-deep);
  font-family: var(--ff-display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.content-card h2,
.content-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.content-card h2 a:hover,
.content-card h3 a:hover {
  color: var(--aqua-deep);
}

.content-card p {
  margin-top: .85rem;
  color: var(--ink-2);
}

.text-link {
  display: inline-flex;
  gap: .45rem;
  margin-top: 1.3rem;
  color: var(--aqua-deep);
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
}

.related-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.related-section__head {
  margin-bottom: 2.25rem;
}

.related-section__head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.credential-list {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.credential-list h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.credential-list article {
  display: grid;
  gap: .35rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.credential-list span,
.credential-list p {
  color: var(--ink-2);
  font-size: .9rem;
}

.content-footer {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.content-footer .footer__col h2 {
  margin-bottom: 1.15rem;
  color: #eaf6fa;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .card-grid,
  .card-grid--three {
    grid-template-columns: 1fr;
  }
}
