/* =========================================================
   BLUUPI — PRENSA PAGE TABLET
   Fichier : /app/assets/styles/pages/tablet/prensa.css
   Tablette uniquement
========================================================= */

@media (min-width: 768px) and (max-width: 1023px) {


    /* =====================================================
       1. STRUCTURE TABLET
    ===================================================== */

    .prensa-page {
        max-width: 720px;
        margin: 0 auto;
        padding: 48px 28px 120px;
    }


    /* =====================================================
       2. HERO TABLET
    ===================================================== */

    .prensa-hero {
        padding: 36px 34px;
        border-radius: 32px;
        margin-bottom: 24px;
    }

    .prensa-hero small {
        font-size: 15px;
    }

    .prensa-hero h1 {
        font-size: 44px;
        line-height: 1.02;
    }

    .prensa-hero p {
        max-width: 620px;
        font-size: 17px;
        line-height: 1.6;
    }


    /* =====================================================
       3. GRILLE CONTENU TABLET
    ===================================================== */

    .prensa-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .prensa-card {
        margin-bottom: 0;
        padding: 24px;
        border-radius: 24px;
    }

    .prensa-card.full {
        grid-column: span 2;
    }

    .prensa-card h2 {
        font-size: 24px;
    }

    .prensa-card p,
    .prensa-card li {
        font-size: 15.5px;
        line-height: 1.6;
    }


    /* =====================================================
       4. BOUTON TABLET
    ===================================================== */

    .prensa-button {
        min-height: 46px;
        padding: 0 20px;
        font-size: 15px;
    }


    /* =====================================================
       5. BOTTOM NAV TABLET — STYLE WEB APP
    ===================================================== */

    .bottom-nav {
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: min(100%, 760px);
        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;
    }


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

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


    /* =====================================================
       7. DESKTOP MASQUÉ SUR TABLETTE
    ===================================================== */

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