.popular {
    text-decoration: none;
}
.popular__top {
    height: 140px;
    position: relative;
    background: 50% no-repeat #fff;
    background-size: cover;
    border-radius: 4px 4px 0 0;
}
.popular__top img {
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popular__bottom {
    background: #fff;
    padding: 12px 16px 16px;
}
.popular__bottom h3,
.popular__bottom .h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
    transition: all .3s;
}
.popular:hover .popular__bottom h3,
.popular:hover .popular__bottom .h3 {
    color: #0868C2;
}
.popular__note {
    font-size: 14px;
    line-height: 20px;
    color: #788290;
}
@media (min-width: 768px) {
    .popular__bottom h3,
    .popular__bottom .h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .popular__top {
        height: 172px;
    }
    .popular__bottom {
        padding: 20px 24px 28px;
    }
}
@media (min-width: 1260px) {
    .popular-list [data-js-block-carousel] {
        display: grid;
        display: -ms-grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
        -ms-grid-rows: 1fr 20px 1fr;
        grid-gap: 20px 24px;
    }
    .popular-list [data-js-block-carousel] > * {
        display: block;
        -ms-grid-row-align: start;
    }
    .popular-list [data-js-block-carousel] > *:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
    }
    .popular-list [data-js-block-carousel] > *:nth-child(2) {
        -ms-grid-column: 3;
        -ms-grid-row: 1;
    }
    .popular-list [data-js-block-carousel] > *:nth-child(3) {
        -ms-grid-column: 5;
        -ms-grid-row: 1;
    }
    .popular-list [data-js-block-carousel] > *:nth-child(4) {
        -ms-grid-column: 7;
        -ms-grid-row: 1;
    }
    .popular-list [data-js-block-carousel] > *:nth-child(5) {
        -ms-grid-column: 1;
        -ms-grid-row: 3;
    }
    .popular-list [data-js-block-carousel] > *:nth-child(6) {
        -ms-grid-column: 3;
        -ms-grid-row: 3;
    }
    .popular-list [data-js-block-carousel] > *:nth-child(7) {
        -ms-grid-column: 5;
        -ms-grid-row: 3;
    }
    .popular-list [data-js-block-carousel] > *:nth-child(8) {
        -ms-grid-column: 7;
        -ms-grid-row: 3;
    }
}