/* Wrapper principal */
.bp-titre-picto-wrapper {
    display: inline-flex;
    align-items: center; /* Alignement vertical parfait */
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

/* Largeur */
.bp-titre-picto-wrapper.auto-width {
    width: auto;
}

.bp-titre-picto-wrapper.full-width {
    width: 100%;
}

/* Alignement horizontal */
.bp-titre-picto-wrapper.align-left {
    justify-content: flex-start;
    text-align: left;
}

.bp-titre-picto-wrapper.align-center {
    justify-content: center;
    text-align: center;
}

.bp-titre-picto-wrapper.align-right {
    justify-content: flex-end;
    text-align: right;
}

/* Picto générique */
.bp-picto {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    line-height: 1;
}



/* Fond arrondi sur picto */
.bp-picto.fond {
    background-color: #4A746E;
    border-radius: 50%;
    padding: 23px;
    width: 75px;
    height: 75px;
}

/* Icône Font Awesome */
.bp-picto.fond  i {
    color: #fff;
}
.bp-picto i {
    font-size: 20px;
    color: #3B503D;
    display: block;
    line-height: 1;
}

/* Image picto personnalisée */
.bp-picto img {
    max-width: 60%;
    max-height: 60%;
    display: block;
}

/* Titre */
.bp-titre {
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

/* Décoration : bordure */
.decor-bordure {
    border-bottom: 1px solid #4A746E;
    padding-bottom: 10px;
}

/* Décoration : soulignement intégré au titre */
.bp-titre.soulignement {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    box-shadow: inset 0px -8px 0px 0px #C8CF94;
}

.bp-liste-puce {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bp-liste-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bp-liste-puce-icone {
    flex-shrink: 0;
    width: 24px;
    height: 25px;
}

.bp-liste-puce-icone i,
.bp-liste-puce-icone img,
.bp-liste-puce-icone svg {
    width: 24px;
    height: 25px;
    display: block;
}

.bp-liste-puce-content h3 {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 4px;
    color: #3B503D;
}

.bp-liste-puce-content p {
    font-size: 16px;
    margin: 0;
    color: #000;
}
.bp-bouton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 200px;
    transition: all 0.3s ease;
}
.bp-bouton-wrapper {
    margin: 20px 0;
}

.bp-bouton-wrapper.align-left {
    text-align: left;
}

.bp-bouton-wrapper.align-center {
    text-align: center;
}

.bp-bouton-wrapper.align-right {
    text-align: right;
}

.bp-bouton i,
.bp-bouton img {
    height: 20px;
    width: auto;
}

/* Bouton vert */
.bp-bouton.vert {
    background: #4A746E;
    color: #fff;
}

.bp-bouton.vert:hover {
    background: var(--lpo-yellow, #F1EDB3);
    color: #000;
}
/* Bouton jaune */
.bp-bouton.yellow {
    background: var(--lpo-yellow, #F1EDB3);
    border: 1px solid var(--lpo-yellow, #F1EDB3);
    color: #000;
}

.bp-bouton.yellow:hover {
    background: #4A746E;
    color: #fff;
}

/* Vert foncé */
.bp-bouton.vert_fonce {
    background: #3B503D;
    color: #fff;
}

.bp-bouton.vert_fonce:hover {
    background: var(--lpo-yellow, #F1EDB3);
    color: #000;
}

/* Vert transparent */
.bp-bouton.vert_transparent {
    background: transparent;
    border: 1px solid var(--lpo-green, #4A746E);
    color: #4A746E;
}

.bp-bouton.vert_transparent:hover {
    background: var(--lpo-green, #4A746E);
    color: #fff;
}

/* Blanc transparent */
.bp-bouton.blanc_transparent {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.bp-bouton.blanc_transparent:hover {
    border-color: #F1EDB3;
    color: #F1EDB3;
}

/*card picto*/
.bp-card-picto {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    margin: 20px auto;
}
.bp-card-picto .bp-card-picto-image i{
    transform: scale(1);
    transition: 0.2s all ease;
}
.bp-card-picto:hover .bp-card-picto-image i{
    transform: scale(1.4);
    transition: 0.2s all ease;
}

.bp-card-picto-top {
    background: #F1EDB3;
    color: #4A746E;
    text-align: center;
    padding: 46px 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: normal;
    z-index: 2;
    position: relative;
}

.bp-card-picto-top i,
.bp-card-picto-top svg,
.bp-card-picto-top img {
    display: block;
    margin: 0 auto 10px;
    font-size: 30px;
    max-height: 30px;
    width: auto;

}

.bp-card-picto-title {
    margin-top: 10px;
}

.bp-card-picto-image {
    position: relative;
    display: block;
    z-index: 1;
}

.bp-card-picto-image img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;  transform: scale(1);
    transition: 0.2s all ease;
}
.bp-card-picto:hover .bp-card-picto-image img {
    transform: scale(1.4);
    transition: 0.2s all ease;
}

.bp-card-picto-image .fa-arrow-up-right {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 30px;
    color: white;
    padding: 5px;
    border-radius: 50%;
}