/**
 * Vacature-extra blokken: quote, foto/video, vervolgstappen, recruiter-kaart.
 * Gekoppeld op functie/filiaal/regio via includes/vacancy-content.php.
 * Huisstijl: donkerblauw/knalblauw/geel/oranje. Radius-tokens: 12px kaarten, 6px controls.
 */

/* ── Quote (zelfde look als de /contact-testimonial, maar als kaart in de kolom) ── */
.vac-quote-block { margin-top: 2rem; }
.vac-quote {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0;
    padding: 2rem;
    background: var(--kwikfit-donkerblauw);
    color: #fff;
    border-radius: 12px;
}
.vac-quote-portrait {
    position: relative;
    width: 130px;
    height: 130px;
    flex-shrink: 0;
}
.vac-quote-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--kwikfit-geel);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.vac-quote-portrait::after {
    content: 'format_quote';
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 1;
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--kwikfit-knalblauw);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.vac-quote-body {
    flex: 1;
    min-width: 0;
}
.vac-quote-text {
    margin: 0;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}
.vac-quote-cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--kwikfit-geel);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ── Foto/video ──────────────────────────────────────── */
.vac-team-block { margin-top: 2rem; }
.vac-team {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
}
.vac-team img,
.vac-team video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.vac-team figcaption {
    padding: 0.75rem 1rem;
    background: #f3f4f6;
    color: var(--kwikfit-donkerblauw);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ── Vervolgstappen ──────────────────────────────────── */
.vac-steps-block { margin-top: 2rem; }
.vac-steps {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    counter-reset: vacstep;
}
.vac-step {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    position: relative;
}
.vac-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: 0;
    width: 2px;
    background: var(--kwikfit-knalblauw);
    opacity: 0.3;
}
.vac-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kwikfit-knalblauw);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
}
.vac-step-body strong {
    display: block;
    color: var(--kwikfit-donkerblauw);
    margin-bottom: 0.2rem;
}
.vac-step-body p { margin: 0; }

/* ── Recruiter-kaart (sidebar) ───────────────────────── */
.vac-recruiter {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.vac-recruiter-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--kwikfit-knalblauw);
}
.vac-recruiter-info strong {
    display: block;
    font-size: 1.05rem;
    color: var(--kwikfit-donkerblauw);
    margin-bottom: 0.6rem;
}
.vac-recruiter-bio {
    font-size: 0.85rem;
    margin: 0.35rem 0 0.5rem;
    color: #555;
}
.vac-recruiter-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--kwikfit-donkerblauw);
    text-decoration: none;
    margin: 0 0 0.85rem;
    font-weight: 600;
}
.vac-recruiter-link:last-child { margin-bottom: 0; }
.vac-recruiter-link:hover { color: var(--kwikfit-knalblauw); }
.vac-recruiter-link .material-symbols-outlined { font-size: 20px; color: var(--kwikfit-knalblauw); }
.vac-recruiter-link .whatsapp-icon { width: 20px; height: 20px; }

@media (max-width: 600px) {
    .vac-quote { flex-direction: column; text-align: center; padding: 1.75rem 1.25rem; gap: 1.25rem; }
    .vac-quote-portrait { width: 104px; height: 104px; }
    .vac-quote-text { font-size: 1.1rem; }
}
