@charset "UTF-8";

/* ===== PAGE SÉRIES ===== */
/* index.css garde le socle commun : body, .global, logo, baseline, menu. */
/* Ce fichier ne cible que body.page-series pour éviter les conflits globaux. */

.page-series .oeuvre-wrap{
    position:absolute;
    left:20px;
    right:20px;
    top:110px;
    bottom:30px;
    overflow-y:auto;
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
    z-index:1;
}

.page-series .series-list{
    display:flex;
    flex-direction:column;
    gap:48px;
    padding-bottom:20px;
}

.page-series .serie-item{
    margin:0;
}

.page-series .serie-item + .serie-item{
    border-top:1px solid rgba(15,25,30,.12);
    padding-top:48px;
}

.page-series .oeuvre-layout{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.page-series .oeuvre-media{
    width:100%;
    max-width:100%;
}

.page-series .oeuvre-media > img{
    display:block;
    width:100%;
    height:auto;
}

.page-series .oeuvre-thumbs{
    display:none;
}

.page-series .oeuvre-thumbs img{
    display:block;
    width:92px;
    height:92px;
    object-fit:cover;
    cursor:pointer;
    opacity:.6;
    transition:opacity .3s ease, transform .3s ease;
}

.page-series .oeuvre-thumbs img:hover{
    opacity:1;
    transform:scale(1.03);
}

.page-series .oeuvre-thumbs img.active{
    opacity:1;
    outline:1px solid #232222;
    outline-offset:0;
}

.page-series .oeuvre-content{
    display:flex;
    flex-direction:column;
    gap:24px;
    min-width:0;
}

.page-series .oeuvre-header h1{
	
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing:auto;
  	font-weight: 300;
	font-size: 20px;
  	font-style: normal;
	letter-spacing:3px;
    margin:0 0 14px 0;
    line-height:1.05;
    color:#746C6C;
}

.page-series .oeuvre-header h1 a,
.page-series .oeuvre-header h1 a:visited{
    font:inherit;
    line-height:inherit;
    letter-spacing:inherit;
    color:inherit;
    text-decoration:none;
}

.page-series .oeuvre-header h1 a:hover{
    color:#503723;
    text-decoration:none;
}

.page-series .oeuvre-meta p,
.page-series .oeuvre-text p,
.page-series .empty-series{
    margin:0 0 8px 0;
    font-family:"Roboto", sans-serif;
    font-weight:300;
    font-size:14px;
    line-height:1.6;
    letter-spacing:0;
    color:#0f191e;
}

.page-series .oeuvre-text p{
    margin-bottom:14px;
    line-height:1.7;
}

.page-series .oeuvre-details h2{
    margin:0 0 18px 0;
    font-family:"Roboto", sans-serif;
    font-weight:700;
    font-size:24px;
    line-height:1.2;
    letter-spacing:0;
    color:#232222;
}

.page-series .oeuvre-details ul{
    margin:0;
    padding-left:18px;
}

.page-series .oeuvre-details li{
    margin:0 0 8px 0;
    font-family:"Roboto", sans-serif;
    font-size:14px;
    font-weight:300;
    line-height:1.6;
    letter-spacing:0;
    color:#0f191e;
}

.page-series .oeuvre-details li a,
.page-series .oeuvre-details li a:visited{
    font-family:"Cormorant Garamond", serif;
    font-weight:300;
    font-size:15px;
    line-height:1.4;
    letter-spacing:2px;
    color:#0f191e;
    text-decoration:none;
}

.page-series .oeuvre-details li a:hover{
    color:#503723;
    text-decoration:none;
}

/* LIGHTBOX */
.page-series .lightbox{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(0,0,0,.8);
    z-index:2147483647;
    cursor:zoom-out;
}

.page-series .lightbox.active{
    display:flex;
}

.page-series .lightbox img{
    display:block;
    width:auto;
    height:auto;
    max-width:calc(100vw - 48px);
    max-height:calc(100vh - 48px);
    object-fit:contain;
    border:0;
    box-shadow:none;
}

.page-series .oeuvre-links{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:8px;
    width:100%;
}

.page-series .oeuvre-link-row{
    width:100%;
    border-top:1px solid #232222;
    border-bottom:1px solid #232222;
    padding:10px 0;
}

.page-series .oeuvre-link-row a{
    display:block;
    width:100%;
}
.page-series .oeuvre-link-row{
    margin-top:24px;
}

.page-series .oeuvre-link-box{
    border:1px solid rgba(15,25,30,.12);
    padding:14px 16px;
    display:block;
    width:100%;
}

.page-series .oeuvre-link-box a,
.page-series .oeuvre-link-box a:visited{
    display:block;
    font-family:"Cormorant Garamond", serif;
    font-weight:300;
    font-size:15px;
    line-height:1.4;
    letter-spacing:2px;
    color:#0f191e;
    text-decoration:none;
}

.page-series .oeuvre-link-box a:hover{
    color:#503723;
}


@media (min-width:421px){
    .page-series .oeuvre-wrap{
        left:70px;
        top:120px;
        right:auto;
        bottom:60px;
        width:900px;
        max-width:900px;
    }

    .page-series .oeuvre-layout{
        display:grid;
        grid-template-columns:520px 320px;
        gap:40px;
        align-items:start;
    }

    .page-series .oeuvre-media{
        width:520px;
        max-width:520px;
    }

    .page-series .oeuvre-thumbs{
        display:grid;
        grid-template-columns:repeat(4, 92px);
        gap:14px;
        width:520px;
        max-width:520px;
        margin-top:18px;
        align-content:start;
    }

    .page-series .oeuvre-header h1{
        font-size:20px;
    }
}
/* LIENS — STYLE CADRE */
.page-series .oeuvre-link-row{
    border:none !important;
    padding:0 !important;
}

.page-series .oeuvre-link-row a{
    display:block;
    width:100%;
    text-decoration:none;
    color:#232222;
    letter-spacing:.3em;
    padding:14px 18px;
    border:1px solid #232222;
    margin-bottom:16px;
}

    .page-series .oeuvre-link-box{
        display:inline-block;
        width:auto;
        padding:16px 20px;
    }


/* HOVER LIENS DESKTOP UNIQUEMENT */
@media (min-width:900px){
    .page-series .oeuvre-link-row a:hover{
        color:#503723;
        border-color:#503723;
    }
}
