.page-belles-histoires-title-container {
    padding:0px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
    padding-bottom:50px;
}

.page-belles-histoires-title {
    font-size:60px;
    text-transform: uppercase;
    text-align: center;
    width:60%;
}

.page-nbh-subtitle {
    font-size:18px;
    text-align: center;
    width:60%;
}

.page-belles-histoires-content {
    padding:0px 80px;
}

.page-nbh-image {
    border-radius:30px;
    width:100%;
    max-height:600px;
    height:60vh;
    object-fit: cover;
}

.page-nbh-content-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top:60px;
    margin-bottom:200px;
}

.page-nbh-title {
    display:flex;
    flex-direction: column;
}

.page-nbh-title-first {
    font-size:42px;
    text-transform: uppercase;
}

.page-nbh-title-second {
    font-size:52px;
    text-transform: uppercase;
    font-family: "Thunder";
}

.page-nbh-description {
    width:33%;
    font-size:18px;
}

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

    /* Header titre */
    .page-belles-histoires-title-container {
        padding: 0 20px;
        padding-bottom: 30px;
    }

    .page-belles-histoires-title {
        font-size: 32px;
        width: 100%;
        line-height: 1;
    }

    .page-nbh-subtitle {
        font-size: 16px;
        width: 100%;
    }

    /* Contenu principal */
    .page-belles-histoires-content {
        padding: 0 20px;
    }

    .page-nbh-image {
        height: 40vh;
        border-radius: 20px;
    }

    /* Section titre + description */
    .page-nbh-content-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 60px;
    }

    .page-nbh-title-first {
        font-size: 24px;
    }

    .page-nbh-title-second {
        font-size: 32px;
    }

    .page-nbh-description {
        width: 100%;
        font-size: 16px;
    }
    
    .page-belles-histoires-title-container {
        display:none;
    }
    .page-nbh-title {
        align-items: center;
        text-align: center;
    }
    .page-nbh-content-container {
        align-items:center;
    }
    .page-nbh-description {
        text-align: center;
    }
}