.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: 24px;
}

.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;
}

/* Layout Grid Yapısı (Desktop) */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Sol ve Sağ eşit genişlik alanı */
    gap: 20px;
}

/* Sol Taraf: Büyük Öne Çıkan Kart */
.featured-wrapper {
    width: 100%;
}

.featured-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.featured-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a202c;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-image {
    transform: scale(1.02);
}

.featured-content {
    padding-top: 12px;
}

.featured-title {
    font-size: 15px;
    font-weight: 500;
    color: #a0aec0;
    line-height: 1.4;
}

/* Sağ Taraf: 4'lü Grid Alanı */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}

.small-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.small-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a202c;
}

.small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.small-card:hover .small-image {
    transform: scale(1.03);
}

.small-card-content {
    padding-top: 8px;
}

.small-card-title {
    font-size: 13px;
    font-weight: 500;
    color: #a0aec0;
    line-height: 1.4;
}

/* Mobil ve Tablet İçin Responsive Düzenlemeler */
@media (max-width: 900px) {
    .content-layout {
        grid-template-columns: 1fr; /* Mobilde alt alta sırala */
        gap: 24px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 4 kart 2x2 kalır */
        gap: 16px 12px;
    }

    .channel-title {
        font-size: 18px;
    }

    .featured-title, .small-card-title {
        font-size: 13px;
    }
}


/* Layout Grid Yapısı (Desktop) */
.content-layout {
    display: grid;
    grid-template-columns: 698px 1fr; /* Sol taraf net 698px, sağ taraf kalan alan */
    gap: 20px;
}

/* Sol Taraf: Büyük Öne Çıkan Kart */
.featured-image-container {
    width: 100%;
    aspect-ratio: 698 / 390; /* 698x390 oranını birebir korur */
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a202c;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sağ Taraf: 4'lü Grid Alanı (%50 Küçültülmüş Ölçek) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}

.small-image-container {
    width: 100%;
    aspect-ratio: 698 / 390; /* Sol resimle birebir aynı oranda kalır */
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a202c;
}

.small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive (Mobilde ve Ekran Küçüldüğünde) */
@media (max-width: 1200px) {
    .content-layout {
        grid-template-columns: 1fr; /* Ekran 1200px altına düşerse esnek/akıcı grid'e döner */
    }
}