.news-detail-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.news-detail-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.news-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.news-detail-hero-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(36px, 3vw, 70px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-detail-hero-text {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
}

/* contenu dessous */
.news-detail-page {
    background: #000;
    padding: 0 0 110px;
}

.news-detail-content {
    max-width: 760px;
    margin: 0 auto;
}

.news-detail-image-wrap {
    margin-top: -40px;
    margin-bottom: 34px;
    position: relative;
    z-index: 3;
}

.news-detail-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-detail-body p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.9;
    text-align: justify;
}

.news-detail-body p:last-child {
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
    .news-detail-hero {
        min-height: 440px;
    }

    .news-detail-hero-title {
        font-size: 48px;
    }

    .news-detail-hero-text {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .news-detail-hero {
        min-height: 360px;
        padding: 40px 0;
    }

    .news-detail-hero-title {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .news-detail-hero-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .news-detail-image-wrap {
        margin-top: -20px;
        margin-bottom: 24px;
    }

    .news-detail-page {
        padding-bottom: 70px;
    }

    .news-detail-body p {
        font-size: 12px;
        line-height: 1.8;
    }
}