/* ============================================================
   HISTORIQUE — PAGE INFO HAC ESPORT 
   ============================================================ */

/* Structure générale */
.hac-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Titre principal de section */
.hac-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--hac-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icônes FA dans les titres */
.hac-title i,
.hac-block h3 i {
    color: var(--hac-blue);
    opacity: 0.85;
}

/* Cartes historiques */
.hac-block {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--hac-radius-lg);
    padding: 22px;
    transition: 0.25s ease;
}

.hac-block:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.35);
}

/* Titres des blocs */
.hac-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--hac-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Paragraphes */
.hac-block p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 12px;
}

/* Liens internes */
.hac-block a {
    color: var(--hac-blue-light);
    font-weight: 700;
    text-decoration: none;
}

.hac-block a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 700px) {
    .hac-title {
        font-size: 22px;
    }

    .hac-block {
        padding: 18px;
    }

    .hac-block h3 {
        font-size: 18px;
    }

    .hac-block p {
        font-size: 14px;
    }
}
