/* =========================================================
   BLUUPI — PRENSA PAGE
   Fichier : /app/assets/styles/pages/prensa.css
   Mobile first
========================================================= */


/* =========================================================
   1. BASE PAGE
========================================================= */

body {
    margin: 0;
    background: #eef5f9;
    color: #0E3E61;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   2. MASQUER DESKTOP SUR MOBILE
========================================================= */

.desktop-header,
.desktop-footer,
.desktop-menu,
.site-header,
.site-footer {
    display: none !important;
}


/* =========================================================
   3. STRUCTURE MOBILE
========================================================= */

.prensa-page {
    max-width: 430px;
    margin: 0 auto;
    padding: 32px 18px 110px;
}


/* =========================================================
   4. HERO PRENSA
========================================================= */

.prensa-hero {
    background: linear-gradient(135deg, #0E3E61, #127194);
    color: #fff;
    border-radius: 28px;
    padding: 28px 22px;
    margin-bottom: 20px;
}

.prensa-hero small {
    display: inline-block;
    font-weight: 800;
    opacity: .9;
}

.prensa-hero h1 {
    margin: 12px 0 12px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.prensa-hero p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   5. CARTES CONTENU
========================================================= */

.prensa-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: 0 14px 34px rgba(14, 62, 97, .08);
}

.prensa-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #0E3E61;
    line-height: 1.15;
}

.prensa-card p,
.prensa-card li {
    font-size: 15px;
    line-height: 1.55;
    color: #4B5A68;
}

.prensa-card p {
    margin: 0;
}

.prensa-card ul {
    margin: 10px 0 0;
    padding-left: 20px;
}


/* =========================================================
   6. BOUTON
========================================================= */

.prensa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #127194;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}


/* =========================================================
   7. BOTTOM NAV MOBILE — STYLE WEB APP
========================================================= */

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 460px);
    height: 82px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid #e5edf3;
    backdrop-filter: blur(18px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    z-index: 35;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #8a98a6;
    font-size: 12px;
    font-weight: 650;
}

.bottom-nav i {
    width: 25px;
    height: 25px;
    stroke-width: 2;
}

.bottom-nav a.active {
    color: #127194;
}


/* =========================================================
   8. ANCIENNE NAV PUBLIQUE — DÉSACTIVÉE
========================================================= */

.public-bottom-nav {
    display: none !important;
}