/* ==========================================
   CA S'EST PASSÉ LE...
   Patrimoine Normand
========================================== */


/* ===== Page totalement isolée ===== */

html,
body{
    margin:0;
    min-height:100%;
}

.pn-page-isolee{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:#111;
}


/* ===== Bloc export accueil ===== */

.pn-ca-sest-passe-jour{
    padding:18px 22px;
    margin:30px 0;
    background:#f7f7f4;
    border-left:4px solid #759739;
    box-sizing:border-box;
}

.pn-ca-sest-passe-label{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#759739;
}

.pn-ca-sest-passe-jour a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    line-height:1.5;
    font-weight:600;
}

.pn-ca-sest-passe-jour a:hover{
    color:#759739;
}


/* ===== Single éphéméride ===== */

.pn-ephemeride-single{
    flex:1;
    width:100%;
    padding:60px 20px;
    box-sizing:border-box;
}

.pn-ephemeride-container{
    max-width:900px;
    margin:0 auto;
    padding-bottom:60px;
}

.pn-ephemeride-meta{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:#759739;
    font-weight:700;
    margin-bottom:15px;
}

.pn-ephemeride-title{
    font-size:48px;
    line-height:1.2;
    margin:0 0 35px;
}

.pn-ephemeride-image{
    margin-bottom:40px;
}

.pn-ephemeride-image img{
    width:100%;
    height:auto;
    display:block;
}

.pn-ephemeride-content{
    font-size:20px;
    line-height:1.9;
}


/* ===== Footer isolé ===== */

.pn-isolated-footer{
    margin-top:auto;
    background:#759739;
    color:#fff;
    padding:28px 20px;
}

.pn-isolated-footer-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    gap:20px;
    font-size:14px;
}


/* ===== Mobile ===== */

@media(max-width:768px){

    .pn-ca-sest-passe-jour{
        padding:14px 16px;
        margin:20px 0;
    }

    .pn-ca-sest-passe-jour a{
        font-size:15px;
    }

    .pn-ephemeride-single{
        padding:40px 18px;
    }

    .pn-ephemeride-title{
        font-size:32px;
    }

    .pn-ephemeride-content{
        font-size:17px;
    }

    .pn-isolated-footer-inner{
        flex-direction:column;
    }

}