.channelsCardContainer {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(5, 1fr);
}

.channelsCardContainer .cardContainer {
    display: flex;
    align-items: center;
    border: 1px solid #707070;
    position: relative;
    padding: 6px;
    border-radius: 5px;
}

.channelsCardContainer .cardContainer img {
    display: inline-flex;
    width: 60px;
    background-position: center;
    background-size: contain;
    height: 60px;
    background-repeat: no-repeat;
    object-fit: contain;
}

.channelsCardContainer .cardContainer .channelContent {
    padding: 10px;
    display: inline-flex;
    flex-direction: column;
    width: calc(100% - 60px);
    height: calc(60px - 0px);
    transition: all 0.3s ease-in;
    justify-content: center;
}

.channelsCardContainer .cardContainer .channelContent h3 {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.26;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
#channelsCarousel .channelsCardContainer{
    
}


@media screen and (max-width: 1200px) {
    .channelsCardContainer {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .channelsCardContainer {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .channelsCardContainer {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
    .channels-section  .container{
        max-width:100%
    }
}
@media screen and (max-width: 575px) {
    .channelsCardContainer {
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }
}