.channels-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Kanal Row Tasarımı */
.channel-row {
    width: 100%;
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.channel-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.channel-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* Swiper Özel Stil Yapılandırması */
.channel-slider-wrapper {
    position: relative;
}

.swiper {
    width: 100%;
    padding-bottom: 10px;
}

/* Program Kartı Tasarımı */
.program-card {
    background-color: #1a1e29;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.card-image-wrapper {
    width: 100%;
    height: 388px; /* İstenen yükseklik */
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #1a1e29;
}

.program-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.program-description {
    font-size: 13px;
    color: #9aa0a6;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Slider Okları (Navigation Buttons) */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Masaüstünde Okları Gizle (>=1024px) */
@media (min-width: 1024px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}