/*------News------*/
section.news {
    padding: 50px 0;
}
section.news .news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}
section.news .blog-post, section.news .blog-post-wrapper {
    margin: 0 auto;
}
section.news h3 {
    margin: 5px 0 10px;
}
section.news .blog-post img {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    height: auto;
}
section.news .blog-post-wrapper {
    max-width: 10000px;
    width: 100%;
}
@media only screen and (max-width: 900px) {
    section.news .news-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
    }
}
@media only screen and (max-width: 500px) {
    .blog-post-wrapper {
        display: block;
    }
    .blog-post-wrapper .blog-post-date {
        margin: 0;
    }
    .blog-post-wrapper .blog-post-date span:nth-child(1) {
        display: inline;
        font-weight: 300;
        color: var(--main-black);
        font-size: 16px;
        background-color: transparent;
        padding: 0;
        text-align: center;
    }
    .blog-post-wrapper .blog-post-date span:nth-child(2) {
        display: inline;
        font-weight: 300;
        color: var(--main-black);
        font-size: 16px;
        background-color: transparent;
        padding: 0;
    }
}
@media only screen and (max-width: 350px) {
    section.news .blog-post img {
        height: 175px;
    }
}
