/* VIFPROTECT - Styles parcours et sections */

.vif-section {
    margin-bottom: 32px;
}

.vif-section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #1c1c1e;
}

.vif-parcours-label-desc {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Grille ages */
.vif-age-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.vif-age-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #1c1c1e;
    text-align: center;
}

.vif-age-card:active {
    background: #f0f0f0;
}

.vif-age-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.vif-age-label {
    font-size: 16px;
    font-weight: 600;
}

/* Cartes info */
.vif-info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.vif-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1c1c1e;
}

.vif-info-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}