/* ── ANIMASYONLAR ── */
@keyframes slideDown { 
    from { opacity: 0; transform: translateY(-10px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.result-animate { animation: slideDown 0.4s ease forwards; }

/* ── MAKALE HIGHLIGHT KUTUSU ── */
.article-highlight {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #1e40af;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.05);
}
[data-theme="dark"] .article-highlight { 
    background: rgba(59, 130, 246, 0.1); 
    color: #93c5fd; 
    border-left-color: #60a5fa;
}

/* ── SSS ACCORDION ÖZELLİKLERİ ── */
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus::after { 
    content: '+'; 
    font-size: 24px; 
    color: #2563eb; 
    font-weight: 500; 
    transition: all 0.3s ease;
}
details[open] > summary .faq-plus::after { 
    content: '−'; 
    transform: rotate(180deg);
}

/* ── MAKALE METİN DÜZENİ ── */
.article-section h2 { margin-top: 40px; margin-bottom: 20px; }
.article-section h3 { margin-top: 32px; margin-bottom: 12px; }
.article-section p { margin-bottom: 18px; line-height: 1.8; }
.article-section ul { margin: 15px 0 18px 24px; list-style-type: disc; }
.article-section li { margin-bottom: 10px; }

/* ── INPUT FOCUS EFECT ── */
.input-field:focus + .input-icon { color: #2563eb; }

/* ── SONUÇ ALANI GRADYAN ── */
.result-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
[data-theme="dark"] .result-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #172554 100%);
}
