.latest-articles {
    font-size: 0;
}
.latest-article {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 10px);
    margin-bottom: 50px;
    border: 1px solid #CCCCCC;
}
.latest-article:last-child,
.latest-article:nth-last-child(2) {
    margin-bottom: 0;
}
.latest-article:nth-child(2n + 1) {
    margin-right: 20px;
}
.latest-article .image-section,
.latest-article .info-section {
    display: inline-block;
    vertical-align: top;
}
.latest-article .image-section {
    width: 146px;
    height: 146px;
}
.latest-article .image-section img {
    width: 100%;
    height: 100%;
}
.latest-article .info-section {
    width: calc(100% - 146px);
    height: 146px;
    padding: 12px 20px;
    font-size: 14px;
}
.latest-article .info-section-inner {
    height: 100%;
    overflow: hidden;
}
.latest-article .info-section .link {
    display: block;
    max-height: 48px;
    line-height: 25px;
    margin-bottom: 8px;
    font-size: 19px;
    overflow: hidden;
}
.latest-article .info-section .author {
    font-weight: bold;
}
.latest-article .text {
    margin-top: 8px;
    color: var(--footer-text-color);
}

@media (max-width: 767px)
{
    .latest-articles h3 {
        margin: 0 0 15px 0;
    }
    .latest-article {
        width: 100%;
        margin-bottom: 0;
    }
    .latest-article:not(:last-child) {
        margin-bottom: 15px;
    }
    .latest-article:nth-child(2n + 1) {
        margin-right: 0;
    }
    .latest-article .info-section {
        padding: 10px 15px;
    }
}

/* Mobile */
@media (max-width: 400px)
{
    .latest-article .image-section {
        display: none;
    }

    .latest-article .info-section {
        width: 100%;
        height: 100%;
    }
}