/* ==========================================
   Racing Division - Legal Pages
========================================== */

.rd-legal{
    background:var(--rd-black);
}


/* HERO */

.rd-legal-hero{
    position:relative;
    padding:120px 0 80px;
    text-align:center;
    overflow:hidden;
    border-bottom:1px solid var(--rd-border);
    background:
    radial-gradient(circle at top, rgba(0,200,83,.12), transparent 45%),
    linear-gradient(180deg,#080808 0%,#050505 100%);

}

.rd-legal__eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:20px;
    color:var(--rd-green);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.rd-legal__eyebrow::before,
.rd-legal__eyebrow::after{
    content:"";
    width:34px;
    height:2px;
    background:var(--rd-green);
    opacity:.8;
}

.rd-legal__title{
    margin-bottom:18px;
}

.rd-legal__subtitle{
    max-width:760px;
    margin:auto;
    color:var(--rd-text-soft);
    font-size:18px;
}

/* CONTENIDO */

.rd-legal-content{
    padding:90px 0;
}

.rd-legal-content .rd-container{
    max-width:1440px;
}

/* TARJETAS */

.rd-legal-card{
    background:linear-gradient(180deg,var(--rd-surface-2),var(--rd-surface));
    border-radius:var(--rd-radius);
    padding:42px;
    margin-bottom:28px;
    transition:.25s;

}

.rd-legal-card:hover{
    border-color:rgba(0,200,83,.35);
    transform:translateY(-2px);
}

.rd-legal-card:last-child{
    margin-bottom:0;
}

.rd-legal-card h2{
    margin-bottom:24px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:var(--rd-text);
}

.rd-legal-card p{
    margin-bottom:18px;
    color:var(--rd-text-soft);
}

.rd-legal-card p:last-child{
    margin-bottom:0;
}

/* LISTAS */

.rd-legal-card ul{
    margin:28px 0;
    padding:0;
    list-style:none;
}

.rd-legal-card li{
    position:relative;
    padding-left:28px;
    margin-bottom:16px;
    color:var(--rd-text-soft);
}

.rd-legal-card li:last-child{
    margin-bottom:0;
}

.rd-legal-card li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--rd-green);
    box-shadow:0 0 12px rgba(0,200,83,.6);
}

.rd-legal-card strong{
    color:#fff;
}
/* LINKS */

.rd-legal-card a{
    color:var(--rd-green);
}
.rd-legal-card a:hover{
    text-decoration:underline;
}

/* TABLAS (por si se usan) */

.rd-legal-card table{
    width:100%;
    border-collapse:collapse;
    margin:24px 0;
}

.rd-legal-card th,
.rd-legal-card td{
    padding:14px 18px;
    border:1px solid var(--rd-border);
}

.rd-legal-card th{
    background:rgba(255,255,255,.04);
    text-align:left;
}

/* SELECCIÓN */

.rd-legal ::selection{
    background:var(--rd-green);
    color:#fff;
}

/* RESPONSIVE */

@media (max-width:991px){

    .rd-legal-hero{
        padding:90px 0 60px;
    }

    .rd-legal-content{
        padding:70px 0;
    }

    .rd-legal-card{
        padding:32px;
    }
}

@media (max-width:767px){

    .rd-legal-hero{
        padding:70px 0 50px;
    }

    .rd-legal__subtitle{
        font-size:16px;
    }

    .rd-legal-content{
        padding:50px 0;
    }

    .rd-legal-card{
        padding:24px 0px;
        border-radius:14px;
    }

    .rd-legal-card h2{
        margin-bottom:18px;
        padding-bottom:12px;
    }
}