/* ================================================
   Homepage — uitgelicht project (schermbrede foto/video,
   kicker/titel/tekst/knop binnen de normale containerbreedte)
   ================================================ */
.featured-project-section {
    position: relative;
    min-height: 620px;
    height: 78vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--color-primary, #00532D);
}

.featured-project-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.featured-project-media img,
.featured-project-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-project-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 20, 10, 0.75) 100%);
    pointer-events: none;
}

.featured-project-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 72px;
}

.featured-project-kicker {
    color: var(--color-cta, #C9A96E);
}

.featured-project-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 34px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    max-width: 640px;
}

.featured-project-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 0 28px;
}

.featured-project-btn {
    background: #fff;
}
.featured-project-btn:hover {
    background: var(--color-primary, #00532D);
    color: #fff;
}

@media (max-width: 767px) {
    .featured-project-section {
        min-height: 480px;
    }
    .featured-project-title {
        font-size: 26px;
    }
    .featured-project-inner {
        padding-bottom: 48px;
    }
}
