.faq-shell { grid-template-columns: 220px minmax(0, 1fr); }

.faq-heading { overflow: hidden; }

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.issue-grid a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfe;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.issue-grid a:hover { transform: translateY(-2px); border-color: #b7c5ff; background: #f6f8ff; }

.issue-number {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: .78rem;
  font-weight: 800;
}

.issue-grid strong, .issue-grid small { display: block; }
.issue-grid strong { color: #344054; font-size: .94rem; }
.issue-grid small { margin-top: 2px; color: var(--muted); font-size: .76rem; font-weight: 600; }

.faq-notice div { flex: 1; }
.faq-notice a { display: inline-flex; margin-top: 8px; color: #7c5a10; font-size: .86rem; font-weight: 750; }

.faq-section { scroll-margin-top: 90px; }
.section-kicker { display: block; margin-bottom: 6px; color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.faq-steps > li + li { margin-top: 22px; }
.faq-steps p { max-width: 720px; }

.faq-subsection {
  scroll-margin-top: 90px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid #d8dff5;
  border-radius: 15px;
  background: #f8faff;
}

.subsection-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid #dfe5f6; }
.subsection-heading span { font-size: 1.04rem; font-weight: 800; }
.subsection-heading b { padding: 4px 9px; border-radius: 999px; color: var(--brand); background: #e9eeff; font-size: .72rem; }

.check-list { display: grid; gap: 15px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list li > span { display: grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; border-radius: 9px; color: #fff; background: var(--brand); font-size: .76rem; font-weight: 800; }
.check-list strong { display: block; color: #344054; font-size: .94rem; }
.check-list p { margin: 3px 0 0; color: var(--muted); font-size: .9rem; }

.answer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.answer-grid article { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fbfcfe; }
.answer-label { display: inline-flex; padding: 4px 8px; border-radius: 999px; color: var(--brand); background: var(--brand-soft); font-size: .72rem; font-weight: 750; }
.answer-grid h3 { margin: 11px 0 6px; font-size: 1rem; line-height: 1.4; }
.answer-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.single-answer { display: flex; align-items: flex-start; gap: 15px; margin-top: 22px; padding: 20px; border-radius: 15px; background: var(--brand-soft); }
.single-answer-icon { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: #fff; background: var(--brand); font-weight: 800; }
.single-answer h3 { margin: 0 0 5px; font-size: 1.05rem; }
.single-answer p { margin: 0; color: #536078; }

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: 28px 30px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #2446c6, #5878ed);
}

.support-card span { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 750; letter-spacing: .06em; }
.support-card h2 { margin: 4px 0 5px; font-size: 1.3rem; }
.support-card p { max-width: 590px; margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; }
.support-card a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 11px; color: #294ac5; background: #fff; font-size: .87rem; font-weight: 800; }

@media (max-width: 900px) {
  .faq-shell { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .answer-grid { grid-template-columns: 1fr; }
  .support-card { align-items: flex-start; flex-direction: column; padding: 23px 20px; }
}

@media (max-width: 520px) {
  .issue-grid { grid-template-columns: 1fr; }
  .issue-grid a { min-height: 66px; }
  .faq-subsection { padding: 17px 15px; }
  .subsection-heading { align-items: flex-start; }
  .support-card a { width: 100%; justify-content: space-between; }
}
