/* FAQ-specific presentation kept separate from the shared stylesheet so these
   evidence paths cannot collapse into a continuous inline link list. */
.faq-next{
  margin-top:56px;
  padding-top:8px;
}
.faq-next>h2{
  margin-bottom:12px;
}
.faq-next>p{
  max-width:780px;
  margin:0;
}
.faq-next .next-step-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:26px 0 12px;
}
.faq-next .next-step-grid>a{
  display:flex;
  min-width:0;
  min-height:104px;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px;
  border:1px solid #dfe5ed;
  border-radius:14px;
  background:#fff;
  color:#101828;
  text-decoration:none;
  box-shadow:0 7px 22px rgba(15,23,42,.045);
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.faq-next .next-step-grid>a:hover,
.faq-next .next-step-grid>a:focus-visible{
  border-color:#b9cae6;
  box-shadow:0 12px 30px rgba(15,23,42,.09);
  transform:translateY(-2px);
  outline:0;
}
.faq-next .guide-card-copy{
  display:flex;
  min-width:0;
  flex:1;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}
.faq-next .guide-card-copy>strong{
  display:block;
  color:#101828;
  font-size:15px;
  line-height:1.35;
  letter-spacing:-.015em;
}
.faq-next .guide-card-copy>small{
  display:block;
  color:#667085;
  font-size:11px;
  line-height:1.55;
  font-weight:500;
}
.faq-next .next-step-grid>a>i{
  display:grid;
  width:34px;
  height:34px;
  flex:0 0 34px;
  place-items:center;
  border-radius:50%;
  background:#edf3ff;
  color:#2563eb;
  font-size:15px;
  font-style:normal;
  transition:transform .18s ease;
}
.faq-next .next-step-grid>a:hover>i{
  transform:translateX(2px);
}
@media(max-width:700px){
  .faq-next .next-step-grid{grid-template-columns:1fr}
  .faq-next .next-step-grid>a{min-height:92px;padding:17px}
}
