/* ============================================================
   LEGAL PAGES  –  style_legal.css
   ============================================================ */

/* ---- menu override (same as career/index) ---- */
.menu ul li {
    margin-right: 40px;
}

/* ---- page header accent ---- */
.Legal__hero {
    padding: 60px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 60px;
}

.Legal__label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
}

.Legal__hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 36px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.Legal__hero h1::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #FF058C, rgba(255,5,140,0));
    margin-top: 16px;
    border-radius: 2px;
}

.Legal__meta {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ---- docs nav (pill links to switch between docs) ---- */
.Legal__docs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 52px;
}

.Legal__docs a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 7px 18px;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.Legal__docs a:hover {
    border-color: rgba(255,5,140,0.4);
    color: rgba(255,255,255,0.7);
}

.Legal__docs a.legal-active {
    border-color: rgba(255,5,140,0.55);
    color: #FF058C;
    background: rgba(255,5,140,0.04);
}

/* ---- content layout ---- */
.Legal__content {
    padding-bottom: 100px;
}

/* ---- sections ---- */
.Legal__section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.Legal__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 48px;
}

.Legal__section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.Legal__section h2::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #FF058C;
    border-radius: 50%;
    flex-shrink: 0;
}

.Legal__section p {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    margin-bottom: 10px;
}

.Legal__section ul {
    margin: 8px 0 10px;
    padding-left: 20px;
}

.Legal__section ul li {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    margin-bottom: 4px;
}

.Legal__section p:last-child {
    margin-bottom: 0;
}

.Legal__section a {
    color: #FF058C;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,5,140,0.3);
    transition: border-color 0.2s;
}

.Legal__section a:hover {
    border-bottom-color: rgba(255,5,140,0.75);
}

.Legal__section strong {
    color: rgba(255,255,255,0.92);
    font-weight: 600;
}

/* ---- back link ---- */
.Legal__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 16px;
}

.Legal__back::before {
    content: '←';
}

.Legal__back:hover {
    color: rgba(255,255,255,0.65);
}

/* ---- mobile ---- */
@media (max-width: 768px) {
    .Legal__hero {
        padding: 36px 0 28px;
        margin-bottom: 36px;
    }

    .Legal__hero h1 {
        font-size: 24px;
    }

    .Legal__docs {
        gap: 6px;
        margin-bottom: 36px;
    }

    .Legal__docs a {
        font-size: 12px;
        padding: 6px 14px;
    }

    .Legal__section {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .Legal__section p,
    .Legal__section ul li {
        font-size: 14px;
    }

    .Legal__content {
        padding-bottom: 60px;
    }
}
