/* --- SOUS-TITRE (Capsule inclinée) --- */
.wp-modern-carrousel-subtitle-wrapper {
    margin-bottom: 40px;
    padding: 10px 0;
}

.wp-modern-carrousel-subtitle {
    display: inline-block;
    position: relative;
    padding: 20px 45px; /* Espace pour le texte */
}

/* Le fond vert avec bords COMPLÈTEMENT arrondis et incliné */
.subtitle-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px; /* Effet capsule */
    transform: rotate(-2deg); /* Légère inclinaison comme sur l'image */
    z-index: 1;
}

/* Le texte reste bien droit */
.subtitle-text {
    position: relative;
    z-index: 2;
    display: block;
    font-weight: bold;
}

/* --- IMAGE & OMBRE INCLINÉE --- */
.wp-modern-carrousel-image-wrapper {
    flex: 0 0 45%;
    position: relative;
}

/* L'ombre (fond gris-vert) inclinée derrière l'image */
.wp-modern-carrousel-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    right: -20px;
    bottom: -15px;
    background-color: #f0f4f2; /* Couleur de l'ombre claire */
    border-radius: 40px;
    z-index: 0;
    transform: rotate(-6deg); /* Inclinaison plus marquée pour l'image */
}

.wp-modern-carrousel-image-inner {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.wp-modern-carrousel-image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- AJUSTEMENTS TEXTES --- */
.wp-modern-carrousel-title {
    line-height: 1.2;
    margin-bottom: 15px;
}

.wp-modern-carrousel-badge {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
}