/* ── 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: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 20px 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 + IKONU ── */
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus::after { content: '+'; font-size: 22px; color: #2563eb; font-weight: 400; }
details[open] > summary .faq-plus::after { content: '−'; }

/* ── ARTICLE BASLIK VE METIN ARALIKLARI ── */
.article-section h2 { margin-top: 32px; margin-bottom: 16px; font-weight: 800; }
.article-section h3 { margin-top: 28px; margin-bottom: 12px; font-weight: 700; }
.article-section p  { margin-bottom: 16px; line-height: 1.8; opacity: 0.9; }
.article-section ul { margin: 10px 0 16px 20px; list-style-type: disc; }
.article-section li { margin-bottom: 10px; line-height: 1.6; }

/* ── GELISMIS SONUC KARTLARI ── */
.stat-card {
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.health-milestone {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid #e2e8f0;
}
[data-theme="dark"] .health-milestone { border-left-color: #334155; }
.health-milestone::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
}

/* Tablo Stilleri */
.info-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
[data-theme="dark"] .info-table-wrapper { border-color: #334155; }
table.info-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
table.info-table th {
    background: #f8fafc;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid #e2e8f0;
}
[data-theme="dark"] table.info-table th { background: #1e293b; border-bottom-color: #334155; }
table.info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}
[data-theme="dark"] table.info-table td { border-bottom-color: #334155; }
