.faq-page-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.faq-page-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
}

.faq-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.faq-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 47, 1) 0%, rgba(6, 23, 47, 0.98) 35%, rgba(6, 23, 47, 0.7) 57%, rgba(6, 23, 47, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 23, 47, 0.02), rgba(6, 23, 47, 0.35));
}

.faq-page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 430px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-block: 64px;
}

.faq-page-hero .eyebrow {
  color: var(--gold-400);
}

.faq-page-hero h1 {
  max-width: 680px;
  margin-top: 17px;
  font-size: 50px;
  line-height: 1.2;
  word-break: keep-all;
}

.faq-page-hero-inner > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq-breadcrumb a:hover,
.faq-breadcrumb span {
  color: var(--gold-400);
}

.faq-breadcrumb svg {
  width: 13px;
  height: 13px;
}

.faq-page-section {
  background: var(--surface);
}

.faq-page-section .faq-list {
  background: var(--white);
  padding-inline: 30px;
}

.faq-cs-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-top: 3px solid var(--gold-600);
  margin-top: 52px;
  padding: 32px 34px;
  background: var(--white);
}

.faq-cs-entry > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.faq-cs-entry > div > span {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--gold-600);
}

.faq-cs-entry svg {
  width: 28px;
  height: 28px;
}

.faq-cs-entry h2 {
  margin-top: 5px;
  color: var(--navy-950);
  font-size: 24px;
}

.faq-cs-entry p:last-child {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-cs-entry > .button {
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .faq-page-hero,
  .faq-page-hero-inner {
    min-height: 410px;
  }

  .faq-page-hero-media {
    width: 100%;
  }

  .faq-page-hero-overlay {
    background: linear-gradient(90deg, rgba(6, 23, 47, 0.98) 0%, rgba(6, 23, 47, 0.86) 58%, rgba(6, 23, 47, 0.48) 100%);
  }

  .faq-page-hero h1 {
    font-size: 44px;
  }

  .faq-cs-entry {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-cs-entry > .button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .faq-page-hero,
  .faq-page-hero-inner {
    min-height: 420px;
  }

  .faq-page-hero-media img {
    object-position: 72% center;
  }

  .faq-page-hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 23, 47, 0.78) 0%, rgba(6, 23, 47, 0.94) 100%),
      linear-gradient(90deg, rgba(6, 23, 47, 0.88), rgba(6, 23, 47, 0.48));
  }

  .faq-page-hero-inner {
    padding-block: 52px;
  }

  .faq-page-hero h1 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.28;
  }

  .faq-page-hero-inner > p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  .faq-breadcrumb {
    margin-top: 26px;
  }

  .faq-page-section .faq-list {
    padding-inline: 0;
  }

  .faq-cs-entry {
    margin-top: 40px;
    padding: 25px 18px;
  }

  .faq-cs-entry > div {
    align-items: flex-start;
  }

  .faq-cs-entry > div > span {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .faq-cs-entry h2 {
    font-size: 20px;
  }
}
