.extern-nieuws {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.nieuws-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.nieuws-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.nieuws-inhoud {
    padding: 1rem;
}

.nieuws-datum {
    font-size: 0.85rem;
    color: #888;
}

.nieuws-inhoud h3 {
    margin: 0.5rem 0;
}

.nieuws-inhoud h3 a {
    text-decoration: none;
    color: inherit;
}

.lees-verder {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    color: #0073aa;
}
