.recommended-articles__wrapper {
    max-width: 820px;
    margin-bottom: 20px;
}

#app .recommended-articles__wrapper {
    content-visibility: visible;
}

.recommended-articles__title {
    margin-top: 0;
    font-weight: 700;
}

.recommended-articles__articles {
    display: flex;
    justify-content: space-between;
}

.recommended-articles__article {
    width: 404px;
    display: flex;
    flex-flow: column;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.recommended-articles__article-image-link {
    display: block;
    width: 100%;
    height: 153px;
    margin-bottom: 8px;
}

.recommended-articles__article-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommended-articles__article-title-link {
    display: block;
    margin-bottom: auto;
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #1c2642;
    padding: 0 16px 20px;
}

.recommended-articles__article-title-link:hover,
.recommended-articles__article-title-link:focus,
.recommended-articles__article-title-link:active {
    color: #1c2642;
    text-decoration: none;
}

.recommended-articles__meta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

.recommended-articles__author-section-link,
.recommended-articles__date {
    display: flex;
    align-items: center;
}

.recommended-articles__author-section-link img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 8px;
}

.recommended-articles__date svg {
    margin-right: 5px;
}

.recommended-articles__author-section-link span,
.recommended-articles__date span {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #888888;
}

.recommended-articles__author-section-link:hover,
.recommended-articles__author-section-link:focus,
.recommended-articles__author-section-link:active {
    color: #888888;
    text-decoration: none;
}

@media screen and (max-width: 992px) {
    .recommended-articles__wrapper, .recommended-articles__title {
        margin-bottom: 9px;
    }

    .recommended-articles__articles {
        justify-content: flex-start;
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        position: relative;
        width: calc(100% + 30px);
        left: -15px;
        padding: 15px 0 15px 15px;
    }

    .recommended-articles__articles::-webkit-scrollbar {
        display: none;
    }

    .recommended-articles__article {
        width: 262px;
        margin-right: 8px;
        flex-grow: 0;
        flex-shrink: 0;
    }
}
