.playlist {
    background-color: white;
}

.playlist .title {
    color: #166ab0;
    font-weight: bold;
}

.playlist .sub-title {
    color: #707070
}

.list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Espaçamento entre colunas */
    gap: 10px;
    /* Espaçamento entre linhas e colunas */
}

.list-item {
    flex: 0 0 48%;
    /* Largura dos itens e prevenção de crescimento/encolhimento */
    text-align: center;
}

/* Último item ímpar centralizado */
.list-container :nth-child(odd):nth-last-child(1) {
    margin-right: auto;
    margin-left: auto;
}

#videos-playlist a {
    text-decoration: none;
    color: #707070
}

.list-item .video-thumbnail {
    position: relative;
    display: inline-block;
}

.play-icon svg {
    width: 10vw;
    height: 100px;
    color: white
}

.list-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}