/* =========================================================
   PAGE MENTIONS LÉGALES
   ========================================================= */

.fisel-legal {
    background: #f6f0df;
    color: #211916;
}

/* HERO */

.fisel-legal-hero {
    position: relative;
    overflow: hidden;
    background: #2f5d46;
    color: #fff7df;
    border-bottom: 8px solid #d6402f;
}

.fisel-legal-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -90px;
    width: 320px;
    height: 320px;
    border: 68px solid rgba(242, 201, 76, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.fisel-legal-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(70px, 10vw, 120px) 0;
}

.fisel-legal-kicker {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 16px;
    background: #d6402f;
    color: #fff7df;
    border: 2px solid #211916;
    border-radius: 999px;
    box-shadow: 4px 4px 0 #211916;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fisel-legal-hero h1 {
    margin: 0 0 28px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 11vw, 8rem);
    line-height: 0.86;
    letter-spacing: 0.02em;
    color: #f2c94c;
    text-transform: uppercase;
    text-shadow: 7px 7px 0 #d6402f;
}

.fisel-legal-intro {
    max-width: 780px;
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65;
}

/* CONTENU */

.fisel-legal-content {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) 0;
    display: grid;
    gap: 28px;
}

.fisel-legal-card {
    background: #fff7df;
    border: 3px solid #211916;
    border-radius: 24px;
    padding: clamp(26px, 4vw, 44px);
    box-shadow: 9px 9px 0 #d6402f;
}

.fisel-legal-card h2 {
    margin: 0 0 18px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 0.95;
    color: #2f5d46;
    text-transform: uppercase;
}

.fisel-legal-card p {
    max-width: 850px;
    margin: 0 0 16px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.fisel-legal-card p:last-child {
    margin-bottom: 0;
}

.fisel-legal-card strong {
    color: #211916;
}

.fisel-legal-card a {
    color: #b82f22;
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.fisel-legal-card a:hover,
.fisel-legal-card a:focus-visible {
    color: #2f5d46;
}

.fisel-legal-card a:focus-visible {
    outline: 3px solid rgba(242, 201, 76, 0.75);
    outline-offset: 4px;
}

/* RESPONSIVE */

@media (max-width: 700px) {
    .fisel-legal-hero-inner,
    .fisel-legal-content {
        width: min(100% - 28px, 1100px);
    }

    .fisel-legal-hero {
        border-bottom-width: 6px;
    }

    .fisel-legal-hero h1 {
        font-size: clamp(3.6rem, 18vw, 6rem);
        text-shadow: 5px 5px 0 #d6402f;
    }

    .fisel-legal-card {
        padding: 26px 20px;
        border-radius: 20px;
        box-shadow: 7px 7px 0 #d6402f;
    }
}