
        .staff-card {
            width: 350px;
            height: 500px;
            margin: 0 auto;     
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(181,7,23,0.3);
            transition: transform 0.3s ease;
        }

        .staff-card:hover {
            transform: scale(1.05);
        }

        .staff-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            object-position: top center; 
            border-bottom: 3px solid #B50717;
            display: block;
            margin-top: 0 !important;
            padding-top: 0 !important;
            
        }

        .scroll-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 2rem;
            padding: 1rem;
            scroll-behavior: smooth;
        }

        .scroll-container::-webkit-scrollbar {
            display: none;
        }

        /* Boutons flèches */
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(181, 7, 23, 0.9);
            border: none;
            color: white;
            font-size: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-btn:hover {
            background: #B50717;
        }

        .left-btn {
            left: 10px;
        }

        .right-btn {
            right: 10px;
        }
