/**
 * SECTION PÉDAGOGIE - FLUIDANSE
 * Styles classiques pour la section présentation de la pédagogie
 */

/* === SECTION PÉDAGOGIE === */
#pedagogie {
    background: var(--fluidanse-blanc);
}

.pedagogie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.pedagogie-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--fluidanse-gris);
    margin-bottom: 1.5rem;
}

.pedagogie-content p:first-child {
    font-weight: 600;
    color: var(--fluidanse-rouge);
    font-size: 1.2rem;
}

.pedagogie-content p:last-child {
    color: var(--fluidanse-rouge);
    font-weight: 500;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .pedagogie-content {
        text-align: left;
    }
    
    .pedagogie-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pedagogie-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
} 