

.wc-widget-section {
    margin-bottom: 2rem;
}

/* Container (alleen layout — geen tekststijl meer hier) */
.wc-widget {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Inter', Arial, sans-serif;
}

/* Kop */
.wc-header h2,
.wc-header .higlight-h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.4rem 0;
    line-height: 1.25;
    letter-spacing: 0.04em;
}

.wc-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

/* =================================
   TIJDLIJN
================================= */
.wc-timeline {
    display: flex;
    align-items: flex-start;   /* bollen lijnen bovenaan; lijn krijgt eigen offset */
    margin-bottom: 1.8rem;
    max-width: 700px;
}

.wc-tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
}

.wc-tl-dot {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-dim);
    background: rgba(248, 231, 192, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.22s;
}

.wc-tl-item.wc-active .wc-tl-dot {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-dim);
}

.wc-tl-item:hover:not(.wc-active) .wc-tl-dot {
    background: rgba(212, 175, 55, 0.12);
    transform: scale(1.08);
}

.wc-tl-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    transition: color 0.2s;
}

.wc-tl-item.wc-active .wc-tl-label {
    color: var(--primary);
    font-weight: 600;
}

/* Lijn op het midden van de bol (55/2 ≈ 27px) */
.wc-tl-line {
    flex: 1;
    height: 1px;
    background: var(--primary-dim);
    margin-top: 27px;
}

/* =================================
   KAART
================================= */
.wc-card {
    max-width: 860px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
    transition: opacity 0.2s;
    margin-bottom: 1.8rem;
    background: rgba(248, 231, 192, 0.03);
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
}

.wc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.7rem;
    /* kleur komt per techniek uit de JS (inline style) */
}

.wc-card-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.1rem;
    letter-spacing: 0.03em;
}

.wc-card-chin {
    font-size: 0.82rem;
    color: var(--primary);
    opacity: 0.85;
    margin-bottom: 0.9rem;
}

.wc-card-desc {
    margin-bottom: 1rem;
    padding: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    max-width: none !important;
    border: none !important;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.wc-card-props {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wc-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.wc-prop-icon { font-size: 15px; flex-shrink: 0; }

/* Rechter kolom: figuur + balken */
.wc-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 140px;
}

.wc-figure-wrap {
    display: flex;
    justify-content: center;
    height: 220px;
}

.wc-levels {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wc-level-label {
    font-size: 11px;
    color: var(--primary);
    opacity: 0.75;
    margin-bottom: 3px;
}

.wc-level-bar {
    height: 4px;
    background: var(--primary-dim);
    border-radius: 2px;
    overflow: hidden;
}

.wc-level-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.6s ease;
    /* kleur per techniek uit de JS (inline style) */
}

/* =================================
   MOBIEL
================================= */
@media (max-width: 768px) {
    .wc-widget-section {
        margin-left: 0;
        margin-right: 0;
    }

    .wc-card {
        grid-template-columns: 1fr;
        padding: 1.25rem 1rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .wc-card-right {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .wc-levels { flex: 1; min-width: 140px; }

    .wc-tl-dot  { width: 36px; height: 36px; font-size: 16px; }
    .wc-tl-label { font-size: 0.72rem; }

    .wc-tl-line { margin-top: 18px; }
}