/* ==========================================================
   PLAISIRS WORLD - LEGAL V1
   ========================================================== */

.pw-legal-page{
    min-height:100vh;
    box-sizing:border-box;
    padding:150px 24px 70px;
    background:#080809;
    color:#e7dfcf;
}

.pw-legal-shell{
    width:min(1040px,100%);
    margin:0 auto;
}

.pw-legal-eyebrow{
    margin-bottom:11px;
    color:#b99348;
    font-size:11px;
    font-weight:700;
    letter-spacing:.16em;
}

.pw-legal-shell > h1{
    margin:0;
    color:#e2c47f;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(31px,4vw,48px);
    font-weight:500;
}

.pw-legal-intro{
    max-width:760px;
    margin:13px 0 7px;
    color:#a89e8f;
    font-size:15px;
    line-height:1.65;
}

.pw-legal-updated{
    margin-bottom:30px;
    color:#70695f;
    font-size:12px;
}

.pw-legal-card,
.pw-legal-notice{
    margin-top:14px;
    padding:24px 26px;
    border:1px solid rgba(218,181,94,.14);
    border-radius:18px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.018),
            rgba(255,255,255,.008)
        );
}

.pw-legal-notice{
    border-color:rgba(218,181,94,.30);
    background:rgba(218,181,94,.045);
}

.pw-legal-card h2{
    margin:0 0 12px;
    color:#d8b96f;
    font-size:19px;
}

.pw-legal-card p,
.pw-legal-notice p{
    color:#aaa195;
    font-size:14px;
    line-height:1.75;
}

.pw-legal-card ul{
    padding-left:22px;
    color:#aaa195;
}

.pw-legal-card li{
    margin:8px 0;
    line-height:1.65;
}

.pw-legal-card a,
.pw-legal-card a:visited,
.pw-legal-nav a,
.pw-legal-nav a:visited{
    color:#d9b56f;
    text-decoration:none;
}

.pw-legal-card a:hover,
.pw-legal-nav a:hover{
    color:#f0d38c;
}

.pw-legal-company{
    display:flex;
    flex-direction:column;
    gap:5px;
    margin-top:36px;
    padding:23px 0;
    border-top:1px solid rgba(218,181,94,.12);
    color:#746e65;
    font-size:12px;
}

.pw-legal-company strong{
    color:#c6a761;
    font-size:14px;
}

.pw-legal-nav{
    display:flex;
    flex-wrap:wrap;
    gap:10px 19px;
    padding-top:8px;
}

.pw-legal-nav a{
    font-size:12px;
}

@media(max-width:700px){

    .pw-legal-page{
        padding:
            115px 15px 45px;
    }

    .pw-legal-card,
    .pw-legal-notice{
        padding:20px 18px;
    }

}

/* =========================================================
   Plaisirs World - liens pages juridiques
   ========================================================= */

.pw-legal-page a,
.pw-legal-page a:visited {
    color: #d7a93d;
    text-decoration: none;
    text-decoration-color: transparent;
    transition:
        color .18s ease,
        opacity .18s ease;
}

.pw-legal-page a:hover,
.pw-legal-page a:focus-visible {
    color: #f0c968;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pw-legal-page a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    border-radius: 3px;
}

