/* Hero zichtbaarheids-fix — zorgt dat de hero altijd toont, ongeacht body-variant-class. */

.site-main {
    display: block !important;
    min-height: 200px;
}

.site-main > section,
.site-main > .hero-content-first,
.site-main > .hero-classic {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
}

.hero-content-first {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 48px 0 64px;
}

.hero-content-first .container {
    display: block;
}

.hero-content-first .ed-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-content-first .ed-hero-grid {
        grid-template-columns: 1fr;
    }
}

.hero-content-first .ed-hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
}

.hero-content-first .ed-hero-copy .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent, #d4774a);
}

.hero-content-first .ed-hero-copy .dek {
    font-size: 1.125rem;
    color: var(--color-muted, #555);
    margin: 0 0 1.5rem;
}

.hero-content-first .ed-hero-photo-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f3eee8;
    aspect-ratio: 4/5;
}

.hero-content-first .ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.875rem;
}

.hero-inline-search {
    margin-top: 32px;
    background: #fff;
    border: 1px solid var(--color-border, #e5e0d9);
    border-radius: 12px;
    padding: 8px;
}

.hero-search-form {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.hero-search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    flex: 1;
    border-right: 1px solid var(--color-border, #e5e0d9);
}

.hero-search-field:last-of-type {
    border-right: none;
}

.hero-search-field input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    padding: 12px 0;
    font: inherit;
}

@media (max-width: 720px) {
    .hero-search-form {
        flex-direction: column;
    }
    .hero-search-field {
        border-right: none;
        border-bottom: 1px solid var(--color-border, #e5e0d9);
    }
}
