/* Contêiner de vídeos */
#video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Contêiner de vídeo individual */
.video {
    width: 100%;
    max-width: 320px; /* Máximo de 320px para desktop */
    flex: 1 1 calc(33.333% - 20px); /* Exibição de 3 vídeos por linha */
    box-sizing: border-box;
}

/* Thumbnail do vídeo */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    background-color: #000;
    padding-top: 56.25%; /* Manter a proporção 16:9 */
    height: 0;
}

/* Ajustando o vídeo para ocupar toda a área da thumbnail */
.video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garantir que o vídeo ocupe toda a área */
}

/* Detalhes do vídeo */
.video-details {
    text-align: center;
    margin-top: 10px;
}

/* Títulos e nome do artista */
.video-title {
    font-size: 16px;
    font-weight: bold;
}

.artist-name {
    font-size: 14px;
    color: #555;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .video {
        flex: 1 1 100%; /* Um vídeo por linha em telas menores */
        max-width: 100%;
    }
}
