/* ── 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: 24px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #1e40af;
}
[data-theme="dark"] .article-highlight { 
    background: rgba(59, 130, 246, 0.1); 
    color: #93c5fd; 
}

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

/* ── TAB STYLES ── */
.tab-active {
    background-color: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.tab-inactive {
    background-color: transparent;
    color: #64748b;
}
.tab-inactive:hover {
    background-color: #f1f5f9;
}
[data-theme="dark"] .tab-inactive:hover {
    background-color: #334155;
}

/* ── ARTICLE STYLING ── */
.article-section h3 { margin-top: 32px; margin-bottom: 12px; }
.article-section p { margin-bottom: 16px; }
.article-section ul { margin: 12px 0 16px 24px; list-style-type: disc; }
.article-section li { margin-bottom: 10px; }

/* ── RESULT TYPES COLORS ── */
.res-card-g1 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.res-card-g2 { background: linear-gradient(135deg, #84cc16, #65a30d); }
.res-card-g3a { background: linear-gradient(135deg, #eab308, #ca8a04); }
.res-card-g3b { background: linear-gradient(135deg, #f97316, #ea580c); }
.res-card-g4 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.res-card-g5 { background: linear-gradient(135deg, #7f1d1d, #450a0a); }
