.ss-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.ss-faq .zq-kicker {
  margin-bottom: 18px;
}

.ss-faq__list {
  display: grid;
  gap: 12px;
}

.ss-faq details {
  border: 1px solid rgba(95, 111, 82, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 36px rgba(23, 23, 23, 0.03);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ss-faq details[open] {
  border-color: rgba(95, 111, 82, 0.32);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 44px rgba(23, 23, 23, 0.045);
}

.ss-faq summary {
  display: flex;
  min-height: 70px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  color: var(--zq-ink);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
}

.ss-faq summary::-webkit-details-marker {
  display: none;
}

.ss-faq summary::after {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(95, 111, 82, 0.28);
  border-radius: 999px;
  color: var(--zq-accent);
  content: "+";
  flex: 0 0 auto;
  line-height: 26px;
  text-align: center;
}

.ss-faq details[open] summary::after {
  content: "-";
}

.ss-faq details > div {
  padding: 0 22px 24px;
  color: var(--zq-muted);
  font-size: 1rem;
  line-height: 1.62;
  animation: ss-faq-open 180ms ease both;
}

@keyframes ss-faq-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 959px) {
  .ss-faq__grid {
    grid-template-columns: 1fr;
  }
}
