:root {
    --navy: #172554;
    --navy-soft: #26375e;

    --blue: #1643b8;
    --blue-light: #2563eb;
    --blue-dark: #003a9a;

    --purple: #6d13c9;
    --purple-light: #7c3aed;

    --orange: #ff8b00;
    --green: #159957;
    --green-dark: #137a46;

    --red: #ef4444;

    --page-bg: #ffffff;
    --card-bg: #ffffff;

    --border: #dce3ef;
    --border-soft: #e8edf5;

    --muted: #52617f;

    --shadow:
        0 4px 14px rgba(23, 37, 84, 0.06),
        0 12px 30px rgba(23, 37, 84, 0.04);

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --muted: #34466f;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--navy);
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

.site-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 960px;
    padding: 0 20px 24px;
    overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 120px;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.header-link {
    display: contents;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    width: 250px;
    flex: 0 0 250px;
    display: flex;
    align-items: center;
}

.qx-mark {
    width: 102px;
    height: 82px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-family: Arial, sans-serif;
}

.qx-mark .q {
    position: absolute;
    left: 0;
    top: -8px;
    color: #070707;
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -10px;
}

.qx-mark .x {
    position: absolute;
    left: 49px;
    top: 23px;
    color: #df171b;
    font-size: 57px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -7px;
}

.brand-copy {
    padding-top: 1px;
    font-size: 18px;
    line-height: 1.38;
    font-weight: 400;
    letter-spacing: .3px;
    color: #202020;
}

.brand-copy span {
    display: block;
}

.brand-copy .technology {
    color: #cf171c;
}

.header-divider {
    width: 1px;
    height: 68px;
    margin-left: 8px;
    margin-right: 28px;
    background: #9aabc9;
}

.company-copy h1 {
    margin: 0 0 6px;
    color: #1b294e;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.company-copy p {
    margin: 0;
    color: #26375e;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
}

/* =========================
PRIMARY ACTIONS - DESKTOP
========================= */

.actions {
    margin-left: auto;
    display: flex;
    gap: 18px;
}

.actions .btn {
    min-width: 155px;
    height: 57px;
    border: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

/* Find Job Button */
.find {
    background: linear-gradient(135deg, #2554ba, #1749bd);
}

/* Apply Now Button */
.apply {
    background: linear-gradient(135deg, #f89b12, #ff7800);
}

/* View Profile Button */
.profile {
    background: linear-gradient(135deg, #159957, #137a46);
}

/* Profile Dropdown (View Profile + Logout) */
.profile-dropdown {
    display: inline-flex;
}

.profile-dropdown .profile:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.profile-dropdown .dropdown-toggle-split {
    flex: 0 0 auto;
    width: 40px;
    min-width: 40px;
    padding: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.profile-dropdown .dropdown-toggle-split::after {
    margin: 0;
}

.profile-dropdown .dropdown-menu {
    min-width: 160px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(23, 37, 84, .14);
}

.profile-dropdown .dropdown-menu form {
    margin: 0;
}

.profile-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #172554;
    font-size: .88rem;
    font-weight: 700;
    text-align: left;
}

.profile-dropdown .dropdown-item:hover,
.profile-dropdown .dropdown-item:focus {
    background: #fdeeee;
    color: #b91c1c;
}

/* Button Icons */
.actions i {
    font-size: 1.35rem;
}

/* =========================================================
MAIN
========================================================= */

main {
    width: 100%;
    color: var(--navy);
}


/* =========================================================
JOB HERO
========================================================= */

.job-hero {
    position: relative;
    min-height: 310px;
    overflow: hidden;

    border-radius: 12px 12px 0 0;

    background:
        linear-gradient(
            105deg,
            #123b87 0%,
            #173d91 38%,
            #203c9e 68%,
            #6420bc 100%
        );

    isolation: isolate;
}


/* =========================================================
HERO BACKGROUND MAP
========================================================= */

.job-hero .map {
    position: absolute;
    top: 0;
    right: 0;

    width: 66%;
    height: 100%;

    opacity: 0.36;

    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,.9) 1px,
            transparent 1.5px
        );

    background-size: 5px 5px;

    -webkit-mask-image:
        linear-gradient(
            to left,
            rgba(0,0,0,1),
            rgba(0,0,0,.85),
            transparent
        );

    mask-image:
        linear-gradient(
            to left,
            rgba(0,0,0,1),
            rgba(0,0,0,.85),
            transparent
        );

    pointer-events: none;
}


/* Decorative continent shapes */

.job-hero .map::before,
.job-hero .map::after {
    content: "";

    position: absolute;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.95) 1px,
            transparent 1.5px
        );

    background-size: 5px 5px;

    opacity: .85;
}

.job-hero .map::before {
    width: 320px;
    height: 145px;

    top: 25px;
    left: 3%;

    clip-path: polygon(
        0 42%,
        8% 20%,
        25% 16%,
        36% 2%,
        57% 9%,
        65% 26%,
        82% 31%,
        100% 50%,
        82% 68%,
        68% 62%,
        52% 78%,
        33% 65%,
        19% 76%,
        4% 65%
    );
}

.job-hero .map::after {
    width: 360px;
    height: 180px;

    top: 38px;
    right: 2%;

    clip-path: polygon(
        0 30%,
        14% 11%,
        35% 18%,
        49% 4%,
        70% 15%,
        100% 10%,
        92% 39%,
        100% 58%,
        80% 72%,
        70% 96%,
        53% 82%,
        38% 91%,
        24% 65%,
        7% 68%
    );
}


/* =========================================================
HERO ROUTE
========================================================= */

.job-hero .route {
    position: absolute;

    top: 86px;
    right: 90px;

    width: 370px;
    height: 145px;

    border-top: 3px dashed rgba(255,255,255,.88);
    border-radius: 50%;

    transform:
        rotate(-9deg)
        skewX(-10deg);

    opacity: .9;

    pointer-events: none;
}


/* =========================================================
HERO PLANE
========================================================= */

.job-hero .plane {
    position: absolute;

    top: 62px;
    right: 110px;

    z-index: 3;

    color: #ffffff;

    font-size: 3.7rem;

    transform: rotate(18deg);

    filter:
        drop-shadow(
            0 6px 10px rgba(0,0,0,.18)
        );

    pointer-events: none;
}


/* =========================================================
HERO LOCATION PINS
========================================================= */

.job-hero .pin {
    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 1.8rem;

    text-shadow:
        0 0 0 7px rgba(255,255,255,.12),
        0 5px 12px rgba(0,0,0,.25);

    pointer-events: none;
}

.job-hero .p1 {
    top: 38px;
    right: 405px;

    color: #c084fc;
}

.job-hero .p2 {
    top: 132px;
    right: 310px;

    color: #d8b4fe;
}

.job-hero .p3 {
    top: 165px;
    right: 72px;

    color: #ff9b13;
}


/* =========================================================
HERO COPY
========================================================= */

.hero-copy {
    position: relative;
    z-index: 5;

    padding:
        55px
        60px
        48px;
}

.hero-copy h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -.025em;
}


/* =========================================================
JOB LOCATION
========================================================= */

.job-location {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: rgba(255,255,255,.95);

    font-size: 1.15rem;
    font-weight: 600;
}

.job-location i {
    color: #ffffff;

    font-size: 1.35rem;
}


/* =========================================================
HERO TAGS
========================================================= */

.hero-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 44px;

    padding: 0 24px;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.98),
            rgba(242,244,249,.94)
        );

    color: #253b8f;

    font-size: .95rem;
    font-weight: 700;

    box-shadow:
        0 5px 14px rgba(0,0,0,.12);
}


/* =========================================================
JOB INFORMATION CARD
========================================================= */

.job-info {
    position: relative;
    z-index: 10;

    margin-top: -1px;

    padding: 30px 48px;

    background: var(--card-bg);

    border:
        1px solid var(--border);

    border-top: 0;

    border-radius:
        0 0
        var(--radius-lg)
        var(--radius-lg);

    box-shadow:
        var(--shadow);
}


/* =========================================================
DETAILS GRID
========================================================= */

.detail-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0;
}


/* =========================================================
DETAIL ITEM
========================================================= */

.detail-item {
    display: flex;
    align-items: center;

    min-height: 72px;

    padding:
        0 28px;

    border-right:
        1px solid var(--border);
}


/* Remove right border every fourth item */

.detail-item:nth-child(4n) {
    border-right: 0;
}


/* Horizontal divider before second row */

.detail-item:nth-child(n + 5) {
    border-top:
        1px solid var(--border);

    padding-top: 24px;
    margin-top: 24px;
}


/* =========================================================
DETAIL ICON
========================================================= */

.detail-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 18px;

    border-radius: 12px;

    color: #2347bd;

    background:
        linear-gradient(
            135deg,
            #edf0ff,
            #f5f6fc
        );
}

.detail-icon i {
    font-size: 1.65rem;
}


/* =========================================================
DETAIL ICON COLOR VARIANTS
========================================================= */

.detail-icon-margin {
    margin-left: 8px;
}

.open-date .detail-icon {
    color: var(--green);

    background:
        linear-gradient(
            135deg,
            #edf8f1,
            #f4faf6
        );
}

.close-date .detail-icon {
    color: var(--red);

    background:
        linear-gradient(
            135deg,
            #fff0f0,
            #fff7f7
        );
}


/* =========================================================
DETAIL TEXT
========================================================= */

.detail-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.detail-text small {
    color: #263b73;

    font-size: .92rem;
    font-weight: 700;
}

.detail-text strong {
    color: #31416c;

    font-size: .96rem;
    font-weight: 500;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
LOWER CONTENT SECTION
========================================================= */

#jobs {
    margin-top: 14px;
}


/* =========================================================
CONTENT CARD
========================================================= */

.content-card,
.apply-card {
    height: 100%;

    padding: 28px 34px;

    background: var(--card-bg);

    border:
        1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow:
        var(--shadow);
}


/* =========================================================
SECTION TITLE
========================================================= */

.section-title {
    margin: 0 0 16px;

    color: #173c9c;

    font-size: 1.05rem;
    font-weight: 800;

    line-height: 1.3;

    text-transform: uppercase;
}


/* =========================================================
JOB DESCRIPTION
========================================================= */

.job-description {
    color: #31416c;

    font-size: .96rem;
    line-height: 1.65;
}

.job-description p {
    margin:
        0
        0
        24px;
}

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

.job-description strong {
    color: #263b73;
}


/* =========================================================
APPLY TO THIS JOB BUTTON
========================================================= */

.apply-job-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    height: 54px;
    padding: 0 30px;

    border: 0;
    border-radius: 8px;

    background: linear-gradient(135deg, #f89b12, #ff7800);

    color: #ffffff;

    font-size: .95rem;
    font-weight: 800;

    text-decoration: none;
    cursor: pointer;

    transition: transform .18s ease, box-shadow .18s ease;
}

.apply-job-btn:hover {
    color: #ffffff;

    transform: translateY(-1px);

    box-shadow: 0 8px 18px rgba(255, 120, 0, .25);
}

.apply-job-btn.is-loading {
    opacity: .75;
    pointer-events: none;
    transform: none;
}


/* =========================================================
APPLY STACK
========================================================= */

.apply-stack {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* =========================================================
APPLY CARD
========================================================= */

.apply-card {
    padding:
        24px
        30px;
}

.apply-card .section-title {
    margin-bottom: 14px;
}


/* =========================================================
APPLY ROW
========================================================= */

.apply-row {
    display: flex;
    align-items: center;

    gap: 20px;
}


/* =========================================================
APPLY ICON
========================================================= */

.apply-icon {
    width: 76px;
    height: 76px;

    flex: 0 0 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #2347bd;

    background:
        linear-gradient(
            135deg,
            #edf0ff,
            #f1f3fb
        );
}

.apply-icon i {
    font-size: 2.25rem;
}

.apply-icon.green {
    color: #17783f;

    background:
        linear-gradient(
            135deg,
            #eff8f2,
            #f4faf6
        );
}


/* =========================================================
APPLY COPY
========================================================= */

.apply-copy {
    width: 100%;
    min-width: 0;
}

.apply-copy > small {
    display: block;

    margin-bottom: 10px;

    color: #30416e;

    font-size: .8rem;
    font-weight: 500;
}


/* =========================================================
LOGIN FORM
========================================================= */

.login-form {
    display: flex;
    align-items: stretch;

    gap: 12px;
}

.login-form .form-control {
    height: 44px;

    min-width: 0;

    border-color: #cbd5e5;

    color: var(--navy);

    font-size: .85rem;

    box-shadow: none;
}

.login-form .form-control::placeholder {
    color: #6c7894;
}

.login-form .form-control:focus {
    border-color: #4366cb;

    box-shadow:
        0 0 0 .2rem rgba(37,99,235,.1);
}


/* =========================================================
SEND REQUEST BUTTON
========================================================= */

.request-btn {
    flex: 0 0 auto;

    height: 44px;

    padding:
        0
        20px;

    border: 0;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #2c4fba,
            #1236aa
        );

    color: #ffffff;

    font-size: .78rem;
    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 4px 10px rgba(22,67,184,.16);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        filter .18s ease;
}

.request-btn:hover {
    color: #ffffff;

    transform: translateY(-1px);

    filter: brightness(1.05);

    box-shadow:
        0 7px 15px rgba(22,67,184,.22);
}

.request-btn.is-loading {
    opacity: .75;
    pointer-events: none;
}


/* =========================================================
UPLOAD ZONE
========================================================= */

.upload-zone {
    width: 100%;
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 16px 22px;

    border:
        1px dashed #49956a;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            rgba(241,249,244,.9),
            rgba(255,255,255,.95)
        );

    color: #24314f;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.upload-zone:hover,
.upload-zone.is-dragover {
    border-color: #1b8a49;

    background:
        #f4fbf6;
}

.upload-zone.is-uploading {
    opacity: .65;
    pointer-events: none;
}

.upload-zone i {
    flex: 0 0 auto;

    color: #18733b;

    font-size: 2rem;
}

.upload-zone > span {
    display: flex;
    flex-direction: column;

    gap: 4px;

    text-align: center;
}

.upload-zone strong {
    color: #28303e;

    font-size: .85rem;
    font-weight: 700;
}

.upload-zone > span > span {
    color: #435174;

    font-size: .76rem;
}


/* =========================================================
OR DIVIDER
========================================================= */

.or-divider {
    display: flex;
    align-items: center;

    gap: 14px;

    margin:
        14px
        0;

    color: #42506f;

    font-size: .75rem;
    font-weight: 600;

    text-align: center;
}

.or-divider::before,
.or-divider::after {
    content: "";

    height: 1px;

    flex: 1;

    background:
        var(--border);
}


/* =========================================================
BROWSE FILE BUTTON
========================================================= */

.browse-wrap {
    display: flex;
    justify-content: flex-end;
}

.browse-btn {
    min-width: 132px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid #4a9a69;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f2f8f4
        );

    color: #236e3c;

    font-size: .78rem;
    font-weight: 700;

    transition:
        background .18s ease,
        transform .18s ease;
}

.browse-btn:hover {
    background:
        #edf8f0;

    color: #1b6335;

    transform: translateY(-1px);
}

.browse-btn.is-uploading {
    opacity: .65;
    pointer-events: none;
    transform: none;
}

/* =========================================================
LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .job-hero {
        min-height: 310px;
    }

    .hero-copy {
        padding-left: 60px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
    .site-shell {
        padding-right: 24px;
        padding-left: 24px;
    }

    .job-hero {
        min-height: 290px;
    }

    .hero-copy {
        padding:
            50px
            45px
            40px;
    }

    .hero-copy h2 {
        font-size: 2.5rem;
    }


    /* Details */

    .job-info {
        padding:
            26px
            24px;
    }

    .detail-item {
        padding:
            0
            18px;
    }

    .detail-icon {
        margin-right: 14px;
    }

    .detail-icon-margin {
        margin-left: 0;
    }


    /* Map */

    .job-hero .route {
        right: 40px;

        transform:
            scale(.9)
            rotate(-9deg)
            skewX(-10deg);

        transform-origin: right center;
    }

    .job-hero .plane {
        right: 65px;
    }

    .job-hero .p1 {
        right: 320px;
    }

    .job-hero .p2 {
        right: 240px;
    }

    .job-hero .p3 {
        right: 35px;
    }


    /* Cards */

    .content-card,
    .apply-card {
        padding:
            26px
            28px;
    }
}

/* =========================================================
   TABLET / 768
========================================================= */

@media (max-width: 991.98px) {
    .site-header {
        height: auto;
        padding: 28px 0;
    }

    .header-inner {
        align-items: flex-start;
    }

    .brand-logo {
        width: auto;
        flex-basis: auto;
    }

    .header-divider {
        margin-right: 24px;
    }

    .actions {
        margin-left: auto;
    }

    /* Hero */

    .job-hero {
        min-height: 275px;
    }

    .hero-copy {
        padding:
            45px
            38px;
    }

    .hero-copy h2 {
        font-size: 2.25rem;
    }


    /* Reduce map visual */

    .job-hero .map {
        width: 70%;

        opacity: .25;
    }

    .job-hero .route {
        right: -20px;

        transform:
            scale(.72)
            rotate(-9deg)
            skewX(-10deg);
    }

    .job-hero .plane {
        right: 10px;

        font-size: 3rem;
    }

    .job-hero .p1 {
        right: 230px;
    }

    .job-hero .p2 {
        right: 150px;
    }

    .job-hero .p3 {
        right: 20px;
    }


    /* Details */

    .detail-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .detail-item {
        min-height: 78px;

        padding:
            0
            24px;

        border-right:
            1px solid var(--border);
    }

    .detail-item:nth-child(4n) {
        border-right:
            1px solid var(--border);
    }

    .detail-item:nth-child(2n) {
        border-right: 0;
    }

    .detail-item:nth-child(n + 5) {
        margin-top: 0;
    }

    .detail-item:nth-child(n + 3) {
        margin-top: 20px;
        padding-top: 20px;

        border-top:
            1px solid var(--border);
    }


    /* Lower cards */

    #jobs {
        margin-top: 16px;
    }

    .content-card {
        min-height: auto;
    }

    .apply-stack {
        margin-top: 0;
    }

}

/* =========================================================
   MOBILE / 375
========================================================= */

@media (max-width: 767.98px) {
    .site-shell {
        padding: 0 12px 20px;
    }

    .site-header {
        padding: 20px 8px;
    }

    .header-inner {
        flex-direction: column;
        gap: 18px;
    }

    .brand-logo {
        width: 100%;
    }

    .header-divider {
        display: none;
    }

    .actions {
        width: 100%;
        margin-left: 0;
        gap: 10px;
    }

    .actions .btn {
        flex: 1;
        min-width: 0;
        height: 50px;
        font-size: 0.8rem;
    }

    .company-copy h1 {
        font-size: 22px;
    }

    .company-copy p {
        font-size: 15px;
    }

    main {
        overflow: hidden;
    }


    /* =====================================================
    HERO
    ===================================================== */

    .job-hero {
        min-height: 290px;

        border-radius:
            10px
            10px
            0
            0;
    }

    .hero-copy {
        padding:
            36px
            26px
            34px;
    }

    .hero-copy h2 {
        max-width: 90%;

        margin-bottom: 15px;

        font-size: 2rem;
    }

    .job-location {
        gap: 8px;

        margin-bottom: 18px;

        font-size: 1rem;
    }

    .job-location i {
        font-size: 1.2rem;
    }

    .hero-tags {
        gap: 9px;
    }

    .hero-tag {
        min-width: auto;
        height: 40px;

        padding:
            0
            20px;

        font-size: .85rem;
    }


    /* Hero artwork */

    .job-hero .map {
        width: 100%;
        right: -15%;

        opacity: .16;
    }

    .job-hero .map::before {
        width: 250px;

        top: 35px;
    }

    .job-hero .map::after {
        width: 270px;

        top: 70px;
        right: -30px;
    }

    .job-hero .route {
        width: 250px;

        top: 125px;
        right: -50px;

        transform:
            rotate(-10deg)
            skewX(-10deg);
    }

    .job-hero .plane {
        top: 75px;
        right: 25px;

        font-size: 2.5rem;

        opacity: .8;
    }

    .job-hero .p1 {
        display: none;
    }

    .job-hero .p2 {
        top: 130px;
        right: 135px;

        font-size: 1.4rem;
    }

    .job-hero .p3 {
        top: 190px;
        right: 28px;

        font-size: 1.6rem;
    }


    /* =====================================================
    JOB INFO
    ===================================================== */

    .job-info {
        padding:
            20px
            18px;

        border-radius:
            0 0
            14px
            14px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-item,
    .detail-item:nth-child(4n),
    .detail-item:nth-child(2n) {
        min-height: 72px;

        padding:
            16px
            4px;

        margin: 0;

        border-right: 0;
        border-top:
            1px solid var(--border);
    }

    .detail-item:first-child {
        padding-top: 0;

        border-top: 0;
    }

    .detail-item:nth-child(n + 3) {
        margin-top: 0;
    }

    .detail-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        margin-right: 15px;
    }

    .detail-icon i {
        font-size: 1.4rem;
    }

    .detail-text small {
        font-size: .82rem;
    }

    .detail-text strong {
        font-size: .9rem;
    }


    /* =====================================================
    LOWER CONTENT
    ===================================================== */

    #jobs {
        margin-top: 14px;
    }

    .content-card,
    .apply-card {
        padding:
            23px
            20px;

        border-radius: 14px;
    }

    .section-title {
        margin-bottom: 15px;

        font-size: .95rem;
    }

    .job-description {
        font-size: .9rem;
        line-height: 1.65;
    }

    .job-description p {
        margin-bottom: 20px;
    }


    /* Apply cards */

    .apply-stack {
        gap: 14px;
    }

    .apply-row {
        align-items: flex-start;

        gap: 14px;
    }

    .apply-icon {
        width: 60px;
        height: 60px;

        flex-basis: 60px;
    }

    .apply-icon i {
        font-size: 1.8rem;
    }

    .apply-copy > small {
        font-size: .75rem;
    }


    /* Login */

    .login-form {
        flex-direction: column;

        gap: 9px;
    }

    .login-form .form-control,
    .request-btn {
        width: 100%;
        height: 44px;
    }


    /* Upload */

    .upload-zone {
        min-height: 130px;

        flex-direction: column;

        gap: 8px;

        padding:
            18px
            12px;
    }

    .upload-zone strong {
        font-size: .82rem;
    }

    .upload-zone > span > span {
        font-size: .72rem;
    }

    .browse-wrap {
        justify-content: stretch;
    }

    .browse-btn {
        width: 100%;
    }

}

@media (max-width: 575.98px) {

    /* Hero */

    .job-hero {
        min-height: 270px;
    }

    .hero-copy {
        padding:
            32px
            20px;
    }

    .hero-copy h2 {
        max-width: 100%;

        font-size: 1.75rem;
    }

    .job-location {
        font-size: .9rem;
    }

    .hero-tag {
        height: 38px;

        padding:
            0
            17px;

        font-size: .78rem;
    }


    /* Decorative artwork */

    .job-hero .plane {
        top: 60px;
        right: 18px;

        font-size: 2.1rem;

        opacity: .55;
    }

    .job-hero .route {
        top: 120px;
        right: -75px;

        width: 220px;

        opacity: .5;
    }

    .job-hero .p2 {
        display: none;
    }

    .job-hero .p3 {
        top: 178px;
        right: 22px;

        font-size: 1.35rem;
    }


    /* Details */

    .job-info {
        padding:
            18px
            16px;
    }

    .detail-item {
        min-height: 65px;

        padding:
            13px
            2px;
    }

    .detail-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        margin-right: 13px;

        border-radius: 10px;
    }

    .detail-icon i {
        font-size: 1.25rem;
    }

    .detail-text {
        gap: 3px;
    }

    .detail-text small {
        font-size: .75rem;
    }

    .detail-text strong {
        font-size: .82rem;
    }


    /* Content */

    .content-card,
    .apply-card {
        padding:
            20px
            17px;
    }

    .section-title {
        font-size: .88rem;
    }

    .job-description {
        font-size: .85rem;
    }


    /* Apply */

    .apply-row {
        flex-direction: column;
    }

    .apply-icon {
        width: 56px;
        height: 56px;

        flex-basis: 56px;
    }

    .apply-copy {
        width: 100%;
    }

}

@media (max-width: 399.98px) {

    .hero-copy {
        padding:
            30px
            16px;
    }

    .hero-copy h2 {
        font-size: 1.55rem;
    }

    .job-location {
        font-size: .82rem;
    }

    .hero-tags {
        gap: 7px;
    }

    .hero-tag {
        height: 36px;

        padding:
            0
            14px;

        font-size: .73rem;
    }

    .job-info {
        padding:
            16px
            13px;
    }

    .content-card,
    .apply-card {
        padding:
            18px
            14px;
    }

}


/* =========================================================
   TYPOGRAPHY SCALE — 10% SMALLER THAN ORIGINAL
   Logo artwork and icon sizes remain unchanged.
========================================================= */
.brand-copy { font-size: 16.2px; }
.company-copy h1 { font-size: 24.3px; }
.company-copy p { font-size: 16.2px; }


@media (max-width: 767.98px) {
    .company-copy h1 { font-size: 19.8px; }
    .company-copy p { font-size: 13.5px; }
}



/* =========================================================
   SUPPLIED QX LOGO
========================================================= */
.brand-logo {
    width: 250px;
    flex: 0 0 250px;
    display: flex;
    align-items: center;
}

.brand-logo-image {
    display: block;
    width: 227px;
    height: auto;
    max-height: 95px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .brand-logo-image {
        width: min(227px, 100%);
        height: auto;
    }
}

.site-footer {
    text-align: center;
    padding: 24px 0;
    color: #64718c;
    font-size: 13px;
    font-weight: 600;
}

.site-shell.sticky-footer-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.site-shell.sticky-footer-shell > main {
    flex: 1 0 auto;
}
.site-shell.sticky-footer-shell > .site-footer {
    flex: 0 0 auto;
}

.applynow-card {
    position: relative;
    padding: 40px 46px;
}
.applynow-card .corner-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2554ba, #1749bd);
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 6px 16px rgba(23, 37, 84, .25);
}
.applynow-card .section-title {
    font-size: 1.85rem;
}
.applynow-card .apply-copy > small {
    font-size: 0.95rem;
}
.applynow-card .apply-icon {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
}
.applynow-card .apply-icon i {
    font-size: 2.6rem;
}
