.video-container {
    padding: 0 20px;
    border-radius: 0;
}

.video-box {
    background-color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    color: #333;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-box:hover {
    transform: translateY(-5px);
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.video-content h5 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #1ad1d1;
    font-weight: normal;
}

.video-content a {
    text-decoration: none;
    color: #1ad1d1;
    font-weight: normal;
}

.video-content a:hover {
    text-decoration: underline;
}

.cover-image {
    object-fit: cover;
    margin-bottom: 10px;
}

ul.video-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

ul.video-list li {
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    ul.video-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    ul.video-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    ul.video-list {
        grid-template-columns: 1fr;
    }
}

.wrap h1, .wrap h2 {
    text-align: center;
    color: #1ad1d1;
}

/* Sil butonunu tamamen kaldırdığınız için ilgili CSS kaldırıldı */
