.faq-section .faq-grid {
  display: block;
  margin-top: 32px;
  border-bottom: 1px solid var(--line);
}

.faq-section .faq-item {
  padding: 0;
  border-top: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
}

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

.faq-question {
  color: #2e2b28;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-toggle {
  position: relative;
  display: block;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--accent-dark);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 6px;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.faq-toggle::after { transform: rotate(90deg); }
.faq-item[open] .faq-toggle::after { transform: scaleX(0); }

.faq-section .faq-item p {
  max-width: 78ch;
  margin: 0;
  padding: 0 52px 26px 0;
  color: var(--muted);
}

@media (max-width: 620px) {
  .faq-section .faq-grid { margin-top: 26px; }
  .faq-item summary { min-height: 70px; padding: 17px 0; }
  .faq-question { font-size: 18px; }
  .faq-section .faq-item p { padding: 0 34px 22px 0; }
}
