.news-grid {
    display: grid;
    column-gap: 1.5rem;
    row-gap: 4rem;
}

.news-grid .item {
    /* Individual news card */
}

.news-grid .image-link {
    display: block;
}

.news-grid .image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.news-grid .image-placeholder {
    background-color: #d0d0d0;
}

.news-grid .image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-grid .title {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.news-grid .teaser {
    font-size: 0.9em;
    line-height: 1.5;
    min-height: calc(1.5em * 4);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-grid .teaser > * {
    margin: 0;
    display: inline;
}

.news-grid .read-more-wrap {
    margin-top: 0.75rem;
    text-align: center;
}

.news-grid .read-more {
    display: inline-block;
    padding: 0.45em 1.2em;
    background-color: #3a3a3a;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

.news-grid .read-more:hover {
    background-color: #555555;
    color: #ffffff;
}

@media (max-width: 798px) {
    .news-grid {
        grid-template-columns: 1fr !important;
    }
}
