.elementor-39953 .elementor-element.elementor-element-78375b7{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--background-transition:0.3s;--border-radius:0px 0px 0px 0px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-39953 .elementor-element.elementor-element-78375b7:not(.elementor-motion-effects-element-type-background), .elementor-39953 .elementor-element.elementor-element-78375b7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-39953 .elementor-element.elementor-element-78375b7, .elementor-39953 .elementor-element.elementor-element-78375b7::before{--border-transition:0.3s;}/* Start custom CSS for shortcode, class: .elementor-element-ebd1859 */.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.promo-box-item {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    text-decoration: none !important;
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

/* Effet de zoom sur l'image au survol de la carte */
.promo-box-item:hover .promo-bg {
    transform: scale(1.1);
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #C3363C;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 11px;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.promo-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.promo-title {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); /* Ton ombre de sécurité */
}

.promo-sub {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.promo-arrow {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #FCCC40; /* Ton jaune */
    gap: 8px;
}

@media (max-width: 768px) {
    .promo-grid { grid-template-columns: 1fr; }
    .promo-badge { display: none; } /* On cache sur mobile pour l'accessibilité */
}/* End custom CSS */