.popular-directions {
    background-color: #F8F8F6;
    padding: 0;
}

.popular-directions .container {
    margin: 0 auto!important;
}

.popular-directions.articles .container {

}

.popular-directions_list, .slider-articles_items-list {
    margin-top: 24px;
}


.popular-directions_item {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    height: inherit;
    transition: .3s;
}

.popular-directions_link {
    display: block;
    color: white;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            180deg,
            rgba(19, 24, 30, 0) 0%,
            rgba(19, 24, 30, 0.6) 100%
    );
}

.popular-directions_back {
    box-sizing: border-box;
    background-color: rgba(19, 24, 30, 0);
    will-change: background-color;
    transition: linear .3s background-color;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 24px 32px 24px;
    display: flex;
    align-items: end;
}

.popular-directions_back:after {
    content: '';
    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: .3s all;
    background: linear-gradient( 180deg, rgba(19, 24, 30, 0) 50%, rgba(19, 24, 30, 1) 100% );
}

.popular-directions__content:not(.mobile) {

    height: 100%;
    max-height: 0;
    transition: all .3s;
    overflow: hidden;
}



.popular-directions_item:hover .popular-directions__content:not(.large) {
    max-height: 100%;
}

.popular-directions_item:hover .popular-directions__content.large {
    max-height: 100%;
}
.popular-directions_item:hover .popular-directions_back {
    background-color: rgba(19, 24, 30, 1);
}
.popular-directions_item:hover .popular-directions_back:after {
    opacity: 0;
}

@media (pointer:coarse) {
    .popular-directions_item:hover .popular-directions_back {
        background-color: rgba(19, 24, 30, 1);
    }
    .popular-directions_item:hover .popular-directions_back:after {
        opacity: 0;
    }
}


.popular-directions_text {
    margin-top: 16px;
    color: #BEC6CE;
    font-family: 'Inter', sans-serif;
    line-height: 21px;
}

.popular-directions__title {
    font-family: "Roboto Slab", Arial, sans-serif;
    font-size: 22px;
    z-index: 1;
    position: relative;
    font-weight: bold;
}

.popular-directions_button {
    margin-top: 40px;
    color: #0FC4AC;
    text-align: center;
    padding: 8px 24px 8px 24px;
    border-radius: 8px;
    border: 1px solid #0FC4AC;
    width: 100%;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 21px;
}



.popular-directions.articles .popular-directions_back {
    padding: 0 16px 24px 16px;
}


