/* ==========================================================
   PURESCREEN - PAGES LÉGALES
========================================================== */

.ps-legal-page {
    padding: 85px 0 110px;
    background: #111111;
    color: #dddddd;
}

.ps-legal-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.ps-legal-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--ps-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.ps-legal-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.ps-legal-line {
    display: block;
    width: 75px;
    height: 4px;
    margin: 24px auto 28px;
    background: var(--ps-red);
    border-radius: 20px;
}

.ps-legal-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #aaaaaa;
    font-size: 16px;
    line-height: 1.7;
}

.ps-legal-content {
    max-width: 980px;
    margin: 0 auto;
}

.ps-legal-section {
    margin-bottom: 52px;
}

.ps-legal-section h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.ps-legal-section h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    margin-top: 12px;
    background: var(--ps-red);
    border-radius: 20px;
}

.ps-legal-section p {
    margin: 0 0 15px;
    color: #c5c5c5;
    font-size: 15px;
    line-height: 1.85;
}

.ps-legal-section a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--ps-red);
    text-underline-offset: 3px;
}

.ps-legal-section a:hover {
    color: var(--ps-red);
}

.ps-legal-card {
    padding: 28px 30px;
    background: #181818;
    border: 1px solid #333333;
    border-radius: 10px;
}

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

.ps-legal-card--warning {
    border-color: rgba(213, 0, 0, .65);
    box-shadow: inset 4px 0 0 var(--ps-red);
}

@media (max-width: 768px) {

    .ps-legal-page {
        padding: 60px 0 80px;
    }

    .ps-legal-header {
        margin-bottom: 50px;
    }

    .ps-legal-section {
        margin-bottom: 40px;
    }

    .ps-legal-card {
        padding: 22px 20px;
    }
}

@media (max-width: 600px) {

    .ps-legal-page {
        padding: 50px 0 65px;
    }

    .ps-legal-section h2 {
        font-size: 21px;
    }

    .ps-legal-section p {
        font-size: 14px;
        line-height: 1.75;
    }
}

/* ==========================================================
   PURESCREEN - CRÉDIT DIGITAL TROOPER
========================================================== */

.ps-legal-credit {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 24px 28px;

    background: #181818;
    border: 1px solid #333333;
    border-radius: 10px;
}

.ps-legal-credit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;
}

.ps-legal-credit-icon img {
    display: block;

    width: 42px;
    height: 42px;

    object-fit: contain;
}

.ps-legal-credit-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ps-legal-credit-label {
    color: var(--ps-red);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.ps-legal-credit-content strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 900;
}


/* MOBILE */

@media (max-width: 600px) {

    .ps-legal-credit {
        padding: 20px;
        gap: 16px;
    }

    .ps-legal-credit-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .ps-legal-credit-icon img {
        width: 36px;
        height: 36px;
    }

    .ps-legal-credit-content strong {
        font-size: 16px;
    }
}