/* ===== SSS (Accordion) ===== */
.faq-section { background: var(--bg-alt); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Masaüstünde tam genişlik, 2 sütun */
@media (min-width: 861px) {
  .faq-list {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 16px;
  }
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.is-open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  line-height: 1;
  color: var(--primary);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item.is-open summary::after { transform: rotate(135deg); }

/* Animasyonlu cevap alanı: grid-rows 0fr -> 1fr geçişi */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .26s ease;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease, padding .26s ease;
}
.faq-item.is-open .faq-answer > p {
  opacity: 1;
  transform: none;
  padding-bottom: 18px;
}
