/* ── NEWS SECTION ── */
#news {
    background: #ffffff;
    padding: 80px 0 96px;
}

.news__inner {
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── H2 ── */
.news__title {
    font-family: 'Orelega One', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0;
    color: #19352B;
    margin: 0 0 40px;
}

/* ── GRID ── */
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

/* ── CARD ── */
.news-card {
    display: flex;
    flex-direction: column;
}

/* Afbeelding */
.news-card__image-link {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}
.news-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
}
.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform .3s ease;
}
.news-card__image-link:hover .news-card__image img {
    transform: scale(1.03);
}

/* Datum */
.news-card__date {
    display: block;
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #955A3E;
    margin-bottom: 12px;
}

/* H3 */
.news-card__title {
    font-family: 'Orelega One', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0;
    color: #19352B;
    margin: 0 0 20px;
    flex: 1;
}
.news-card__title a {
    color: inherit;
    text-decoration: none;
    transition: opacity .15s;
}
.news-card__title a:hover {
    opacity: .75;
}

/* Verder lezen */
.news-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #19352B;
    text-underline-offset: 3px;
    transition: opacity .15s;
    text-decoration: none;
}
.news-card__read-more .news-card__link{
    text-decoration: underline;
}
.news-card__read-more:hover {
    opacity: .65;
}
.news-card__arrow {
    font-style: normal;
}

/* ── MEER NIEUWS knop ── */
.news__more {
    display: flex;
    justify-content: center;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    min-width: 147px;
    padding: 0 28px;
    border-radius: 58px;
    border: 1px solid #19352B;
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #19352B;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.btn-outline:hover {
    background: #19352B;
    color: #ffffff;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .news__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news__title {
        font-size: 36px;
        line-height: 44px;
    }
}
@media (max-width: 600px) {
    #news {
        padding: 48px 0 64px;
    }
    .news__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .news__title {
        font-size: 32px;
        line-height: 38px;
    }
    .news-card__title {
        font-size: 26px;
        line-height: 30px;
    }
}