/* ==========================================================================
   SSS (FAQ) Sayfası Orijinal Temiz Stilleri (assets/css/pages/faq.css)
   ========================================================================== */

.sp-faq-clean-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
    width: 100%;
}

.sp-faq-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
}

.sp-faq-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.sp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
}

.sp-faq-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.sp-faq-card.active .sp-faq-chevron {
    transform: rotate(180deg);
}

.sp-faq-answer {
    display: none;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
}

.sp-faq-card.active .sp-faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .sp-faq-clean-grid {
        grid-template-columns: 1fr;
    }
}
