/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.latest-blog-posts {
    padding: 96px 0;
    background-color: #FAFCFF;
}

.latest-blog-posts__title {
    font-size: 32px;
    line-height: 42px;
    font-family: "Urbanist-SemiBold";
    color: #2A2243;
    text-align: center;
    margin-bottom: 32px;
}

.latest-blog-posts__title--highlight {
    color: #4A90E2;
}

.latest-blog-posts__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #2A2243;
    font-family: "Urbanist-Medium";
    text-align: center;
    margin: 0 auto 48px auto;
    max-width: 800px;
}

.latest-blog-posts__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

@media (max-width: 768px) {
    .latest-blog-posts__title {
        font-size: 24px;
        line-height: 1.4;
    }
}

@media (max-width: 550px) {
    .latest-blog-posts__grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

        .latest-blog-posts {
            padding: 48px 0;
        }
}