:root {
    --green-dark: #1b4332;
    --green: #2d6a4f;
    --green-light: #95d5b2;
    --bg: #F5F1E9;
    --text: #1d1d1d;
    --accent: #E88173;
}
* { box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
}


header {
    background: linear-gradient(90deg, rgba(45,106,79,0.95) 0%, rgba(27,67,50,0.95) 100%);
    background-repeat: repeat;
    background-size: auto;
    background-blend-mode: multiply;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: white;
    text-align: center;

}

header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

main {
    max-width: 850px;
    margin: auto;
    padding: 3rem 2rem;
    text-align: center;

    &.newspage {
        max-width: 850px;
        text-align: left;
    }
    &.home {
        padding-bottom: 0;
    }
}

p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    margin-block-start: 0;
}

a {
    color: #E88173;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #E88173;
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    margin-bottom: 1.5rem;
}

.logos {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.logos img {
    max-height: 105px;
    transition: transform 0.3s ease;
}

footer {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 0.8rem;
    color: #555;
    margin:auto;
}

.intro-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--green);
}

.logo-hover-container {
    position: relative;
    display: inline-block;
}

.logo-hover-container img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-hover-container:hover img.hover {
    opacity: 1;
}

.logo-hover-container:hover img.base {
    opacity: 0;
}

@media (max-width: 600px) {
    header {
        padding: 1rem 1rem;
    }

    header h1 {
        font-size: 2rem;
    }
    .intro-heading {
        margin-bottom:1.5rem;
    }

    main {
        padding: 1rem 1rem 0 1rem;
    }
    footer {
        padding:1rem 0;
    }
    .logos {
        padding:1rem;
        margin-top: 2rem;
        gap: 0;
    }
    .logos img {
        max-height: 85px;
        margin-bottom: .5rem;
    }
}

.section-divider {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #ddd;
    width: 100%;
}

.news {
    max-width: 850px;
    margin: 3rem auto;
    text-align: left;
    padding: 0 2rem;
}

.news-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.news-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.news-item p:last-child {
    margin-bottom: 0;
}

.news-item h3 {
    margin-top: 0;
    margin-bottom: .25rem;
    color: var(--green-dark);
}
.news-date {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 0.5rem 0;
}

article h2 {
    font-size: 1.8rem;
    margin: .25rem 0 0.5rem;
    color: var(--green-dark);
}

.press-meta {
    color: #555;
    font-size: .95rem;
    margin: 0 0 1.25rem 0;
}
.press-meta time { white-space: nowrap; }

.press-quote {
    border-left: 4px solid var(--green-light);
    padding: .75rem 1rem;
    margin: 1rem 0 2rem 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.press-quote p { margin: .3rem 0; }
.quote-author { font-weight: 600; color: var(--green-dark); }

.section-title {
    font-weight: 700;
    color: var(--green);
    margin-top: 2rem;
    margin-bottom: .5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.image-holder {
    background: url("../images/news/sebastiaan_dekkers_x_new_dawn_bio.webp") center / cover no-repeat;
    aspect-ratio: 16 / 9;   /* maakt ’m responsive zonder vaste hoogte */
    max-width: 960px;
    margin: 1.5rem auto;
    border-radius: 12px;
}

.news-item {
    display: grid;
    grid-template-columns: 160px 1fr; /* thumbnail links, tekst rechts */
    gap: 1rem;
    margin-bottom: 2rem;
}

.thumb-holder {
    display: block;
    background: url("../images/news/thumbs/newdawn_thumb.webp") center / cover no-repeat;
    aspect-ratio: 4 / 3;   /* houdt de verhouding vast */
    border-radius: 8px;
}

/* mobiel: onder elkaar stapelen */
@media (max-width: 600px) {
    .news-item {
        grid-template-columns: 1fr;
    }
    .thumb-holder {
        width: 100%;
    }
}