﻿/* 1. Genel Container */
.videolar-section {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border-radius: 6px;
    background: #fff;
}

/* 2. Başlık */
.videolar-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .videolar-header .icon {
        width: 24px;
        height: 24px;
        background: url('/images/video-icon.svg') no-repeat center center;
        background-size: contain;
        margin-right: 8px;
    }

    .videolar-header h2 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
    }

/* 3. Slider Konteyneri */
.videolar-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
}

    .videolar-slider .swiper-wrapper {
        box-sizing: border-box;
    }

    .videolar-slider .swiper-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
    }

        /* 4. Thumbnail Görseli */
        .videolar-slider .swiper-slide img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

/* 5. Başlık Altı Yazı */
.video-title {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

    .video-title a {
        text-decoration: none;
        color: #004085;
        transition: color 0.3s ease;
    }

        .video-title a:hover {
            text-decoration: underline;
            color: #001d3d;
        }

/* 6. “Tüm Videolar” Linki */
.tum-videolar-link {
    display: block;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

    .tum-videolar-link:hover {
        text-decoration: underline;
    }
