.popularPosts {
    margin-bottom: 40px;
    padding-top: 16px;
}

.popularPosts__item {
    position: relative;
    width: 100%;
}

.popularPosts__imageWrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 3px;
    padding-top: 56%;
}

.popularPosts__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: transform .3s ease-out;
}

.popularPosts__item:hover .popularPosts__image {
    transform: scale(1.05);
}

.popularPosts__title {
    padding-top: .3em;
    font-size: 1.375em;
}

.popularPosts__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media screen and (min-width: 376px) {
    .popularPosts__item {
        width: calc(50% - 24px);
    }
}

@media screen and (min-width: 768px) {
    .l-cl-md-8 .popularPosts__item {
        width: calc(33.3333% - 24px);
    }

    .l-cl-12 .popularPosts__item {
        width: calc(25% - 24px);
    }
}

/**
 * in main menu
 */

.menu__wrapper--hl .popularPosts__item {
    width: calc(33.3333% - 16px);
}

.menu__wrapper--hl .popularPosts__item:nth-child(1n+4) {
    display: none;
}
