html,
body{
    overflow-x:hidden;
    max-width:100%;
}

:root{
    --bg:#0a0a0a;
    --surface:#111111;
    --surface2:#171717;

    --border:#2d2d2d;

    --text:#fafafa;
    --muted:#a1a1aa;

    --primary:#8b5cf6;
    --primary2:#6366f1;

    --success:#22c55e;
}

body{
    margin:0;
    background:
    radial-gradient(circle at top right,#312e81 0%,transparent 30%),
    linear-gradient(180deg,#0a0a0a,#111111);

    color:var(--text);

    font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

/* =========================
   PAGE CONTAINER
========================= */

.search-container{
    width:100%;
}

.job-list{

    max-width:900px;

    margin:40px auto;

    padding:0 15px;
}

/* =========================
   PAGE TITLE
========================= */

.search-title{

    color:#fff;

    font-size:32px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:25px;
}

/* =========================
   SEARCH FORM
========================= */

.rr-job-search-form{

    display:grid;

    grid-template-columns:1fr 1fr 220px;

    gap:14px;

    max-width:900px;

    margin:0 auto 35px;

    background:#171717;

    padding:20px;

    border-radius:26px;

    border:1px solid #2d2d2d;

    box-shadow:
    0 20px 50px rgba(0,0,0,.35);
}

/* INPUT */

.rr-job-search-form input{

    width:100%;

    height:62px;

    border-radius:16px;

    border:1px solid #2d2d2d;

    background:#0f0f0f;

    color:#fff;

    padding:0 18px;

    font-size:15px;

    transition:.25s ease;
}

.rr-job-search-form input::placeholder{
    color:#71717a;
}

.rr-job-search-form input:focus{

    outline:none;

    border-color:#8b5cf6;

    box-shadow:
    0 0 0 4px rgba(139,92,246,.12);
}

/* BUTTON */

.rr-job-search-form button{

    height:62px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    font-size:15px;

    font-weight:700;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );

    transition:.25s ease;

    box-shadow:
    0 8px 25px rgba(139,92,246,.25);
}

.rr-job-search-form button:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 30px rgba(139,92,246,.35);
}

/* =========================
   NO JOBS
========================= */

.no-jobs{

    text-align:center;

    padding:50px 25px;

    background:#171717;

    border:1px solid #2d2d2d;

    border-radius:22px;

    color:#a1a1aa;
}

/* =========================
   JOB CARD OVERRIDE
========================= */

.job-card{

    background:#171717;

    border:1px solid #2d2d2d;

    border-radius:20px;

    padding:18px;

    margin-bottom:16px;

    transition:.25s ease;
}

.job-card:hover{

    transform:translateY(-4px);

    border-color:#8b5cf6;

    box-shadow:
    0 15px 35px rgba(139,92,246,.15);
}

.job-card h3{
    color:#fafafa;
}

.job-card .company{
    color:#a1a1aa;
}

.job-card .meta{
    color:#cbd5e1;
}

.job-card .salary{

    display:inline-block;

    background:
    rgba(34,197,94,.12);

    border:
    1px solid rgba(34,197,94,.25);

    color:#22c55e;

    padding:6px 10px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .job-list{
        margin:25px auto;
    }

    .search-title{

        font-size:24px;

        margin-bottom:18px;
    }

    .rr-job-search-form{

        grid-template-columns:1fr;

        padding:15px;

        border-radius:22px;
    }

    .rr-job-search-form input,
    .rr-job-search-form button{

        width:100%;

        height:58px;
    }

    .job-card{
        flex-direction:column;
    }

    .job-card img{

        width:100%;

        height:180px;

        object-fit:cover;

        border-radius:14px;
    }
}


.rr-hero-content{

    text-align:center;

    max-width:900px;

    margin:60px auto 30px;
}

.rr-hero-content h1{

    text-align:center;

    width:100%;
}

.rr-hero-content p{

    text-align:center;
}