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

/* ── MAKALE HIGHLIGHT KUTUSU ── */
.article-highlight {
    background: #fdf2f8;
    border-left: 4px solid #db2777;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #9d174d;
}
[data-theme="dark"] .article-highlight { background: rgba(219,39,119,0.1); color: #f9a8d4; }

/* ── FAQ ICON ── */
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus::after { content: '+'; font-size: 22px; color: #db2777; font-weight: 400; }
details[open] > summary .faq-plus::after { content: '−'; }

/* ── ARTICLE STANDARTLARI ── */
.article-section h2 { font-size: 1.875rem; font-weight: 800; margin-top: 2rem; margin-bottom: 1.5rem; color: #0f172a; border-bottom: 2px solid #f1f5f9; padding-bottom: 0.75rem; }
[data-theme="dark"] .article-section h2 { color: #f8fafc; border-bottom-color: #1e293b; }
.article-section h3 { font-size: 1.25rem; font-weight: 700; margin-top: 1.75rem; margin-bottom: 0.75rem; color: #1e293b; }
[data-theme="dark"] .article-section h3 { color: #f1f5f9; }
.article-section p  { margin-bottom: 1.25rem; line-height: 1.8; color: #475569; }
[data-theme="dark"] .article-section p { color: #94a3b8; }
.article-section ul { margin: 1rem 0 1.25rem 1.5rem; list-style-type: disc; }
.article-section li { margin-bottom: 0.5rem; color: #475569; }
[data-theme="dark"] .article-section li { color: #94a3b8; }
