/*********************** BOITE JAUNE PROMO DELF ********************************/

.BannerBlock{					/* Block global de la bannière */
    background-color:#FFCF40;
	color:#333;
    padding:35px;
    display:flex;
    flex-direction:row;
    border-radius: 10px;
	margin-bottom: 20px;
}

.TitleBannerBlock{					/* Titre de la bannière */
    font-size:30px;
    font-weight: 800;
    line-height:1.2;
    display:flex;
    flex-direction:row;
}

.TextBannerBlock{					/* Texte sous le titre de la bannière */
    font-size:22px;
    font-weight: 500;
    line-height:1.5;
    margin-bottom:25px;
}

.ButtonCTABannerBlock{					/* Block qui contient le bouton de la bannière */
    display:flex;
    flex-direction:row;
}

.CTABannerBlock{						/* Bouton de la bannière */
    background: #f96f33;
    color: #fff;
    border-color: #f96f33;
    border-radius: 5px;
    padding: 8px 20px 8px 20px;
    font-size: 20px;
    font-weight: 600;
}

.CTABannerBlock:hover{						/* Hover de : Bouton de la bannière */
    background: #fff;
    color: #f96f33;
}

.ContImgBannerBlock{					/* Block qui contient l'image de la bannière */
    margin-left:10px;
    display:flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 960px){  /*  ----- TABLETTE*  ----- */ 

    .BannerBlock{					/* Block global de la bannière */
        flex-direction:column-reverse;
        padding:20px;
    }
    
    .TitleBannerBlock{					/* Titre de la bannière */
	    text-align:center;
	    font-size:32px;
	    font-weight:700;
	    margin-bottom:25px;
	}
	
	.TextBannerBlock{					/* Texte sous le titre de la bannière */
        margin:0 7px 0 7px;
        font-size:23px;
        text-align:center;
	}
	
    .ImgBannerBlock{					/* Image de la bannière */
        padding-bottom:20px;
        width:40%;
    }
    
    .ButtonCTABannerBlock{					/* Block qui contient le bouton de la bannière */
        justify-content: center;
        margin:25px 0 8px 0!important;
    }
}

@media only screen and (max-width: 767px){  /* ----- TELEPHONE ----- */ 

    .BannerBlock{					/* Block global de la bannière */
        border-radius: 7px;
    }
	
	.ContImgBannerBlock{					/* Block qui contient l'image de la bannière */
        margin-left:0;
	}
    
    .ImgBannerBlock{					/* Image de la bannière */
        width:55%;
    }
    
    .CTABannerBlock{						/* Bouton de la bannière */
        border-radius: 3px;
    }
}

/*********************** ÉLÉMENTS PARTAGÉS MODERNES ************************/
.banner-rating-text {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
}

/* Couleur spécifique pour les fonds sombres (prononciation) */
.BannerBlockPrononciation .banner-rating-text {
    color: #c7dce5;
    opacity: 0.9;
}

.BannerBlockCoursFrancaisClassic .banner-rating-text {
    color: #555;
}
/*********************** BOITE BLEU PROMO PRONONCIATION ********************************/


.BannerBlockPrononciation {
    /* Structure et Fond */
    display: flex;
    align-items: center;
    background: rgb(44,90,116);
    background: radial-gradient(circle, rgba(44,90,116,1) 0%, rgba(27,58,74,1) 100%);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.BannerBlockPrononciation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.ContentBannerBlockPrononciation {
    flex: 1;
    padding-right: 20px;
}

.TitleBannerBlockPrononciation {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.TextBannerBlockPrononciation {
    font-size: 17px;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.CTABannerBlockPrononciation {
    display: inline-block;
    background-color: #F96F33;
    color: #ffffff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    text-transform: uppercase;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.CTABannerBlockPrononciation:hover {
    background-color: #ffffff;
    color: #F96F33 !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.ContImgBannerBlockPrononciation {
    flex: 0 0 200px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ContImgBannerBlockPrononciation img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    /* border: 3px solid rgba(255,255,255,0.2); */
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .BannerBlockPrononciation {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 20px;
    }

    .ContentBannerBlockPrononciation {
        padding-right: 0;
    }

    .ContImgBannerBlockPrononciation {
        margin-left: 0;
        margin-bottom: 25px;
        flex: 0 0 auto;
        width: 140px;
    }
    
    .TitleBannerBlockPrononciation {
        font-size: 24px;
        justify-content: center;
    }
}


/*********************** BOITE PROMO COURS FRANCAIS CLASSIQUES ********************************/


.BannerBlockCoursFrancaisClassic{					/* Block global de la bannière */
    /* Structure et Fond - Style Modernisé */
    background-color: #ffffff;
    border: 1px solid #eee;
    border-left: 5px solid #F96F33; /* Rappel marque */
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    color: #333;
}

.BannerBlockCoursFrancaisClassic:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ContentBannerBlockCoursFrancaisClassic {
    flex: 1;
    padding-right: 20px;
}

.TitleBannerBlockCoursFrancaisClassic {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.TextBannerBlockCoursFrancaisClassic {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.CTABannerBlockCoursFrancaisClassic {
    display: inline-block;
    background-color: #F96F33;
    color: #ffffff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    text-transform: uppercase;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(249, 111, 51, 0.3);
    border: none;
}

.CTABannerBlockCoursFrancaisClassic:hover {
    background-color: #d65a25;
    color: #fff !important;
    box-shadow: 0 6px 12px rgba(249, 111, 51, 0.4);
}

.ContImgBannerBlockCoursFrancaisClassic {
    flex: 0 0 200px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*********************** BOITE PROMO COURS FRANCAIS PRO ********************************/


.BannerBlockCoursFrancaisPro {
    /* Structure et Fond - Style Modernisé */
    background-color: #ffffff;
    border: 1px solid #eee;
    border-left: 5px solid #F96F33; /* Rappel marque */
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    color: #333;
}

.BannerBlockCoursFrancaisPro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ContentBannerBlockCoursFrancaisPro {
    flex: 1;
    padding-right: 20px;
}

.TitleBannerBlockCoursFrancaisPro {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.TextBannerBlockCoursFrancaisPro {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.CTABannerBlockCoursFrancaisPro {
    display: inline-block;
    background-color: #F96F33;
    color: #ffffff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    text-transform: uppercase;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(249, 111, 51, 0.3);
    border: none;
}

.CTABannerBlockCoursFrancaisPro:hover {
    background-color: #d65a25;
    color: #fff !important;
    box-shadow: 0 6px 12px rgba(249, 111, 51, 0.4);
}

.ContImgBannerBlockCoursFrancaisPro {
    flex: 0 0 200px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media only screen and (max-width: 960px){  /*  ----- TABLETTE*  ----- */ 

	.TitleBannerBlockCoursFrancaisPro{					/* Titre de la bannière */
		justify-content: center;
		font-weight:800;
	}
	
	.ContImgBannerBlockCoursFrancaisPro{					/* Texte sous le titre de la bannière */
        margin-left:0px;
    }

}


/*********************** BOITE PROMO TEST DE NIVEAU ********************************/

.BannerBlockTestNiveau {
    /* Structure et Fond - Style Modernisé */
    background-color: #ffffff;
    border: 1px solid #eee;
    border-left: 5px solid #F96F33; /* Rappel marque */
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    color: #333; /* Texte sombre sur fond blanc */
}

/* Effet au survol */
.BannerBlockTestNiveau:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ContentBannerBlockTestNiveau {
    flex: 1;
    padding-right: 20px;
}

.TitleBannerBlockTestNiveau {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.TextBannerBlockTestNiveau {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.CTABannerBlockTestNiveau {
    display: inline-block;
    background-color: #F96F33;
    color: #ffffff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    text-transform: uppercase;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(249, 111, 51, 0.3);
    border: none;
}

.CTABannerBlockTestNiveau:hover {
    background-color: #d65a25;
    color: #fff;
    box-shadow: 0 6px 12px rgba(249, 111, 51, 0.4);
}

.ContImgBannerBlockTestNiveau {
    flex: 0 0 250px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ContImgBannerBlockTestNiveau img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .BannerBlockTestNiveau {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 20px;
        border-left: 1px solid #eee;
        border-top: 5px solid #F96F33;
    }

    .ContentBannerBlockTestNiveau {
        padding-right: 0;
    }

    .ContImgBannerBlockTestNiveau {
        margin-left: 0;
        margin-bottom: 20px;
        flex: 0 0 auto;
        width: 150px;
    }
    
    .TitleBannerBlockTestNiveau {
        font-size: 22px;
        justify-content: center;
    }
}


/*********************** PROMO BOX PROGRAMME DICTÉE (Cross-selling) ************************/

.pvf-dictee-promo-box {
    /* Structure et Fond */
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-left: 5px solid #F96F33; /* Rappel de la marque */
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Effet au survol pour inciter au clic */
.pvf-dictee-promo-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Partie Visuelle (Icône) */
.pvf-dictee-promo-visual {
    flex: 0 0 100px;
    height: 100px;
    background-color: #fff0e9;
    color: #F96F33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 35px;
}

/* Partie Texte */
.pvf-dictee-promo-content {
    flex: 1;
    padding-right: 20px;
}

.pvf-dictee-promo-title {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.pvf-dictee-promo-text {
    font-size: 16px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

/* Partie Action (Bouton) */
.pvf-dictee-promo-action {
    flex: 0 0 auto;
}

.pvf-dictee-promo-btn {
    display: inline-block;
    background-color: #F96F33;
    color: #ffffff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px; /* Plus arrondi pour se différencier du contenu */
    font-size: 15px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(249, 111, 51, 0.3);
}

.pvf-dictee-promo-btn:hover {
    background-color: #d65a25;
    color: #fff;
    box-shadow: 0 6px 12px rgba(249, 111, 51, 0.4);
}

.pvf-dictee-promo-btn i {
    margin-left: 8px;
}

/* --- RESPONSIVE (Mobile) --- */
@media only screen and (max-width: 768px) {
    .pvf-dictee-promo-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .pvf-dictee-promo-visual {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .pvf-dictee-promo-content {
        padding-right: 0;
        margin-bottom: 25px;
    }

    .pvf-dictee-promo-action {
        width: 100%;
    }

    .pvf-dictee-promo-btn {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Responsive pour N2 Classic et Pro */
@media only screen and (max-width: 768px) {
    .BannerBlockCoursFrancaisClassic {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 20px;
        border-left: 1px solid #eee;
        border-top: 5px solid #F96F33;
    }

    .ContentBannerBlockCoursFrancaisClassic {
        padding-right: 0;
    }

    .ContImgBannerBlockCoursFrancaisClassic {
        margin-left: 0;
        margin-bottom: 20px;
        flex: 0 0 auto;
        width: 100%;
    }

    /* Pro */
    .BannerBlockCoursFrancaisPro {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 20px;
        border-left: 1px solid #eee;
        border-top: 5px solid #F96F33;
    }

    .ContentBannerBlockCoursFrancaisPro {
        padding-right: 0;
    }

    .ContImgBannerBlockCoursFrancaisPro {
        margin-left: 0;
        margin-bottom: 20px;
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Style générique pour les icônes dans les bannières standards */
.IconBannerBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background-color: #fff0e9; /* Fond orange pâle */
    border-radius: 50%;
    color: #F96F33;
    font-size: 55px;
}

/*********************** BOITE PROMO DELF B2 & DALF C1 ********************************/

.BannerBlockDelfB2, .BannerBlockDalfC1 {
    /* Structure et Fond - Style Modernisé */
    background-color: #ffffff;
    border: 1px solid #eee;
    border-left: 5px solid #F96F33; /* Rappel marque */
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    color: #333;
}

.BannerBlockDelfB2:hover, .BannerBlockDalfC1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ContentBannerBlockDelfB2, .ContentBannerBlockDalfC1 {
    flex: 1;
    padding-right: 20px;
}

.TitleBannerBlockDelfB2, .TitleBannerBlockDalfC1 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.TextBannerBlockDelfB2, .TextBannerBlockDalfC1 {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.CTABannerBlockDelfB2, .CTABannerBlockDalfC1 {
    display: inline-block;
    background-color: #F96F33;
    color: #ffffff !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    text-transform: uppercase;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(249, 111, 51, 0.3);
    border: none;
}

.CTABannerBlockDelfB2:hover, .CTABannerBlockDalfC1:hover {
    background-color: #d65a25;
    color: #fff !important;
    box-shadow: 0 6px 12px rgba(249, 111, 51, 0.4);
}

.ContImgBannerBlockDelfB2, .ContImgBannerBlockDalfC1 {
    flex: 0 0 200px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ContImgBannerBlockDelfB2 img, .ContImgBannerBlockDalfC1 img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .BannerBlockDelfB2, .BannerBlockDalfC1 {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 20px;
        border-left: 1px solid #eee;
        border-top: 5px solid #F96F33;
    }

    .ContentBannerBlockDelfB2, .ContentBannerBlockDalfC1 {
        padding-right: 0;
    }

    .ContImgBannerBlockDelfB2, .ContImgBannerBlockDalfC1 {
        margin-left: 0;
        margin-bottom: 20px;
        flex: 0 0 auto;
        width: 150px;
    }
    
    .TitleBannerBlockDelfB2, .TitleBannerBlockDalfC1 {
        font-size: 22px;
        justify-content: center;
    }
}