.popular-sections{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.popular-sections__item{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.popular-sections__item-name{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    width: 100%;
    color: #212529;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    z-index: 2;
    min-height: 68px;
    display: flex;
    text-align: center;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
}
.popular-sections__item:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 331px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #E2DBD6 100%);
}
@media (max-width: 1100px) {
    .popular-sections {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .popular-sections {
        display: flex;
        overflow: auto;
    }
    .popular-sections__item{
        width: 351px;
        flex-shrink: 0;
    }
}