.faq-intro{
  padding-bottom:40px;
}
.faq-page-head{
  max-width:820px;
}
.faq-overview{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  margin-top:38px;
  overflow:hidden;
  box-shadow:var(--shadow-panel);
}
.faq-overview-item{
  display:flex;
  min-height:118px;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  padding:22px;
  background:var(--color-panel);
  border-right:1px solid var(--color-border);
}
.faq-overview-item:last-child{
  border-right:0;
}
.faq-overview-item strong{
  font-family:var(--font-display);
  font-size:17px;
}
.faq-overview-item span{
  color:var(--color-muted);
  font-size:13px;
  line-height:1.6;
}
.faq-intro .category-toc{
  margin-top:24px;
}
.faq-category{
  scroll-margin-top:calc(var(--header-height) + 24px);
  padding-top:70px;
  padding-bottom:20px;
}
.faq-category-head{
  display:grid;
  grid-template-columns:minmax(220px,.7fr) minmax(0,1.3fr);
  align-items:end;
  gap:32px;
  margin-bottom:30px;
  padding-bottom:24px;
  border-bottom:1px solid var(--color-border);
}
.faq-category-head>p{
  max-width:650px;
  color:var(--color-muted);
}
.faq-category .faq-list{
  max-width:960px;
}
.faq-answer p{
  max-width:850px;
}
.faq-next-step{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  margin-top:72px;
  padding:34px;
  box-shadow:var(--shadow-panel);
}
.faq-next-step>div:first-child{
  max-width:680px;
}
.faq-next-step h2{
  font-size:clamp(24px,2.5vw,34px);
}
.faq-next-step p:not(.section-kicker){
  margin-top:12px;
  color:var(--color-muted);
}
.faq-next-step .button-row{
  flex-shrink:0;
}
@media (max-width:900px){
  .faq-overview{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .faq-overview-item:nth-child(2){
    border-right:0;
  }
  .faq-overview-item:nth-child(-n+2){
    border-bottom:1px solid var(--color-border);
  }
  .faq-category-head{
    grid-template-columns:minmax(0,1fr);
    align-items:start;
    gap:14px;
  }
  .faq-next-step{
    align-items:flex-start;
    flex-direction:column;
  }
  .faq-next-step .button-row{
    width:100%;
  }
}
@media (max-width:640px){
  .faq-intro{
    padding-bottom:24px;
  }
  .faq-overview{
    grid-template-columns:minmax(0,1fr);
  }
  .faq-overview-item{
    min-height:auto;
    border-right:0;
    border-bottom:1px solid var(--color-border);
  }
  .faq-overview-item:nth-child(3){
    border-bottom:1px solid var(--color-border);
  }
  .faq-overview-item:last-child{
    border-bottom:0;
  }
  .faq-category{
    padding-top:56px;
  }
  .faq-category-head{
    margin-bottom:22px;
  }
  .faq-next-step{
    margin-top:56px;
    padding:24px 20px;
  }
}