/* VIFPROTECT - Styles espace enfants */

.vif-enfant {
    background: #fef9f3;
}

.vif-enfant .vif-main {
    max-width: 640px;
}

/* Menu des etapes */
.vif-enfant-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 32px;
}

.vif-enfant-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 4px;
    background: #fff;
    border: 2px solid #ffd9a8;
    border-radius: 12px;
    text-decoration: none;
    color: #1c1c1e;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.15s;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
}

.vif-enfant-menu-item:active {
    background: #fff5e6;
}

.vif-enfant-menu-icon {
    font-size: 28px;
    margin-bottom: 4px;
}

/* Sections */
.vif-enfant-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 2px solid #ffd9a8;
}

.vif-enfant-section-titre {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1c1c1e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vif-enfant-texte {
    font-size: 16px;
    line-height: 1.7;
    color: #1c1c1e;
}

.vif-enfant-texte p {
    margin: 0 0 14px;
}

.vif-enfant-texte ul,
.vif-enfant-texte ol {
    padding-left: 24px;
    margin: 0 0 14px;
}

.vif-enfant-texte li {
    margin-bottom: 8px;
}

.vif-enfant-texte strong {
    color: #1c1c1e;
    font-weight: 600;
}

.vif-enfant-texte h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #1c1c1e;
}

/* Boutons */
.vif-enfant-boutons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.vif-enfant-btn {
    display: block;
    padding: 16px 20px;
    background: #ff9500;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.vif-enfant-btn:active {
    background: #e08600;
}

.vif-enfant-btn.secondary {
    background: #fff;
    color: #1c1c1e;
    border: 2px solid #ffd9a8;
}

/* Adaptation mobile */
@media (max-width: 400px) {
    .vif-enfant-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pour les plus jeunes (6-8) : texte plus grand */
.vif-enfant .vif-enfant-texte p {
    font-size: 17px;
    line-height: 1.8;
}