/* =========================================================
   AIRJET CARGO - PAGE ACTUALITES
   Fichier : /news/news.css
   ========================================================= */

/* Hero de la page */
.news-hero {
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid #dedede;
    border-top: 5px solid #111111;
    background: #ffffff;
}

.news-hero picture,
.news-hero img {
    display: block;
    width: 100%;
}

.news-hero img {
    height: auto;
}

/* Introduction */
.news-intro {
    margin-bottom: 34px;
    padding: 25px 28px;
    border-left: 5px solid #111111;
    background: #f7f7f7;
}

.news-intro p {
    margin-bottom: 14px;
    line-height: 1.8;
}

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

.news-intro a {
    font-weight: 600;
    text-decoration: underline;
}

/* Carte d'actualité */
.news-card {
    position: relative;
    margin-bottom: 30px;
    padding: 28px 30px 24px;
    border: 1px solid #1a1a1a;
    border-top: 5px solid #111111;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.10);
}

.news-date {
    display: inline-block;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid #111111;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.news-title {
    margin: 0 0 17px;
    color: #111111;
    font-size: 25px;
    line-height: 1.35;
}

.news-card p {
    margin-bottom: 15px;
    line-height: 1.78;
}

.news-card p:last-of-type {
    margin-bottom: 0;
}

.news-card p a {
    font-weight: 600;
    text-decoration: underline;
}

.news-source {
    margin-top: 21px;
    padding-top: 14px;
    border-top: 1px solid #d9d9d9;
    font-size: 14px;
    line-height: 1.6;
}

.news-source-label {
    font-weight: 700;
}

.news-source a {
    font-weight: 700;
    text-decoration: underline;
}

/* Sidebar */
.news-sidebar-box {
    margin-bottom: 30px;
    border: 1px solid #d9d9d9;
    border-top: 5px solid #111111;
    background: #ffffff;
}

.news-sidebar-title {
    margin: 0;
    padding: 19px 20px 15px;
    border-bottom: 1px solid #e3e3e3;
    color: #111111;
    font-size: 19px;
    line-height: 1.35;
}

.news-sidebar-list {
    margin: 0;
    padding: 8px 20px;
    list-style: none;
}

.news-sidebar-list li {
    margin: 0;
    border-bottom: 1px solid #eeeeee;
}

.news-sidebar-list li:last-child {
    border-bottom: 0;
}

.news-sidebar-list a {
    display: block;
    padding: 13px 0;
    font-weight: 600;
}

.news-sidebar-list i {
    margin-right: 7px;
    font-size: 11px;
}

.news-sidebar-text {
    margin: 0;
    padding: 18px 20px 20px;
    line-height: 1.7;
}

.news-sidebar-cta {
    padding: 0 20px 20px;
}

.news-sidebar-cta .btn--base {
    width: 100%;
    text-align: center;
}

/* Espacement global de la page */
.news-page-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* Responsive */
@media (max-width: 991px) {
    .news-page-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .news-sidebar {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .news-page-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .news-intro {
        padding: 21px 20px;
    }

    .news-card {
        padding: 22px 20px 19px;
    }

    .news-title {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-card {
        transition: none;
    }

    .news-card:hover {
        transform: none;
    }
}
