.radio-section {
    width: 100%;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header Alanı */
.channel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.channel-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.channel-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
}

/* ==========================================================================
   KART VE BİLEŞEN CSS FORMATLARI
   ========================================================================== */

.featured-image-container,
.small-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a202c;
    position: relative;
}

.featured-image,
.small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-image,
.small-card:hover .small-image {
    transform: scale(1.02);
}

.featured-card,
.small-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.featured-wrapper {
    width: 100%;
    height: 100%;
}

/* Metin Alanları */
.featured-content {
    padding-top: 10px;
}

.featured-title {
    font-size: 15px;
    font-weight: 500;
    color: #a0aec0;
    line-height: 1.4;
    margin: 0;
}

.small-card-content {
    padding-top: 8px;
}

.small-card-title {
    font-size: 13px;
    font-weight: 500;
    color: #a0aec0;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   DESKTOP / GENİŞ EKRAN DÜZENİ (801px ve Üzeri - DİKEY EŞİTLENMİŞ)
   ========================================================================== */

/* Sol ve sağ sütunun alt sınırlarını (başlıklar dahil) birbirine eşitleme */
.content-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch; /* Dikeyde yükseklikleri tam eşitler */
    width: 100%;
}

/* Sol Taraf: Resim alanının başlık dışında kalan dikey alanı otomatik doldurması */
.featured-card {
    display: flex;
    flex-direction: column;
}

.featured-image-container {
    flex: 1; /* Dikeydeki kalan boşluğun tamamını doldurur */
    min-height: 0; /* Flexbox yükseklik taşmasını engeller */
}

/* Sağ Taraf: 2x2 Grid Yapısı ve Yükseklik Eşitleme */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr); /* Sağdaki 2 satırı dikeyde eşit böler */
    gap: 16px;
    width: 100%;
    height: 100%;
}

.small-image-container {
    aspect-ratio: 698 / 390; /* Resim oranını korur */
}

/* ==========================================================================
   RESPONSIVE / MOBİL DÜZEN (800px ve Altı)
   ========================================================================== */

@media (max-width: 800px) {
    .content-layout {
        grid-template-columns: 1fr; /* Alt alta sıralama */
        gap: 24px;
    }

    .featured-image-container {
        aspect-ratio: 698 / 390; /* Mobilde dikey esneme yerine orjinal orana döner */
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }

    .channel-title {
        font-size: 18px;
    }
}