.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 5vh;
}

/* ITEM */
.news-item {
    background: #fff;
    border-radius: 12px;
    border: 2px solid var(--color);
    overflow: hidden;
}

/* TITLE */
.news-title, .news-art h1 {
    margin: 0;
    padding: 10px 14px;
    background: var(--color);
    font-size: 26px;
    color: #fff;
    background: var(--color);
}

/* CONTENT */
.news-item, .news-art {
    line-height: 1.65;
    display: block;
    color: #444;
}

.news-item img, .news-art img {
    width: 100%;
    height: auto;
}

.news-art img {
    margin-bottom: 1vh;
}

.news-item p, .news-art p {
    padding: 1.65rem 5%;
}
/* LINKS */
.news-item a, .news-art a {
    color: var(--color);
    text-decoration: underline;
}

.news-item a:hover, .news-art a:hover {
    text-decoration: none;
}

/* CLEAR FLOATS */
.news-item::after, .news-art::after {
    content: "";
    display: block;
    clear: both;
}

/* MOBILE */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-img {
        float: none !important;
        max-width: 100%;
        display: block;
        margin: 10px 0;
    }
}
