/* ======================
   Fase kaarten
   ====================== */
.stijl-dna-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stijl-dna-phase {
    background: #F5F3F0;
    border-radius: 5px;
    padding: 24px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.stijl-dna-phase.is-active {
    background: #fff;
    border-color: #3A5F51;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.stijl-dna-phase.is-locked {
    opacity: 0.7;
    cursor: not-allowed;
}

.stijl-dna-phase:not(.is-active):not(.is-locked):hover {
    border-color: #ccc;
    background: #f0f0ee;
}

.stijl-dna-phase-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stijl-dna-phase.is-active .stijl-dna-phase-label {
    color: #1a3c34;
}

.stijl-dna-phase-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.stijl-dna-phase-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.45;
    margin-bottom: 12px;
}

.stijl-dna-phase-progress {
    font-size: 0.85rem;
    color: #1a3c34;
    font-weight: 500;
}

.stijl-dna-phase-note {
    font-size: 0.85rem;
    color: #999;
}

.stijl-dna-lock {
    font-size: 14px;
}

.stijl-dna-phase:not(.is-locked) .stijl-dna-lock {
    display: none;
}

@media (max-width: 800px) {
    .stijl-dna-phases {
        grid-template-columns: 1fr;
    }
}