/* FONT IMPORT (Eğer ekli değilse) */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@400;700&display=swap');

/* --- ANA BÖLÜM --- */
.broadcast-timeline-section {
    background-color: #181818; /* Görseldeki koyu gri/siyah arka plan */
    padding: 30px 0;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    border-bottom: 1px solid #333;
}

/* Header ve Daha Fazla Linki */
.broadcast-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 15px 20px;
}

.broadcast-timeline-more {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.broadcast-timeline-more:hover {
    opacity: 0.8;
    color: #ddd;
}

/* --- SLIDER YAPISI --- */
.broadcast-timeline-wrapper {
    position: relative;
    padding: 0 40px; /* Oklar için yanlardan boşluk */
}

.broadcast-timeline-container {
    overflow: hidden;
    width: 100%;
}

.broadcast-timeline-track {
    display: flex; /* YAN YANA GELMESİ İÇİN KRİTİK KOD */
    gap: 0; /* Kartlar bitişik olacak, aradaki çizgi border ile yapılacak */
    transition: transform 0.5s ease-in-out;
    align-items: center;
}

/* --- KART TASARIMI --- */
.broadcast-timeline-card {
    flex: 0 0 auto; /* Küçülmeyi/Büyümeyi engelle */
    width: 380px;   /* Görseldeki gibi geniş bir kart */
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-right: 1px solid #333; /* Kartlar arası ayırıcı çizgi */
    box-sizing: border-box;
}

/* SOL TARA (BİLGİLER) */
.timeline-content-left {
    flex: 1;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.timeline-time {
    font-family: 'Oswald', sans-serif; /* Saat için kalın, uzun font */
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: #fff;
}

.timeline-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #ddd;
    
    /* Başlık çok uzunsa kes */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.timeline-badge {
    background-color: #cc0000; /* Görseldeki kırmızı renk */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
}

/* SAĞ TARAF (GÖRSEL) */
.timeline-image-right {
    width: 160px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #333;
}

.timeline-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.timeline-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #444 0%, #222 100%);
}

/* Hover Efekti */
.broadcast-timeline-card:hover .timeline-image-right img {
    transform: scale(1.1);
}

.broadcast-timeline-card:hover .timeline-title {
    color: #fff;
}

/* --- BUTONLAR --- */
.timeline-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: none;
    color: #888; /* Silik gri oklar */
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    z-index: 10;
}

.timeline-nav-btn:hover {
    color: #fff;
}

.timeline-prev { left: 0; }
.timeline-next { right: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .broadcast-timeline-card {
        width: 300px;
    }
    .timeline-time {
        font-size: 2.2rem;
    }
    .timeline-image-right {
        width: 120px;
        height: 70px;
    }
}