/* Start custom CSS for shortcode, class: .elementor-element-1ef0542 *//* --- Style du carrousel --- */
        .carousel {
            position: relative;
            width: 100%;
            height: 350px;
            margin: 0;
            overflow: hidden;
            background: #fff;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        /* --- Slide --- */
        .carousel-slide {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #025578;
            color: #fff;
            min-width: 100%;
            height: 350px;
            box-sizing: border-box;
            text-align: left;
        }

        /* --- Bloc texte --- */
        .event-content {
            width: 40%;
            padding: 30px;
        }

        .event-content h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .event-content p {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 15px;
            color: #e0e0e0;
        }

        /* --- Lien “Lire la suite” --- */
        .event-link {
            display: inline-block;
            color: #fff;
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.3s;
        }

        .event-link:hover {
            color: #cce7f0;
        }

        /* --- Bloc image --- */
        .event-image {
            width: 60%;
            height: 100%;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center right;
        }

        /* --- Boutons de navigation --- */
        .carousel-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 10px;
        }

        .carousel-button {
            background: rgba(0,0,0,0.5);
            color: #fff;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 20px;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .carousel-button:hover {
            background: rgba(0,0,0,0.8);
        }

        /* --- Responsive (mobile) --- */
        @media (max-width: 768px) {
            .carousel {
            height: auto;
        }
            .carousel-slide {
                flex-direction: column;
                height: auto !important;
            }

            .event-content, .event-image {
                width: 100%;
                height: auto;
            }

            .event-image img {
                height: auto;
                object-position: center;
            }
        }/* End custom CSS */