.channelInEvidence {
    margin: 5px;
    width: auto;
}

.channelInEvidence img {
    width: 100%;
    aspect-ratio: 16/9;
}

#rowCataloguesInEvidenceCointaner {
    display: grid;
    grid-template-rows: auto;
    grid-auto-rows: auto;
    grid-template-columns: repeat(4, calc(100% / 4));
}

#cataloguesTitle {
    color: var(--main-text-color-video);
    text-align: center;
    font-size: 32px !important;
}

@media only screen and (max-width : 991px) {
    #rowCataloguesInEvidenceCointaner {
        grid-template-columns: repeat(3, calc(100% / 3));
    }

}

@media only screen and (max-width : 767px) {
    #rowCataloguesInEvidenceCointaner {
        grid-template-columns: repeat(2, calc(100% / 2));
    }

}