.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: 4rem;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  padding: 1.5rem;
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.faq-cat-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.faq-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-cat-link {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.8rem 1rem;
  display: block;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.faq-cat-link:hover,
.faq-cat-link:focus-visible {
  color: var(--orange);
  border-color: var(--orange-20);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(242, 154, 62, 0.08);
}
.faq-cat-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.faq-cat-link.active {
  color: var(--orange);
  border-color: var(--orange-20);
  background: var(--white);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(242, 154, 62, 0.08);
}
.faq-sidebar-cta {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.faq-filters {
  display: block;
}
.faq-sidebar-cta p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.faq-content {
  min-width: 0;
}
.faq-cat-title {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--orange-20);
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}
@media (max-width: 760px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
    margin-bottom: 2rem;
    padding: 1.25rem;
  }
  .faq-cat-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .faq-cat-link {
    padding: 0.6rem 0.9rem;
  }
}
