.faqs-page {
  position: relative;
  --faqs-hero-title-size: clamp(2.2rem, 4.4vw, 4.1rem);
  --faqs-section-title-size: clamp(2rem, 3.8vw, 3rem);
  --faqs-question-size: clamp(1.4rem, 2.4vw, 1.95rem);
  --faqs-copy-size: 18px;
  --faqs-copy-line-height: 29px;
  background: #fbfcff;
}

.faqs-page p {
  font-size: var(--faqs-copy-size);
  line-height: var(--faqs-copy-line-height);
}

.faqs-section-eyebrow {
  display: inline-block;
  color: var(--color-blue);
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faqs-hero-section {
  position: relative;
  padding: 9rem 0 4.25rem;
  overflow: hidden;
  background: var(--color-blue);
}

.faqs-hero-section::before,
.faqs-hero-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
}

.faqs-hero-section::before {
  left: -170px;
  bottom: -170px;
  border: 26px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 52px rgba(255, 255, 255, 0.06),
    0 0 0 104px rgba(255, 255, 255, 0.04);
}

.faqs-hero-section::after {
  right: -170px;
  top: -170px;
  border: 24px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.06),
    0 0 0 96px rgba(255, 255, 255, 0.04);
}

.faqs-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.faqs-hero-shell .page-breadcrumbs {
  justify-content: center;
}

.faqs-hero-shell h1 {
  margin: 0;
  color: var(--color-white);
  font-size: var(--faqs-hero-title-size);
  line-height: 1;
  letter-spacing: -0.055em;
}

.faqs-list-section {
  padding: 5.5rem 0;
}

.faqs-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 2.75rem;
  align-items: start;
}

.faqs-intro {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.faqs-intro h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--faqs-section-title-size);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.faqs-intro p {
  margin: 0;
  color: var(--color-muted);
}

.faqs-list {
  display: grid;
  border-top: 1px solid var(--color-border-strong);
}

.faqs-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 52px;
  gap: 1.4rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--color-border-strong);
}

.faqs-item-number {
  color: var(--color-blue);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.faqs-item-copy h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--faqs-question-size) !important;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.faqs-item-copy p {
  margin: 0.9rem 0 0;
  color: var(--color-muted);
}

.faqs-item-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-blue);
  background: var(--color-surface-2);
}

.faqs-item-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (width <=991.98px) {
  .faqs-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faqs-intro {
    position: static;
  }
}

@media (width <=767.98px) {
  .faqs-page {
    --faqs-hero-title-size: 32px;
    --faqs-section-title-size: 29px;
    --faqs-question-size: 24px;
    --faqs-copy-size: 14px;
    --faqs-copy-line-height: 24px;
  }

  .faqs-hero-section {
    padding: 2.5rem 0;
  }

  .faqs-list-section {
    padding: 2.5rem 0;
  }

  .faqs-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 1rem;
  }

  .faqs-item-icon {
    grid-column: 2;
    justify-self: start;
  }
}