/* Pagina: Over de Kringwinkel */

/* ── Merkkleuren als achtergrond/tekst ─────────────────────────────── */
.kw-bg-oranje { background-color: var(--kringwinkel-oranje); }

.kw-text-oranje { color: var(--kringwinkel-oranje); }
.kw-text-blauw  { color: var(--kringwinkel-blauw); }

/* ═══════════════ Hero ═══════════════ */
.kw-hero {
    width: 100%;
    min-height: 200px;
    z-index: 0;
    padding-top: 20px;
    background-color: var(--bs-orange);
    color: #fff;
}

@media only screen and (max-width: 600px) {
    .kw-hero {
        min-height: 160px;
    }
}

/* ═══════════════ Titels ═══════════════ */
.kw-over-feature-title {
    font-family: parafina, sans-serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 4.6vw, 3.8rem);
    line-height: 1.05;
}

.kw-over-block-title {
    font-family: parafina, sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
}

/* Kicker boven een blok-titel — groot, in parafina */
.kw-over-eyebrow {
    display: block;
    font-family: parafina, sans-serif;
    margin-bottom: 0.25rem;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--kringwinkel-oranje);
}

/* Subtitel onder de kicker — in cooper, oranje */
.kw-over-subtitle {
    font-family: "cooper", Helvetica, sans-serif;
    text-transform: none;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.15;
    color: var(--kringwinkel-oranje);
}

/* ═══════════════ Tabs (Kringwinkel, dat is…) ═══════════════ */
/* Kaart rond het hele tab-geheel */
.kw-over-tabs-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-gray-200);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(35, 31, 32, .06);
    overflow: hidden;
}

/* Bovenbalk met de tab-knoppen */
.kw-over-tabs.nav-tabs {
    flex-wrap: nowrap;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    margin: 0;
    background: var(--bs-gray-100);
    border-bottom: 1px solid var(--bs-gray-200);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.kw-over-tabs.nav-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 0 auto;
    border: 2px solid var(--bs-gray-300);
    border-radius: 10px;
    padding: 0.7rem 1.15rem;
    background: var(--bs-body-bg);
    font-family: parafina, sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--bs-gray-600);
    white-space: nowrap;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}

.kw-over-tab-icon {
    font-size: 0.9em;
}

.kw-over-tabs.nav-tabs .nav-link:hover {
    color: var(--kringwinkel-oranje);
    border-color: var(--kringwinkel-oranje);
    background: var(--bs-body-bg);
}

.kw-over-tabs.nav-tabs .nav-link.active {
    color: var(--bs-white);
    background: var(--kringwinkel-oranje);
    border-color: var(--kringwinkel-oranje);
}

/* Inhoudspaneel binnen de kaart */
.kw-over-tab-content {
    padding: 2.25rem;
}

@media (max-width: 575.98px) {
    .kw-over-tab-content {
        padding: 1.5rem 1.25rem;
    }
}

/* ═══════════════ Feature-blokken ═══════════════ */
.kw-over-feature-img {
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ═══════════════ Cijferblokken ═══════════════ */
/* Oranje blokken, witte tekst */
.kw-over-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2.25rem 1.5rem;
    min-height: 240px;
    height: 100%;
    border-radius: 10px;
    color: var(--bs-white);
}

.kw-over-stat-number {
    font-family: parafina, sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 5vw, 4rem);
    line-height: 1;
    color: var(--bs-white);
}

.kw-over-stat-unit {
    font-family: parafina, sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 0.35rem;
    color: var(--bs-white);
}

.kw-over-stat-label {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-top: 0.85rem;
    width: 100%;
    max-width: 220px;
    opacity: 0.92;
}

/* ═══════════════ Citaat ═══════════════ */
/* Foto naast het citaat — zelfde uitstraling als de jobpagina (kw-job-photo) */
.kw-over-quote-wrap {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
}

.kw-over-quote-photo {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.kw-over-quote-wrap .kw-over-quote {
    flex: 1 1 auto;
}

@media (max-width: 575.98px) {
    .kw-over-quote-wrap {
        flex-direction: column;
    }

    .kw-over-quote-photo {
        flex-basis: 120px;
        width: 120px;
        height: 120px;
    }
}

.kw-over-quote {
    position: relative;
    margin: 0;
    padding: 3rem 2.5rem 2rem 4.75rem;
    background-color: var(--bs-gray-100);
    border-radius: 10px;
}

/* Grote decoratieve aanhalingstekens in de merkkleur (typografisch, geen icoon) */
.kw-over-quote::before {
    content: "\201C";
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    font-family: "cooper", Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--kringwinkel-oranje);
}

.kw-over-quote-text {
    font-family: "cooper", Helvetica, sans-serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.4;
    color: var(--bs-body-color);
    margin-bottom: 1.25rem;
}

.kw-over-quote-author {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.kw-over-quote-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--kringwinkel-oranje);
}

.kw-over-quote-role {
    font-size: 1.1rem;
    color: var(--bs-gray-600);
}

@media (max-width: 575.98px) {
    .kw-over-quote {
        padding: 2.75rem 1.5rem 1.5rem 1.5rem;
    }

    .kw-over-quote::before {
        top: 0.5rem;
        left: 1rem;
        font-size: 3.5rem;
    }
}
