/* =========================================
   SYDON CAREER DETAIL PAGES DARK OCEAN STYLE
========================================= */

.career-newpage {
    min-height:100vh;
    padding:150px 9% 100px;
    color:#eaf7ff;
    background:
        radial-gradient(circle at 18% 8%, rgba(25,105,150,.30), transparent 38%),
}

 /* HERO */

.career-newhero {
    max-width:950px;
    margin-bottom:110px;
}

.career-newhero h1 {
    font-size:clamp(4rem,5vw,8rem);
    line-height:.9;
    letter-spacing:-3px;
    font-weight:600;
    margin:0;
    background:linear-gradient(120deg,#ffffff,#8edcff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.career-newhero p {
    margin-top:40px;
    max-width:700px;
    font-size:1.1rem;
    line-height:1.8;
    color:rgba(220,240,250,.65);
}


/* CONTENT */

.career-newgrid {
    max-width:1150px;
    display:flex;
    flex-direction:column;
}

.career-newcard {
    display:grid;
    grid-template-columns:280px 1fr;
    gap:60px;
    padding:60px 0;
    border-top:1px solid rgba(100,210,255,.16);
}

.career-newcard:last-child {
    border-bottom:1px solid rgba(100,210,255,.16);
}

.career-newcard h2 {
    margin:0;
    font-size:1.7rem;
    font-weight:500;
    color:#91ddff;
    letter-spacing:-.3px;
}

.career-newcard p {
    margin:0;
    max-width:700px;
    font-size:1.05rem;
    line-height:1.9;
    color:rgba(230,245,255,.75);
}


/* LISTS */

.career-newcard ul {
    list-style:none;
    padding:0;
    margin:0;
}

.career-newcard li {
    padding:12px 0;
    font-size:1.05rem;
    color:rgba(230,245,255,.78);
    border-bottom:1px solid rgba(100,210,255,.08);
}

.career-newcard li:last-child {
    border-bottom:none;
}

.career-newcard li::before {
    content:"→";
    color:#67d8ff;
    margin-right:15px;
}


/* APPLY */

.career-newapply {
    max-width:1150px;
    margin-top:100px;
    padding-top:55px;
    border-top:1px solid rgba(100,210,255,.18);
    font-size:1.4rem;
    color:rgba(220,240,250,.7);
}

.career-newapply a {
    display:inline-block;
    margin-top:25px;
    color:#9de8ff;
    font-size:2rem;
    text-decoration:none;
    transition:.25s;
}

.career-newapply a:hover {
    color:white;
    transform:translateX(5px);
}


/* GLOW */

.career-newpage::before {
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
    background-size:100% 80px;
    opacity:.25;
}


/* MOBILE */

@media(max-width:850px) {
    .career-newpage {
        padding:110px 25px 70px;
    }

    .career-newhero h1 {
        font-size:4rem;
        letter-spacing:-3px;
    }

    .career-newcard {
        grid-template-columns:1fr;
        gap:25px;
        padding:45px 0;
    }

    .career-newcard h2 {
        font-size:1.4rem;
    }

    .career-newapply a {
        font-size:1.4rem;
    }
}


html,
body {
    height:auto;
    min-height:100%;
    overflow-x:hidden;
    overflow-y:auto;
}

.career-newpage {
    position:relative;
    min-height:100vh;
    height:auto;
    overflow:visible;
}


/* ==========================
   CAREER FOOTER
========================== */

.career-footer {
    position:relative;
    color:rgba(220,240,250,.35);
}


/* ==========================
   CAREER APPLICATION FORM
========================== */

.career-application {
    max-width:900px;
    margin-top:100px;
    padding-top:60px;
    border-top:1px solid rgba(100,210,255,.18);
}

.career-application h2 {
    margin:0 0 20px;
    color:#91ddff;
    font-size:2rem;
    font-weight:500;
}

.career-application p {
    max-width:650px;
    line-height:1.8;
    color:rgba(230,245,255,.7);
    margin-bottom:45px;
}

.career-form {
    max-width:850px;
}

.career-form-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.career-form label,
.career-file label {
    display:block;
    margin-bottom:10px;
    color:#bfeaff;
    font-size:.95rem;
}

.career-form input,
.career-form textarea,
.career-file input {
    width:100%;
    box-sizing:border-box;
    padding:16px;
    margin-bottom:25px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(100,210,255,.18);
    border-radius:10px;
    color:white;
    font-size:1rem;
    outline:none;
}

.career-form input:focus,
.career-form textarea:focus,
.career-file input:focus {
    border-color:#73d9ff;
    background:rgba(100,210,255,.08);
}

.career-form textarea {
    min-height:170px;
    resize:vertical;
}


/* CV UPLOAD */

.career-file {
    margin-bottom:25px;
}

.career-file input[type="file"] {
    cursor:pointer;
    color:#dff6ff;
}

.career-file input[type="file"]::file-selector-button {
    background:#06354d;
    color:white;
    border:none;
    padding:10px 18px;
    border-radius:20px;
    margin-right:15px;
    cursor:pointer;
}


/* SUBMIT */

.career-form button {
    margin-top:15px;
    padding:16px 35px;
    border-radius:30px;
    border:1px solid rgba(100,210,255,.35);
    background:rgba(50,160,220,.15);
    color:white;
    font-size:1rem;
    cursor:pointer;
    transition:.25s;
}

.career-form button:hover {
    background:rgba(50,160,220,.35);
    transform:translateY(-2px);
}


@media(max-width:800px) {
    .career-form-row {
        grid-template-columns:1fr;
    }

    .career-application {
        margin-top:70px;
    }
}