.channels-section {
    background-color: #FFFFFF;
}

.channels-section .top-part {
    width: 50%;
    min-width: 650px;
}

.channels-section .top-part h2 {
    line-height: 1.4;
    color: var(--main-blue);
    margin: 0;
    margin-left: 50px;
}

.channels-section .top-part h2:first-child {
    margin-left: 0;
    color: var(--main-blue);
}

.channels-section .channels {
    column-gap: 30px;
    row-gap: 30px;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(4, 1fr);
}

.channels-section .channel {
    background-color: var(--main-blue);
    width: 100%;
    justify-content: space-between;
}

.channels-section .channel .title {
    margin: 0;
    font-size: 19px;
    font-family: 'Poppins-Medium';
    color: #fff;
}

.channels-section .channel .description p {
    color: #fff;
}

.channels-section .channel img {
    width: fit-content;
    margin-bottom: var(--gap);
}

.channels-section .channel .description p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 989px) {
    
    .channels-section .top-part {
        min-width: unset;
        width: 100%;
    }

    .channels-section h2 {
        font-size: 35px;
    }

    .channels-section .description {
        font-size: 14px;
    }

    .channels-section h3 {
        font-size: 20px;
    }

    .channels-section .channels {
        grid-template-columns: 1fr;
    }

    .channels-section .channel {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        column-gap: 20px;
    }

    .channels-section .channel img {
        margin-bottom: 0;
    }

    .channels-section > .container {
        padding-left: 0;
        padding-right: 0;
    }
}