/* 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 #ec4899;
    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(236,72,153,0.1); color: #f9a8d4; }

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

/* Article başlık ve metin aralıkları */
.article-section h2 { margin-top: 32px; margin-bottom: 16px; }
.article-section h3 { margin-top: 28px; margin-bottom: 10px; }
.article-section p  { margin-bottom: 14px; }
.article-section ul { margin: 10px 0 14px 20px; }
.article-section li { margin-bottom: 8px; }

/* Trimester Kartları için ek stiller */
.trimester-card.active {
    border-color: #ec4899;
    background-color: #fdf2f8;
}
[data-theme="dark"] .trimester-card.active {
    background-color: rgba(236,72,153,0.1);
}
