#resumo_conteudo {
    background-color: var(--background-color);
}

.aside-videoaula {
    display: grid;
    gap: 12px;
    background-color: var(--color-white);
    border-radius: 10px;
    margin-top: 14px;
}

.box-videos {
    max-height: fit-content;
    min-width: fit-content;
    background: none;
    border: 2px solid var(--background-color);
    border-radius: 18px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .box-videos:hover {
        background: var(--background-color);
    }

    .box-videos img {
        border-radius: 14px;
        width: 120px;
        height: auto;
    }

@media (min-width: 768px) {
    .box-videos {
        min-width: 200px;
        overflow: hidden;
    }
}

@media (min-width: 1200px) {
    .box-videos {
        min-width: auto;
    }
}
