/* JobPosting247 visual refresh
   Layout only: PHP, sessions, form names and database-backed loops remain unchanged. */
:root {
    --ink: #10243e;
    --ink-soft: #50627a;
    --navy: #12335b;
    --blue: #1769aa;
    --teal: #2aa39a;
    --coral: #e96a58;
    --cream: #f5f8fc;
    --line: #dbe5ef;
    --white: #fff;
    --shadow: 0 18px 48px rgba(20, 52, 87, .13);
}

html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}
body *, body *::before, body *::after { box-sizing: border-box; }
#container { width: 100%; min-height: 100vh; }
a { color: inherit; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    position: relative;
    z-index: 5;
    float: none;
    width: 100%;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(219, 229, 239, .8);
}
.header-shell {
    width: min(1180px, calc(100% - 48px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 38px;
    position: relative;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex: 0 0 auto;
}
.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: 0 7px 16px rgba(23, 105, 170, .2);
}
.brand-mark span { color: #c9f0e6; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-name, .footer-brand-name {
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.7px;
}
.brand-name span, .footer-brand-name span { color: var(--coral); }
.brand-tagline {
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.primary-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}
.primary-navigation a {
    padding: 10px 15px;
    border-radius: 9px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}
.primary-navigation a:hover,
.primary-navigation a:focus-visible { color: var(--blue); background: #eef6fb; }
.primary-navigation a.active { color: var(--blue); background: #edf6fb; }
.menu-toggle { display: none; }
.account-status {
    position: absolute;
    right: 0;
    top: 7px;
    color: var(--ink-soft);
    font-size: 11px;
}
.account-status a { color: var(--blue); font-weight: 700; text-decoration: none; }
.account-status span { margin: 0 8px; color: #9aabba; }

/* Hero and search */
.home-main { min-height: 620px; }
.hero-section {
    position: relative;
    isolation: isolate;
    padding: 82px 0 112px;
    background:
        radial-gradient(circle at 10% 15%, rgba(42, 163, 154, .14), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(233, 106, 88, .11), transparent 24%),
        linear-gradient(135deg, #f5f9fd 0%, #eef5fa 100%);
    overflow: hidden;
}
.hero-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -105px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(23, 105, 170, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(23, 105, 170, .025), 0 0 0 78px rgba(23, 105, 170, .02);
}
.hero-shell {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
}
.hero-copy { max-width: 680px; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 21px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(42, 163, 154, .13);
}
.hero-copy h1 {
    max-width: 700px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -3.8px;
    line-height: .99;
}
.hero-copy h1 em {
    color: var(--coral);
    font-style: normal;
}
.hero-description {
    max-width: 530px;
    margin: 23px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.65;
}
.search-card {
    max-width: 1080px;
    margin: 47px auto 0;
    padding: 27px 30px 21px;
    background: var(--white);
    border: 1px solid rgba(219, 229, 239, .9);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.search-card-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}
.search-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.search-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
    letter-spacing: -.6px;
}
.job-total {
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--ink-soft);
    background: #f4f8fb;
    font-size: 12px;
    white-space: nowrap;
}
.job-total strong { color: var(--blue); font-size: 14px; }
.job-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
}
.field-group label {
    display: block;
    margin: 0 0 7px 2px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
}
.field-control {
    position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfdff;
    transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.field-control:focus-within {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.field-icon {
    flex: 0 0 38px;
    color: var(--blue);
    font-size: 25px;
    line-height: 1;
    text-align: center;
}
.field-control input, .field-control select {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 13px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
}
.field-control input::placeholder { color: #8b9aaa; }
.field-control select {
    padding-right: 30px;
    appearance: auto;
    cursor: pointer;
}
.search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    height: 52px;
    min-width: 154px;
    padding: 0 19px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--navy);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.search-submit:hover, .search-submit:focus-visible {
    background: var(--blue);
    box-shadow: 0 8px 18px rgba(18, 51, 91, .2);
    transform: translateY(-1px);
}
.button-arrow { color: #a9dcd2; font-size: 21px; line-height: 1; }
.search-note {
    margin: 15px 0 0;
    color: #7b8b9b;
    font-size: 11px;
}
.search-note span { margin-right: 5px; color: var(--teal); font-weight: 800; }

/* Benefits strip */
.value-strip {
    background: var(--navy);
    color: #fff;
}
.value-strip-inner {
    width: min(1080px, calc(100% - 48px));
    min-height: 105px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 51px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}
.value-item:first-child { padding-left: 0; }
.value-item:last-child { border-right: 0; }
.value-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(169, 220, 210, .32);
    border-radius: 11px;
    color: #a9dcd2;
    font-size: 22px;
}
.value-item strong, .value-item span { display: block; }
.value-item strong { margin-bottom: 2px; font-size: 13px; }
.value-item div > span { color: #aabace; font-size: 11px; }

/* Footer */
.site-footer {
    float: none;
    width: 100%;
    padding: 0;
    color: #b4c1d0;
    background: #0d2037;
}
.footer-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 58px 0 52px;
    display: grid;
    grid-template-columns: 1fr 2.3fr;
    gap: 70px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: 15px; box-shadow: none; }
.footer-brand-name { color: #fff; font-size: 18px; }
.footer-intro p {
    max-width: 240px;
    margin: 19px 0 0;
    color: #8ea2b8;
    font-size: 13px;
    line-height: 1.7;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.footer-column h2 {
    margin: 2px 0 17px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li { margin: 0 0 10px; }
.footer-column a {
    color: #9db0c4;
    font-size: 13px;
    text-decoration: none;
    transition: color .2s ease;
}
.footer-column a:hover, .footer-column a:focus-visible { color: #fff; }
.footer-social a { display: flex; justify-content: space-between; gap: 10px; }
.footer-social a span { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom-inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 54px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #71869e;
    font-size: 11px;
}

@media (max-width: 800px) {
    .header-shell { min-height: 76px; gap: 18px; }
    .account-status { top: auto; bottom: -25px; right: 0; z-index: 2; }
    .primary-navigation { gap: 0; }
    .primary-navigation a { padding: 9px 10px; font-size: 13px; }
    .hero-section { padding-top: 66px; }
    .job-search-form { grid-template-columns: 1fr 1fr; }
    .search-submit { width: 100%; grid-column: span 2; }
    .footer-shell { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 600px) {
    .header-shell, .hero-shell, .value-strip-inner, .footer-shell, .footer-bottom-inner {
        width: min(100% - 32px, 520px);
    }
    .site-header { min-height: 76px; }
    .header-shell { align-items: center; }
    .brand-name { font-size: 18px; }
    .brand-tagline { font-size: 9px; }
    .menu-toggle {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        margin-left: auto;
        border: 1px solid var(--line);
        border-radius: 9px;
        color: var(--navy);
        background: #fff;
        cursor: pointer;
        font-size: 20px;
    }
    .primary-navigation {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 14px 28px rgba(20, 52, 87, .13);
    }
    .primary-navigation.is-open { display: grid; }
    .primary-navigation a { padding: 12px; }
    .account-status { display: none; }
    .hero-section { padding: 53px 0 72px; }
    .hero-copy h1 { font-size: clamp(42px, 13vw, 60px); letter-spacing: -2.8px; }
    .hero-description { margin-top: 18px; font-size: 16px; }
    .search-card { margin-top: 33px; padding: 22px 17px 18px; border-radius: 15px; }
    .search-card-heading { display: block; }
    .job-total { display: inline-block; margin-top: 13px; }
    .job-search-form { display: block; }
    .field-group { margin-bottom: 13px; }
    .search-submit { margin-top: 3px; }
    .value-strip-inner { display: block; padding: 12px 0; }
    .value-item, .value-item:first-child {
        min-height: 63px;
        padding: 9px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }
    .value-item:last-child { border-bottom: 0; }
    .footer-shell { padding: 42px 0 35px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
    .footer-bottom-inner { min-height: 70px; display: block; padding: 17px 0; }
    .footer-bottom-inner span { display: block; }
    .footer-bottom-inner span + span { margin-top: 5px; }
}

@media (max-width: 360px) {
    .brand-mark { width: 34px; height: 34px; }
    .brand-name { font-size: 16px; }
    .brand-tagline { letter-spacing: .08em; }
    .hero-copy h1 { font-size: 40px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
}

/* Job detail page */
.job-page {
    min-height: 720px;
    padding: 24px 0 92px;
    background: var(--cream);
}
.job-page-shell {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
}
.job-page .job-search-card {
    max-width: none;
    margin: 0 0 27px;
    padding: 22px 25px 18px;
}
.job-page .search-card-heading { margin-bottom: 15px; }
.job-page .search-card h2 { font-size: 19px; }
.job-search-hint {
    color: #8090a1;
    font-size: 12px;
}
.job-page .job-search-form {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) auto;
}
.job-page .field-control, .job-page .search-submit { height: 48px; }
.job-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 17px 3px;
    color: #7c8d9d;
    font-size: 12px;
}
.job-breadcrumb a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}
.job-overview-card, .job-description-card, .job-side-card {
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 0 11px 30px rgba(20, 52, 87, .07);
}
.job-overview-card { overflow: hidden; }
.job-overview-top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    padding: 35px 38px 31px;
    background:
        radial-gradient(circle at 100% 0%, rgba(42, 163, 154, .12), transparent 28%),
        linear-gradient(135deg, #fff 0%, #f7fbfd 100%);
}
.job-heading { min-width: 0; }
.job-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 15px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.job-heading h1 {
    max-width: 650px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 47px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.06;
}
.job-company {
    margin: 14px 0 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}
.job-location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 9px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
}
.job-location span { color: var(--coral); font-size: 20px; line-height: 1; }
.job-actions {
    display: flex;
    flex: 0 0 188px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding-top: 16px;
}
.job-tools {
    display: flex;
    justify-content: flex-end;
    gap: 13px;
}
.job-tool-link {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}
.job-tool-link:hover, .job-tool-link:focus-visible { color: var(--coral); }
.job-tool-link span { margin-right: 4px; font-size: 15px; }
.job-apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 50px;
    padding: 0 17px;
    border-radius: 10px;
    color: #fff !important;
    background: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.job-apply-button:hover, .job-apply-button:focus-visible {
    background: var(--blue);
    box-shadow: 0 8px 18px rgba(18, 51, 91, .2);
    transform: translateY(-1px);
}
.job-apply-button span:last-child { color: #a9dcd2; font-size: 20px; line-height: 1; }
.job-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: #fbfdff;
}
.job-stat {
    min-width: 0;
    padding: 18px 21px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.job-stat:nth-child(4n) { border-right: 0; }
.job-stat-label {
    display: block;
    margin-bottom: 5px;
    color: #8292a2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.job-stat strong, .job-stat a {
    display: block;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}
.job-stat a { color: var(--blue); text-decoration: none; }
.job-stat a:hover { color: var(--coral); }
.job-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(250px, .75fr);
    align-items: start;
    gap: 22px;
    margin-top: 22px;
}
.job-description-card { padding: 31px 35px 37px; }
.section-kicker {
    margin: 0 0 7px;
    color: var(--teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.section-heading h2, .job-side-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -.8px;
}
.viewjob-description {
    margin-top: 25px;
    color: #465b70;
    font-size: 15px;
    line-height: 1.8;
}
.viewjob-description p { margin: 0; }
.viewjob-description p + p { margin-top: 17px; }
.viewjob-description h2, .viewjob-description h3, .viewjob-description h4 {
    margin: 24px 0 7px;
    color: var(--navy);
    line-height: 1.3;
}
.viewjob-description ul, .viewjob-description ol {
    margin: 11px 0;
    padding-left: 21px;
}
.viewjob-description li { margin-bottom: 7px; }
.job-side-card {
    position: sticky;
    top: 20px;
    padding: 28px;
    color: #dce8f2;
    background: var(--navy);
}
.side-card-icon {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    margin-bottom: 23px;
    border: 1px solid rgba(169, 220, 210, .3);
    border-radius: 11px;
    color: #a9dcd2;
    font-size: 22px;
}
.job-side-card .section-kicker { color: #a9dcd2; }
.job-side-card h2 { color: #fff; font-size: 22px; line-height: 1.15; }
.job-side-card > p:not(.section-kicker) {
    margin: 15px 0 24px;
    color: #aabace;
    font-size: 13px;
    line-height: 1.65;
}
.job-side-card .job-apply-button { width: 100%; color: var(--navy) !important; background: #a9dcd2; }
.job-side-card .job-apply-button:hover, .job-side-card .job-apply-button:focus-visible { background: #d2f2eb; }
.job-side-card .job-apply-button span:last-child { color: var(--navy); }

@media (max-width: 800px) {
    .job-overview-top { gap: 22px; padding: 29px 27px 27px; }
    .job-actions { flex-basis: 160px; }
    .job-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .job-stat:nth-child(4n) { border-right: 1px solid var(--line); }
    .job-stat:nth-child(2n) { border-right: 0; }
    .job-content-layout { grid-template-columns: minmax(0, 1fr) 280px; }
}

@media (max-width: 600px) {
    .job-page { padding: 16px 0 60px; }
    .job-page-shell { width: min(100% - 32px, 520px); }
    .job-page .job-search-card { padding: 20px 17px 17px; }
    .job-page .job-search-form { display: block; }
    .job-page .field-group { margin-bottom: 13px; }
    .job-page .search-submit { width: 100%; margin-top: 3px; }
    .job-search-hint { display: block; margin-top: 12px; }
    .job-breadcrumb { margin-top: 5px; }
    .job-overview-top { display: block; padding: 25px 21px 22px; }
    .job-heading h1 { font-size: 33px; letter-spacing: -1.5px; }
    .job-company { font-size: 16px; }
    .job-actions { padding-top: 24px; }
    .job-tools { justify-content: flex-start; }
    .job-stats-grid { grid-template-columns: 1fr 1fr; }
    .job-stat { padding: 15px 14px; }
    .job-content-layout { display: flex; flex-direction: column; margin-top: 16px; }
    .job-description-card { padding: 25px 20px 28px; }
    .job-side-card { position: static; width: 100%; padding: 24px 20px; }
}

/* Search results / employer listings page */
.results-page {
    float: none !important;
    width: 100% !important;
    min-height: 720px;
    margin: 0 !important;
    padding: 25px max(24px, calc((100% - 1080px) / 2)) 92px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    grid-template-areas:
        "list side"
        "nav nav";
    align-items: start;
    gap: 22px;
    background: var(--cream);
}
.results-shell {
    grid-area: list;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}
.results-page .DesktopHeader-headerSearch {
    margin: 0 0 20px;
    padding: 23px 25px 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 0 11px 30px rgba(20, 52, 87, .07);
}
.results-page .results-search-form {
    position: relative;
    width: 100% !important;
    margin: 0 !important;
    padding-top: 21px;
    display: grid !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    float: none !important;
}
.results-search-form > label {
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0 !important;
    color: var(--ink-soft) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
}
.results-search-form > label:first-child { left: 2px; }
.results-search-form > label:nth-child(2) { left: calc(54% + 8px); }
.results-search-form > div:first-of-type { grid-column: 1; }
.results-search-form > div:nth-of-type(2) { grid-column: 2; }
.results-search-form > div {
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    float: none !important;
}
.results-search-form > div:first-of-type,
.results-search-form > div:nth-of-type(2) {
    height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfdff;
}
.results-search-form > div:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.results-search-form input, .results-search-form select {
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
    padding: 0 13px !important;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    color: var(--ink);
    font: inherit;
    font-size: 13px !important;
}
.results-search-form input::placeholder { color: #8b9aaa; }
.results-search-form select { cursor: pointer; }
.results-search-form button {
    grid-column: 3;
    height: 48px !important;
    min-width: 140px;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 10px !important;
    color: #fff !important;
    background: var(--navy) !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}
.results-search-form button:hover, .results-search-form button:focus-visible { background: var(--blue) !important; }
.results-summary {
    min-height: 73px;
    margin: 0 0 14px !important;
    padding: 15px 19px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(42, 163, 154, .22);
    border-radius: 13px;
    color: #dce8f2;
    background: var(--navy) !important;
}
.results-summary > div { display: flex; align-items: baseline; gap: 9px; }
.results-summary strong { color: #fff; font-size: 26px; line-height: 1; }
.results-summary span {
    color: #a9dcd2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.result-card {
    position: relative;
    min-height: 142px;
    margin: 0 0 12px;
    padding: 23px 53px 20px 23px;
    display: block;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white) !important;
    box-shadow: 0 7px 18px rgba(20, 52, 87, .045);
    transition: border .2s ease, box-shadow .2s ease, transform .2s ease;
}
.result-card:hover {
    border-color: rgba(23, 105, 170, .45);
    box-shadow: 0 13px 27px rgba(20, 52, 87, .1);
    transform: translateY(-2px);
}
.result-card-body { min-width: 0; }
.result-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}
.result-card .SerpJob-title {
    min-width: 0;
    margin: 0 !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}
.result-card .SerpJob-titleLink {
    color: var(--navy) !important;
    text-decoration: none !important;
}
.result-card .SerpJob-titleLink:hover { color: var(--blue) !important; }
.result-card-openings {
    flex: 0 0 auto;
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--teal);
    background: #edf8f6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.result-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 14px;
}
.result-card-meta .SerpJob-property {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    color: var(--ink-soft) !important;
    font-size: 13px !important;
}
.result-card-meta .SerpJob-property span:first-child { color: var(--coral); font-size: 11px; }
.result-card-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 17px;
    color: #8999a9;
    font-size: 11px;
}
.result-card-dates b {
    margin-right: 4px;
    color: var(--blue);
    font-weight: 800;
}
.result-card-arrow {
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 25px;
}
.results-page > .bannerLST {
    grid-area: side;
    width: auto !important;
    min-width: 0;
    float: none !important;
    padding: 0 !important;
}
.results-page .bannerLST::before {
    content: "Featured";
    display: block;
    margin: 3px 0 13px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.results-page .bannerLST .advertise {
    overflow: hidden;
    margin-left: 0 !important;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    color: var(--ink-soft);
}
.results-page .bannerLST img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    object-fit: cover;
}
.results-page .Pagination {
    grid-area: nav;
    width: auto !important;
    padding: 11px 0 0 !important;
    margin: 0 !important;
    text-align: center;
}
.results-page .Pagination .pagination {
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.results-page .pagination a, .results-page .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    margin: 0 !important;
    padding: 0 9px !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px;
    color: var(--blue) !important;
    background: var(--white) !important;
    font-size: 12px !important;
    text-decoration: none;
}
.results-page .pagination a:hover, .results-page .pagination span.current {
    border-color: var(--blue) !important;
    color: #fff !important;
    background: var(--blue) !important;
}
.no-results {
    padding: 35px 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink-soft);
    background: var(--white);
    text-align: center;
}

@media (max-width: 800px) {
    .results-page {
        display: block;
        padding: 20px 24px 65px;
    }
    .results-page > .bannerLST {
        margin-top: 30px;
    }
    .results-page .Pagination { margin-top: 22px !important; }
}

@media (max-width: 600px) {
    .results-page { padding: 16px 16px 55px; }
    .results-page .DesktopHeader-headerSearch { padding: 20px 17px 17px; }
    .results-page .results-search-form {
        display: block !important;
        padding-top: 0;
    }
    .results-search-form > label {
        position: static;
        display: block;
        margin: 0 0 6px 2px !important;
    }
    .results-search-form > label:nth-child(2) { margin-top: 13px !important; }
    .results-search-form > div:first-of-type,
    .results-search-form > div:nth-of-type(2) {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    .results-search-form button {
        width: 100%;
        margin-top: 13px !important;
    }
    .results-summary { min-height: 65px; }
    .result-card { padding: 19px 42px 18px 17px; }
    .result-card-heading { display: block; }
    .result-card-openings { display: inline-block; margin-top: 10px; }
    .result-card .SerpJob-title { font-size: 17px !important; }
    .result-card-meta { gap: 7px 13px; margin-top: 13px; }
    .result-card-dates { display: block; margin-top: 14px; }
    .result-card-dates span { display: block; margin-top: 4px; }
    .result-card-arrow { right: 15px; }
}