section.related-articles-wrapper {
    background: #A997680D;
    padding: 20px;
}

h4.related-articles-title {
    font-family: Alike;
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: #006C7B;
    margin: 0;
}

.related-articles-boxes {
    display: flex;
    gap: 20px;
}

.related-article-box {
    background: #A997681A;
    display: flex;
    width: 100%;
    /* width: 150px; */
    /* height: 150px; */
}

.related-article-box-image {
    flex: 1;
    max-height: 140px;
    background-size: cover;
    background-position: center;
}

.related-article-box-meta {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 11px;
}

.related-article-box-meta h4 {
    font-family: Lato;
    font-size: 1rem !important;
    /* font-weight: 700; */
    line-height: 23px;
    text-align: left;
    color: #A99768;
    margin: 0 !important;
}

.related-article-box-meta svg {
    width: 22px;
}

@media screen and (max-width:700px) {
    .related-articles-boxes {
        flex-wrap: wrap;
    }

    a.related-article-box {
        flex-wrap: wrap;
        width: 100%;
        flex-direction: column;
    }

    .related-article-box-image {
        width: 100%;
        max-height: initial;
        flex: initial;
    }
}