/* Minification failed. Returning unminified contents.
(9,22): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(21,59): run-time error CSS1039: Token not allowed after unary operator: '-tertiary-color'
(73,19): run-time error CSS1039: Token not allowed after unary operator: '-margin-40px'
(73,38): run-time error CSS1039: Token not allowed after unary operator: '-base-padding-x'
(73,60): run-time error CSS1039: Token not allowed after unary operator: '-margin-80px'
(74,22): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(97,17): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(104,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(121,21): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(140,21): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(199,23): run-time error CSS1039: Token not allowed after unary operator: '-margin-40px'
(199,42): run-time error CSS1039: Token not allowed after unary operator: '-base-padding-x'
 */
/* ========================================
   HERO LEGAL
   Politique / Mentions légales / Cookies
======================================== */

.hero-legal {
    position: relative;
    overflow: hidden;
    background: var(--white-color);
}

/* ========================================
   GRADIENT
======================================== */

.hero-legal-gradient {
    position: relative;
    overflow: hidden;
    height: 34vh;
    min-height: 260px;
    background: url('/Content/img/StaticNoise.webp') var(--tertiary-color) repeat;
}

    .hero-legal-gradient::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .18;
        pointer-events: none;
        background: url('/Content/img/StaticNoise.webp');
    }

    /* ========================================
   BULBS
======================================== */

.hero-legal-gradient img {
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.hero-legal-orange {
    width: 34%;
    left: -12%;
    top: 10%;
    opacity: .95;
    filter: blur(130px);
}

.hero-legal-blue {
    width: 80%;
    left: 22%;
    top: 8%;
    opacity: .9;
    filter: blur(120px);
}

.hero-legal-green {
    width: 70%;
    right: -12%;
    top: -12%;
    opacity: .65;
    filter: blur(110px);
}

/* ========================================
   CONTENT CONTAINER
======================================== */

.hero-legal-container {
    width: 100%;
    padding: var(--margin-40px) var(--base-padding-x) var(--margin-80px);
    background: var(--white-color);
}

.hero-legal-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    column-gap: 4vw;
}

/* ========================================
   LEFT
======================================== */

.hero-legal-left {
    width: 48%;
}

.hero-legal-left small {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-legal-left h1 {
    margin: 0;
    color: var(--primary-color);
    line-height: 1.05;
}

/* ========================================
   RIGHT
======================================== */

.hero-legal-right {
    width: 46%;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

    .hero-legal-right h2 {
        margin: 2rem 0 .75rem;
        color: var(--primary-color);
    }

        .hero-legal-right h2:first-child {
            margin-top: 0;
        }

    .hero-legal-right p,
    .hero-legal-right li {
        margin: 0;
        color: rgba(5, 32, 41, .88);
        line-height: 1.7;
    }

    .hero-legal-right ul {
        padding-left: 1.25rem;
    }

    .hero-legal-right a {
        color: var(--secondary-color);
        text-decoration: none;
        transition: opacity .2s ease;
    }

        .hero-legal-right a:hover {
            opacity: .8;
            text-decoration: underline;
        }

/* ========================================
   TABLET
======================================== */

@media only screen and (max-width: 1024px) {

    .hero-legal-gradient {
        height: 28vh;
        min-height: 220px;
    }

    .hero-legal-wrapper {
        flex-direction: column;
        row-gap: 3rem;
    }

    .hero-legal-left,
    .hero-legal-right {
        width: 100%;
    }

    .hero-legal-orange {
        width: 55%;
        left: -22%;
    }

    .hero-legal-blue {
        width: 120%;
        left: 0;
    }

    .hero-legal-green {
        width: 100%;
        right: -35%;
    }
}

/* ========================================
   MOBILE
======================================== */

@media only screen and (max-width: 767px) {

    .hero-legal-gradient {
        height: 24vh;
        min-height: 180px;
    }

    .hero-legal-container {
        padding: var(--margin-40px) var(--base-padding-x);
    }

    .hero-legal-wrapper {
        row-gap: 2rem;
    }

    .hero-legal-right {
        row-gap: 1.25rem;
    }

        .hero-legal-right h2 {
            margin: 1.5rem 0 .5rem;
        }

    .hero-legal-orange {
        width: 70%;
        left: -32%;
        top: 18%;
    }

    .hero-legal-blue {
        width: 150%;
        left: -12%;
        top: 10%;
    }

    .hero-legal-green {
        width: 120%;
        right: -48%;
        top: -8%;
    }
}

