/* ============================================================
   Faq-sidebar component: two-column FAQ (heading sidebar + list).
   Toggle behavior comes from the accordion utility (assets/js/accordion.js).
   ============================================================ */

.faq-sidebar {
  background: var(--bg);
  padding: 8.75rem var(--pad-x);
}
.faq-sidebar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.75rem;
}
@media (max-width: 860px) {
  .faq-sidebar__inner {
    grid-template-columns: 1fr;
  }
}
.faq-sidebar__h {
  font-size: var(--fz-h2);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 12ch;
}
.faq-sidebar__h b {
  color: var(--blue);
}
.faq-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(20, 20, 20, 0.1);
}
.faq-sidebar__item {
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}
.faq-sidebar__q {
  width: 100%;
  text-align: left;
  padding: 1.625rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
}
.faq-sidebar__q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--blue);
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}
.faq-sidebar__item.is-open .faq-sidebar__q::after {
  transform: rotate(45deg);
}
.faq-sidebar__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-sidebar__a p {
  padding: 0 2.5rem 1.625rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 56ch;
}
.faq-sidebar__item.is-open .faq-sidebar__a {
  max-height: 100rem;
}
