#body-wrapper .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0.5rem;
}

/* Page Comité */
.comité h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: #3a414e;
    font-size: 1.8rem;
}

.comité ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.comité li {
    background: #fff;
    border-radius: 2px;
    padding: 1.5rem;
    box-shadow: 0 10px 45px -9px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
}

.comité li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px -9px rgba(0, 0, 0, 0.15);
}

.comité li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #454d5d;
    font-weight: 700;
}

.comité li img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 2px;
    margin-top: 1rem;
    transition: all 0.5s ease;
}

.comité li:hover img {
    opacity: 0.9;
}

@media (max-width: 840px) {
    .comité ul {
        grid-template-columns: 1fr;
    }
    
    .comité li img {
        width: 180px;
        height: 225px;
    }
}
