/* Video */
.videos {
    padding: 40px 20px;
    text-align: center;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #0a0a0a 0%, #0e1a2b 100%);
    color: #e0e0e0;
}

.videos h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #ffffff;
}

.video-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.video-block {
    max-width: 480px;
    text-align: center;
}

.video-block video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.video-block p {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #cbd5e1;
}

/* Adaptability */
@media (max-width: 768px) {
    .videos {
        padding: 30px 15px;
    }

    .videos h2 {
        font-size: 1.5rem;
    }

    .video-wrapper {
        gap: 20px;
    }

    .video-block {
        max-width: 100%;
    }

    .video-block p {
        font-size: 0.95rem;
    }
}