/* ── Extern Nieuws – grid ── */
.extern-nieuws {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem 42px;
}

/* ── Nieuws-item kaart ── */
.nieuws-item {
    display: flex;
    flex-direction: column;
}

/* ── Afbeelding ── */
.nieuws-item__afbeelding {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.nieuws-item__afbeelding img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.nieuws-item__afbeelding:hover img {
    transform: scale(1.03);
}

/* ── Tekst-inhoud ── */
.nieuws-item__inhoud {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Titel (altijd h3) ── */
.nieuws-item__inhoud h3 {
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: inherit;
    margin: 0 0 6px;
}

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

.nieuws-item__inhoud h3 a:hover {
    text-decoration: underline;
}

/* ── Datum ── */
.nieuws-item__datum {
    display: block;
    font-family: inherit;
    font-size: 0.875em;
    color: #717a8c;
    margin-bottom: 20px;
}

/* ── Introtekst ── */
.nieuws-item__intro {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: #8c8c8c;
    margin: 0 0 1rem;
    flex: 1;
}

/* ── Lees verder ── */
.nieuws-item__lees-verder {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    text-decoration: none;
    color: #e8650a;
    margin-top: auto;
}

.nieuws-item__lees-verder:hover {
    text-decoration: underline;
}
