.content-width {
    max-width: 1252px;
    margin: 0 auto 50px;
    padding: 0 20px;

    .articles-h2 {
        color: #236192;
        font-family: 'Lato';
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        text-align: center;
        line-height: normal;
        margin-bottom: 26px;
    }

    .articles {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 18px;

        article {
            flex-basis: calc(25% - 13.5px);
        }

        img {
            width: 100%;
            height: 244px;
            object-fit: cover;
            object-position: center center;
        }

        .post-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 20px;
            border-bottom: 4px solid #236192;
            background: #F5F5F5;
            align-items: flex-start;
            height: calc(100% - 244px);
            justify-content: space-between;
        }

        .top-content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .post-date {
            color: #808080;
            font-size: 14px;
            line-height: 1.5em;
        }

        .post-heading {
            font-size: 20px;
            color: #236192;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .post-post-content {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            text-overflow: ellipsis;
            overflow: hidden;
        }
    }
}
@media screen and (max-width: 1024px) {
    .content-width .related-articles {
        gap: 30px;
    }
    .content-width .related-articles article {
        flex-basis: calc(33.3333% - 20px);
    }
    .content-width .related-articles img {
        height: 200px;
    }
    .content-width .related-articles .post-content {
        height: calc(100% - 200px);
    }
}

@media screen and (max-width: 767px) {
    .content-width .industry-large-h2 {
        font-size: 28px;
    }
    .content-width .related-articles {
        flex-direction: column;
    }
}