/* Son Dakika Şeridi Animasyonu */
.ticker-container {
    overflow: hidden;
}
.ticker-wrap {
    animation: ticker-animation 60s linear infinite;
}
@keyframes ticker-animation {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Tailwind'in prose sınıfına ek stiller */
.prose {
    line-height: 1.75;
}
.prose h2 {
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
}
.prose blockquote {
    quotes: "“" "”" "‘" "’";
    border-left-color: #ef4444; /* red-500 */
    font-style: italic;
    font-weight: 500;
}