.bh-hero-img {
    width:50%;
    border-radius:30px;
    height:70vh;
    object-fit: cover;
}

.bh-hero {
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    padding:0px 80px;
}

.bh-linked-engagements {
    display: flex;
    flex-direction: row;
    gap:10px;
}

.bh-hero-content {
    display: flex;
    flex-direction: column;
    width:45%;
    justify-content: space-between;
}

.bh-engagement-logo {
    height:20px;
}

.bh-title-container {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.bh-title-container-title {
    font-size:18px;
}

.bh-title {
    font-size:60px;
    text-transform: uppercase;
    margin-bottom:20px;
}

.bh-first-paragraph {
    font-size:18px;
}

.bh-citation-section {
    position:relative;
    margin:50px 0px;
    height:170px;
    display:flex;
    align-items: center;
    justify-content: center;
    flex:1;
}

.bh-citation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../assets/images/LogoSlogan.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    opacity: 0.04;
    pointer-events: none;
    z-index: -1;
}

.bh-citation {
    font-size:24px;
    text-align: center;
    padding:0px 15%;
}

.bh-content-container {
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}

.bh-more {
    display:flex;
    flex-direction: row;
    padding:0px 80px;
    padding-top:80px;
    padding-bottom:140px;
    justify-content: space-between;
    align-items: center;
}

.bh-second-section {
    width:30%;
    padding-right:4%;
}

.bh-images {
    display: flex;
    flex-direction: row;
    gap:20px;
}

.bh-image {
    width:50%;
    max-height:70vh;
    border-radius:30px;
}

.bh-second-paragraph {
    font-size:18px;
}

.bh-second-title {
    font-size:42px;
}

.bh-second-second-title {
    font-size:52px;
    font-family: "Thunder";
    margin-bottom:30px;
}

.bh-engagement-logo-wrapper {
    position: relative;
    display: inline-block;
}

.bh-engagement-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--tooltip-bg, #333);
    color: var(--tooltip-color, #fff);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    margin-top: 8px;
    z-index: 10;
}

.bh-engagement-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--tooltip-bg, #333);
}

.bh-engagement-logo-wrapper:hover .bh-engagement-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {

    .belle-histoire {
       margin-top:40px;
    }

    /* Hero section */
    .bh-hero {
        flex-direction: column-reverse;
        padding: 0 20px;
        gap: 30px;
    }

    .bh-hero-img {
        width: 100%;
        height: 40vh;
        border-radius: 20px;
    }

    .bh-hero-content {
        width: 100%;
        gap: 20px;
    }

    .bh-title-container {
        padding-bottom:10px;
    }

    .bh-title-container-title {
        font-size: 16px;
    }

    .bh-title {
        font-size: 32px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .bh-first-paragraph {
        font-size: 16px;
    }

    /* Citation */
    .bh-citation-section {
        margin: 30px 0;
        height: auto;
        padding: 20px 0;
    }

    .bh-citation {
        font-size: 18px;
        padding: 0 10px;
    }

    /* Section more */
    .bh-more {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .bh-second-section {
        width: 100%;
        padding-right: 0;
    }

    .bh-second-title {
        font-size: 24px;
    }

    .bh-second-second-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .bh-second-paragraph {
        font-size: 16px;
    }

    /* Images */
    .bh-images {
        flex-direction: column;
        width: 100%;
    }

    .bh-image {
        width: 100%;
        max-height: 40vh;
        border-radius: 20px;
        object-fit:cover;
    }

    /* Pagination noire pour belles-histoires-all */
    .nbh-all-pagination .swiper-pagination-bullet {
        background-color: #000 !important;
        opacity: 0.3 !important;
    }

    .nbh-all-pagination .swiper-pagination-bullet-active {
        width: 40px !important;
        border-radius: 30px !important;
        opacity: 1 !important;
    }
}