body.page-template-custom-faq > #page > #pagetitle {
  display: none;
}

.bna-faq-page,
.bna-faq-page * {
  box-sizing: border-box;
}

.bna-faq-page {
  --bna-faq-ivory: #f7f3ec;
  --bna-faq-ivory-deep: #f1ebe2;
  --bna-faq-ink: #282725;
  --bna-faq-copy: #4b4843;
  --bna-faq-charcoal: #1d1e1e;
  --bna-faq-gold: #a4885e;
  --bna-faq-gold-light: #d8b77d;
  --bna-faq-line: rgba(117, 95, 64, .25);
  color: var(--bna-faq-ink);
  background: var(--bna-faq-ivory);
  font-family: "Mulish", Arial, sans-serif;
}

.bna-faq-page .bna-faq-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.bna-faq-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 188px 0 58px;
  overflow: hidden;
  color: #fff;
  background: #171818 url("../images/faq/faq-hero.webp") center 72% / cover no-repeat;
  isolation: isolate;
}

.bna-faq-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: transparent;
}

.bna-faq-hero__inner {
  position: relative;
  z-index: 1;
}

.bna-faq-hero h1 {
  max-width: 790px;
  margin: 0 0 20px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5.1vw, 70px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.bna-faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bna-faq-breadcrumb a,
.bna-faq-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.bna-faq-breadcrumb a:hover,
.bna-faq-breadcrumb a:focus-visible {
  color: var(--bna-faq-gold-light);
}

.bna-faq-content {
  padding: clamp(72px, 7.5vw, 112px) 0 clamp(82px, 8vw, 118px);
  border-bottom: 1px solid var(--bna-faq-line);
  background:
    radial-gradient(circle at 10% 7%, rgba(255, 255, 255, .8), transparent 28%),
    var(--bna-faq-ivory);
}

.bna-faq-content__intro {
  max-width: 760px;
  margin: 0 0 45px;
}

.bna-faq-eyebrow {
  margin: 0 0 13px;
  color: var(--bna-faq-gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bna-faq-content__intro h2 {
  margin: 0;
  color: var(--bna-faq-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.bna-faq-content__intro > p:last-child {
  max-width: 640px;
  margin: 23px 0 0;
  color: var(--bna-faq-copy);
  font-size: 15px;
  line-height: 1.75;
}

.bna-faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 48px;
  border-top: 1px solid var(--bna-faq-line);
  border-bottom: 1px solid var(--bna-faq-line);
}

.bna-faq-filter {
  position: relative;
  min-height: 61px;
  margin: 0;
  padding: 18px clamp(19px, 2.6vw, 34px);
  border: 0;
  border-right: 1px solid var(--bna-faq-line);
  border-radius: 0;
  color: var(--bna-faq-copy);
  background: transparent;
  box-shadow: none;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .22s ease, background-color .22s ease;
}

.bna-faq-page .bna-faq-filter,
.bna-faq-page .bna-faq-filter:hover,
.bna-faq-page .bna-faq-filter:focus,
.bna-faq-page .bna-faq-filter:focus-visible,
.bna-faq-page .bna-faq-filter:active,
.bna-faq-page .bna-faq-filter.is-active {
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.bna-faq-filter:first-child {
  padding-left: 0;
}

.bna-faq-filter::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 22px;
  height: 2px;
  background: var(--bna-faq-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.bna-faq-filter:first-child::after {
  left: 0;
}

.bna-faq-filter.is-active {
  color: var(--bna-faq-gold);
}

.bna-faq-filter:hover,
.bna-faq-filter:focus-visible {
  color: var(--bna-faq-gold);
  background-color: transparent;
}

.bna-faq-filter.is-active::after,
.bna-faq-filter:hover::after {
  transform: scaleX(1);
}

.bna-faq-filter:focus-visible,
.bna-faq-page-item summary:focus-visible,
.bna-faq-help a:focus-visible {
  outline: 2px solid var(--bna-faq-gold);
  outline-offset: 4px;
}

.bna-faq-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(285px, .85fr);
  align-items: start;
  gap: clamp(42px, 6vw, 82px);
}

.bna-faq-list {
  border-top: 1px solid var(--bna-faq-line);
}

.bna-faq-page-item {
  margin: 0;
  border-bottom: 1px solid var(--bna-faq-line);
  background: transparent;
}

.bna-faq-page-item[hidden] {
  display: none;
}

.bna-faq-page-item summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  margin: 0;
  padding: 20px 3px;
  color: var(--bna-faq-ink);
  cursor: pointer;
  list-style: none;
}

.bna-faq-page-item summary::-webkit-details-marker {
  display: none;
}

.bna-faq-page-item__number {
  color: var(--bna-faq-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  line-height: 1;
}

.bna-faq-page-item__question {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(19px, 1.65vw, 23px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.35;
}

.bna-faq-page-item__note {
  color: var(--bna-faq-gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.bna-faq-page-item__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}

.bna-faq-page-item__toggle::before,
.bna-faq-page-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--bna-faq-gold);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.bna-faq-page-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.bna-faq-page-item[open] .bna-faq-page-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.bna-faq-page-item__answer {
  max-width: 69ch;
  padding: 0 44px 29px 62px;
  color: var(--bna-faq-copy);
  font-size: 14px;
  line-height: 1.75;
}

.bna-faq-page-item__answer p {
  margin: 0 0 13px;
}

.bna-faq-page-item__answer p:last-child {
  margin-bottom: 0;
}

.bna-faq-help {
  position: sticky;
  top: 125px;
  margin: 0;
  padding: clamp(35px, 3.6vw, 48px) clamp(29px, 3.4vw, 43px);
  border: 1px solid var(--bna-faq-line);
  color: var(--bna-faq-ink);
  background: rgba(255, 255, 255, .22);
}

.bna-faq-help .bna-faq-eyebrow {
  color: var(--bna-faq-gold);
}

.bna-faq-help h2 {
  margin: 0 0 21px;
  color: var(--bna-faq-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.16;
}

.bna-faq-help > p:not(.bna-faq-eyebrow) {
  margin: 0 0 30px;
  color: var(--bna-faq-copy);
  font-size: 14px;
  line-height: 1.7;
}

.bna-faq-help__phone,
.bna-faq-help__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  color: var(--bna-faq-ink);
  background: linear-gradient(105deg, #bc9867, #dfc18d 52%, #b58f5e);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: filter .2s ease, transform .2s ease;
}

.bna-faq-help__phone:hover,
.bna-faq-help__phone:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.bna-faq-help__link {
  justify-content: space-between;
  margin-top: 13px;
  padding-inline: 0;
  border: 0;
  color: var(--bna-faq-gold);
  background: transparent;
  text-align: left;
}

.bna-faq-help__link:hover,
.bna-faq-help__link:focus-visible {
  color: var(--bna-faq-ink);
}

.bna-faq-assurances {
  border-bottom: 1px solid var(--bna-faq-line);
  background: var(--bna-faq-ivory-deep);
}

.bna-faq-assurances__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bna-faq-assurance {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 152px;
  margin: 0;
  padding: 28px clamp(24px, 3vw, 42px);
}

.bna-faq-assurance + .bna-faq-assurance {
  border-left: 1px solid var(--bna-faq-line);
}

.bna-faq-assurance svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--bna-faq-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.bna-faq-assurance h2 {
  margin: 0 0 6px;
  color: var(--bna-faq-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.bna-faq-assurance p {
  margin: 0;
  color: var(--bna-faq-copy);
  font-size: 12px;
  line-height: 1.55;
}

.page-template-custom-faq .bna-partners__title {
  margin: 0 0 clamp(27px, 3vw, 39px);
  color: var(--bna-faq-gold) !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .12em !important;
  line-height: 1.45 !important;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .bna-faq-hero {
    min-height: 445px;
    padding-top: 160px;
  }

  .bna-faq-content__grid {
    grid-template-columns: 1fr;
  }

  .bna-faq-help {
    position: static;
    max-width: 520px;
  }

  .bna-faq-assurances__grid {
    grid-template-columns: 1fr;
  }

  .bna-faq-assurance {
    min-height: 125px;
  }

  .bna-faq-assurance + .bna-faq-assurance {
    border-top: 1px solid var(--bna-faq-line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .bna-faq-page .bna-faq-shell {
    width: min(100% - 32px, 560px);
  }

  .bna-faq-hero {
    min-height: 390px;
    padding: 145px 0 42px;
    background-position: 60% 55%;
  }

  .bna-faq-hero h1 {
    max-width: 9ch;
    font-size: clamp(39px, 12vw, 54px);
  }

  .bna-faq-content {
    padding-block: 64px 76px;
  }

  .bna-faq-content__intro {
    margin-bottom: 35px;
  }

  .bna-faq-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 35px;
  }

  .bna-faq-filter,
  .bna-faq-filter:first-child {
    min-height: 52px;
    padding: 14px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--bna-faq-line);
    text-align: left;
  }

  .bna-faq-filter:nth-child(odd) {
    border-right: 1px solid var(--bna-faq-line);
  }

  .bna-faq-filter::after,
  .bna-faq-filter:first-child::after {
    right: 12px;
    left: 12px;
  }

  .bna-faq-page-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 10px;
    min-height: 76px;
    padding-block: 17px;
  }

  .bna-faq-page-item__note {
    grid-column: 2 / 3;
    white-space: normal;
  }

  .bna-faq-page-item__toggle {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .bna-faq-page-item__answer {
    padding: 0 10px 25px 44px;
  }

  .bna-faq-help {
    padding: 35px 28px;
  }

  .bna-faq-assurance {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 15px;
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bna-faq-filter::after,
  .bna-faq-help a {
    transition: none;
  }
}
