.video-post-thumb {
    position: relative;
    width: 100%;
    display: block;
}

.video-post-thumb .thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.video-post-thumb:hover .thumbnail img {
    transform: scale(1.05); /* Hover efektinde büyütme */
}

.video-post-thumb .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    font-size: 18px;
    z-index: 1;
}

.video-post-thumb .play-btn:hover {
    background: rgba(255, 0, 0, 0.8); /* Hoverda kırmızı arka plan */
}
.videos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 30px 10px;
}

.video-container {
    border: 1px solid #e0e0e0; /* Daha açık sınır rengi */
    border-radius: 12px; /* Yuvarlatılmış köşeler */
    padding: 20px;
    width: 500px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    background-color: #f1f1f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-8px); /* Hoverda yukarı kayma */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
}

.video-container .video-embed iframe {
    width: 100%;
    height: 315px;
    border-radius: 8px;
    border: none;
}

@media (max-width: 768px) {
    .video-container {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .video-container {
        width: 100%;
        max-width: 320px; /* Tek satırda tüm videolar */
    }
}

.section-title {
    position: relative;
    text-align: center;
    color: #182a45;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 85px;
    padding: 15px 0;
    background: linear-gradient(to right, transparent, rgba(18,172,175, 0.1), transparent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background-color: #4A9EE2;
    transform: translateY(-50%);
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        margin-top: 65px;
    }

    .section-title::before,
    .section-title::after {
        width: 20%;
    }
}