/* ============================================================
   NEWS — LISTE DES ARTICLES (Premium HAC Pro)
   ============================================================ */

.page-title {
    font-size: 36px;
    text-align: center;
    margin: 40px 0;
    font-weight: 800;
    color: var(--hac-blue);
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--hac-blue-light);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #7dd3fc;
}

.news-list {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.news-card {
    display: flex;
    gap: 20px;
    background: rgba(15, 23, 42, 0.45);
    padding: 20px;
    border-radius: var(--hac-radius-lg);
    margin-bottom: 25px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
    transition: 0.25s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.25);
}

.news-thumb {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--hac-radius-md);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.news-title a {
    color: #38bdf8;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

.news-title a:hover {
    color: #7dd3fc;
}

.news-meta {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 8px;
}

.news-cat {
    color: var(--hac-blue-light);
    font-weight: 600;
}

.news-cat:hover {
    color: #7dd3fc;
}

.news-excerpt {
    margin: 10px 0;
    opacity: 0.9;
}

.news-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #2563eb;
    color: white;
    border-radius: var(--hac-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.news-btn:hover {
    background: #1d4ed8;
}

/* ============================================================
   ARTICLE — VERSION PREMIUM HAC PRO + SEO
   ============================================================ */

.article {
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    padding: 35px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: var(--hac-radius-xl);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.18);
    backdrop-filter: blur(10px);
}

/* Titre principal — sans glow */
.article-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--hac-blue);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

/* Métadonnées — SEO */
.article-meta {
    text-align: center;
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 30px;
    color: var(--hac-blue-light);
}

/* Image principale */
.article-image {
    width: 100%;
    border-radius: var(--hac-radius-xl);
    margin: 30px 0;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

/* Contenu */
.article-content {
    font-size: 19px;
    line-height: 1.85;
    color: var(--hac-blue-light);
}

.article-content p {
    margin-bottom: 20px;
}

/* Sous-titres internes */
.article-content h2,
.article-content h3 {
    color: var(--hac-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Tags */
.article-tags {
    margin-top: 30px;
}

.article-tags .tag {
    display: inline-block;
    background: #1e3a8a;
    padding: 8px 16px;
    border-radius: 999px;
    margin-right: 8px;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

/* Bouton retour */
.back-btn {
    display: inline-block;
    margin-top: 40px;
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: 0.25s;
}

.back-btn:hover {
    color: #7dd3fc;
    transform: translateX(-6px);
}

/* ============================================================
   RESPONSIVE MOBILE — VERSION COMPLÈTE
   ============================================================ */

@media (max-width: 768px) {

    /* Conteneur principal */
    .news-list {
        width: 95%;
        margin: auto;
    }

    /* Cartes */
    .news-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }

    /* Image */
    .news-thumb {
        width: 100%;
        height: auto;
        border-radius: var(--hac-radius-lg);
    }

    /* Titre */
    .news-title a {
        font-size: 20px;
    }

    /* Métadonnées */
    .news-meta {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* Extrait */
    .news-excerpt {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Bouton */
    .news-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        text-align: center;
    }

    /* Titre principal */
    .page-title {
        font-size: 28px;
        padding: 0 10px;
        text-align: center;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 13px;
        text-align: center;
        margin-bottom: 25px;
    }
}
