/**
 * Chauffeur Beschrijving — Productpagina Styling
 * Gestylde weergave van werkervaring (timeline), beschrijving, highlights en beschikbaarheid.
 */

.chauffeur-beschrijving {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Sectie titels */
.ck-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ck-section-bar {
    width: 4px;
    height: 20px;
    background: #4E6D55;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Timeline */
.ck-timeline {
    position: relative;
    padding-left: 24px;
    margin-bottom: 4px;
}
.ck-timeline::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #e5e7eb;
}
.ck-timeline-item {
    position: relative;
    margin-bottom: 20px;
}
.ck-timeline-item:last-child {
    margin-bottom: 0;
}
.ck-timeline-item::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d1d5db;
    box-shadow: none;
}
.ck-timeline-first::before {
    background: #4E6D55 !important;
    border-color: #fff !important;
    box-shadow: 0 0 0 2px #4E6D55 !important;
}
.ck-timeline-period {
    font-size: 12px;
    font-weight: 700;
    color: #4E6D55;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}
.ck-timeline-company {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.ck-timeline-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Sectie scheidingslijn */
.ck-section-divider {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 28px 0 24px;
}

/* Intro tekst */
.ck-intro-text {
    font-size: 15px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 16px;
}
.ck-intro-text strong {
    color: #1a1a1a;
}

/* Highlight tags */
.ck-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}
.ck-highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f7f2;
    color: #3d5a44;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #d1e7d6;
}

/* Beschikbaarheid */
.ck-availability {
    margin-top: 24px;
    padding: 14px 18px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    font-size: 14px;
    color: #92400e;
}

/* Responsive */
@media (max-width: 600px) {
    .chauffeur-beschrijving {
        padding: 20px 16px;
    }
    .ck-highlights {
        gap: 6px;
    }
    .ck-highlight-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
}
