:root {
    --ink: #102a43;
    --ink-soft: #243b53;
    --brand: #0b4f8a;
    --brand-hover: #083b68;
    --accent: #d9480f;
    --accent-hover: #b9380b;
    --paper: #f7f9fc;
    --surface: #ffffff;
    --line: #d9e2ec;
    --line-strong: #bcccdc;
    --muted: #627d98;
    --muted-soft: #829ab1;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.06);
    --shadow-md: 0 8px 24px rgba(16, 42, 67, 0.08);
    --radius: 0.375rem;
    --font: "Source Sans 3", "Segoe UI", sans-serif;
    --display: "Source Serif 4", Georgia, serif;
    --wrap: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    min-height: 100vh;
    line-height: 1.55;
    font-size: 1.015rem;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    color: var(--brand-hover);
}

.wrap {
    width: min(var(--wrap), calc(100% - 2.5rem));
    margin-inline: auto;
}

.wrap.narrow {
    width: min(720px, calc(100% - 2.5rem));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.25rem;
    gap: 1.25rem;
}

.brand {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.brand:hover {
    color: var(--brand);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.35rem 1.15rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.nav a:hover {
    color: var(--brand);
}

.nav .nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0 0.95rem;
    border-radius: var(--radius);
    background: var(--brand);
    color: var(--white);
    font-weight: 700;
}

.nav .nav-cta:hover {
    background: var(--brand-hover);
    color: var(--white);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 320px at 85% 0%, rgba(11, 79, 138, 0.35), transparent 60%),
        linear-gradient(165deg, #0a1f33 0%, #12344d 55%, #0f2c44 100%);
    color: var(--white);
    padding: 4rem 0 3.25rem;
}

.hero-atmosphere {
    display: none;
}

.hero-home-inner,
.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 40rem;
}

.hero-brand {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.35rem, 5vw, 3.35rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--white);
}

.hero-title {
    margin: 0;
    font-family: var(--font);
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    line-height: 1.35;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.8;
}

.lede {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    max-width: 34rem;
}

.job-detail .lede,
.page-head .lede {
    color: var(--muted);
}

.search {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.35rem;
}

.search input,
.search select {
    flex: 1 1 10rem;
    min-height: 2.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 0.9rem;
    font: inherit;
    background: var(--white);
    color: var(--ink);
}

.search button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    border: 0;
    border-radius: var(--radius);
    padding: 0 1.2rem;
    background: var(--accent);
    color: var(--white);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.search button:hover,
.btn:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.search-hero {
    margin-top: 0.55rem;
    padding: 0.4rem;
    background: var(--white);
    border-radius: calc(var(--radius) + 0.1rem);
    box-shadow: var(--shadow-md);
    gap: 0.4rem;
}

.search-hero input {
    border: 0;
    background: transparent;
    min-height: 2.65rem;
    box-shadow: none;
}

.search-hero input:focus {
    outline: none;
}

.search-hero button {
    min-height: 2.65rem;
}

.meta {
    margin: 0.2rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.section .meta,
.page-head .meta,
.list-toolbar .meta {
    color: var(--muted);
}

.hero-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.85rem;
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0;
}

.hero-cities a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.hero-cities a:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

/* Sections */
.section {
    padding: 2.75rem 0;
}

.section.muted {
    background: #eef2f7;
    border-block: 1px solid var(--line);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.section-head h2,
.hire-band h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    letter-spacing: -0.015em;
    color: var(--ink);
}

.section-head a {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.section-lede {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.section-head > div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

/* Job list */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.list-toolbar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.list-filters {
    margin-top: 0.85rem;
}

.job-item {
    margin: 0;
    border-bottom: 1px solid var(--line);
}

.job-item:last-child {
    border-bottom: 0;
}

.job-item-link {
    display: grid;
    grid-template-columns: 2.75rem 1fr auto;
    gap: 0.95rem;
    align-items: start;
    padding: 1.05rem 1.15rem;
    color: inherit;
    background: var(--surface);
    transition: background 0.15s ease;
}

.job-item-link:hover {
    background: #f5f8fb;
    color: inherit;
}

.job-item.is-featured .job-item-link {
    background: #fff8f3;
}

.job-item.is-featured .job-item-link:hover {
    background: #fff3ea;
}

.job-item-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius);
    background: #e6eef6;
    color: var(--brand);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid #d0dde9;
}

.job-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.job-item-top {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 1rem;
}

.job-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
}

.job-item-link:hover .job-item-title {
    color: var(--brand);
}

.job-item-company {
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.job-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0;
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.875rem;
}

.job-item-meta span:not(:last-child)::after {
    content: "·";
    margin: 0 0.45rem;
    color: var(--muted-soft);
}

.job-item-salary {
    color: var(--brand);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.job-item-cta {
    align-self: center;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}

.job-item-link:hover .job-item-cta {
    color: var(--accent);
}

.job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.job-row h3 {
    margin: 0 0 0.2rem;
    font-size: 1.1rem;
}

.job-row p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.link-cta {
    font-weight: 700;
    white-space: nowrap;
}

/* Browse / chips */
.browse-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.browse-grid a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 3.1rem;
    padding: 0.8rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.browse-grid a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.browse-count {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.chip-list a {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
}

.chip-list a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.chip-meta {
    margin-left: 0.4rem;
    color: var(--muted);
    font-weight: 600;
}

.hire-band {
    background: linear-gradient(135deg, #12344d 0%, #0b4f8a 100%);
    border-block: 0;
    color: var(--white);
}

.hire-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hire-band h2 {
    color: var(--white);
}

.hire-band .section-lede {
    color: rgba(255, 255, 255, 0.78);
}

.hire-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.hire-band .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.hire-band .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* Page chrome */
.page-head {
    padding: 2.1rem 0 0.35rem;
}

.page-head h1,
.job-detail h1,
.hero h1:not(.hero-title) {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.85rem, 3.4vw, 2.45rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-head h1 {
    margin-bottom: 0.35rem;
}

.search.compact {
    margin-top: 0.75rem;
}

.search.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
    gap: 0.55rem;
    padding: 0.85rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.search.filters select,
.search.filters input[type="number"],
.search.filters input[type="search"] {
    min-height: 2.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 0.75rem;
    font: inherit;
    background: var(--white);
}

.search.filters button {
    min-height: 2.65rem;
}

.job-detail {
    padding: 2rem 0 3rem;
}

.breadcrumb {
    color: var(--muted);
    font-size: 0.9rem;
}

.salary {
    font-weight: 700;
    color: var(--brand);
}

.prose {
    margin: 1.5rem 0;
}

.prose p {
    margin: 0 0 1rem;
}

.empty {
    color: var(--muted);
    padding: 1.25rem;
}

.pager {
    margin-top: 1.5rem;
}

.badge {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.12rem 0.45rem;
    border-radius: 0.25rem;
    background: #fee4e2;
    color: #b42318;
    font-size: 0.72rem;
    font-weight: 700;
    vertical-align: middle;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge.featured {
    background: #ffedd5;
    color: #c2410c;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.page-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination a,
.pagination .page-current,
.pagination .page-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    min-height: 2.25rem;
    padding: 0 0.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
}

.pagination a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.pagination .page-current {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.pagination .page-disabled {
    opacity: 0.45;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 0 1.1rem;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    border: 0;
    border-radius: var(--radius);
    padding: 0 1.1rem;
    background: #9b1c1c;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.btn-danger:hover {
    background: #7f1d1d;
}

/* Forms */
.flash {
    margin: 1rem auto 0;
    padding: 0.75rem 1rem;
    background: #ecfdf3;
    border: 1px solid #abefc6;
    border-radius: var(--radius);
    color: #067647;
}

.stack-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stack-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
}

.stack-form input,
.stack-form textarea,
.stack-form select {
    font: inherit;
    font-weight: 400;
    min-height: 2.6rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.stack-form textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.field-error,
.form-error {
    color: #9b1c1c;
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-error {
    margin: -0.35rem 0 0;
}

.row-actions,
.actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.row-actions form {
    margin: 0;
}

.linkish {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 700;
    color: var(--brand);
    cursor: pointer;
}

.linkish.danger {
    color: #b42318;
}

.stack-gap {
    margin-bottom: 1.5rem;
}

.section-block + .section-block {
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    margin-top: 0;
    padding: 3rem 0 0;
    background: #0a1f33;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    padding-bottom: 2rem;
}

.footer-brand p {
    margin: 0.75rem 0 0;
    max-width: 24rem;
    line-height: 1.6;
}

.footer-logo {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo:hover {
    color: #9ec5ea;
}

.footer-col h2 {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding: 1.1rem 0 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.875rem;
}

.footer-bar p {
    margin: 0;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.footer-meta a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .browse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hire-band-inner,
    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .job-item-link {
        grid-template-columns: 2.4rem 1fr;
        gap: 0.75rem;
        padding: 0.95rem;
    }

    .job-item-mark {
        width: 2.4rem;
        height: 2.4rem;
    }

    .job-item-cta {
        display: none;
    }

    .browse-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .search {
        flex-direction: column;
    }

    .search input,
    .search button,
    .search.filters select,
    .search.filters input {
        width: 100%;
    }

    .nav {
        gap: 0.55rem 0.85rem;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .company-item-cta {
        display: none;
    }

    .company-hero {
        grid-template-columns: 2.75rem 1fr;
    }
}

/* Companies */
.company-list {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.company-item {
    margin: 0;
    border-bottom: 1px solid var(--line);
}

.company-item:last-child {
    border-bottom: 0;
}

.company-item-link {
    display: grid;
    grid-template-columns: 2.75rem 1fr auto;
    gap: 0.95rem;
    align-items: start;
    padding: 1.05rem 1.15rem;
    color: inherit;
    background: var(--surface);
    transition: background 0.15s ease;
}

.company-item-link:hover {
    background: #f5f8fb;
    color: inherit;
}

.company-item.is-featured .company-item-link {
    background: #fff8f3;
}

.company-item-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius);
    background: #e6eef6;
    color: var(--brand);
    font-weight: 700;
    border: 1px solid #d0dde9;
}

.company-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.company-item-top {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 1rem;
}

.company-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
}

.company-item-link:hover .company-item-title {
    color: var(--brand);
}

.company-item-roles {
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.company-item-meta {
    display: flex;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.875rem;
}

.company-item-meta span:not(:last-child)::after {
    content: "·";
    margin: 0 0.45rem;
    color: var(--muted-soft);
}

.company-item-desc {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.company-item-cta {
    align-self: center;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}

.company-item-link:hover .company-item-cta {
    color: var(--accent);
}

.company-hero {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    align-items: start;
    margin-top: 0.75rem;
}

.company-hero-mark {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
}

.company-hero-body h1 {
    margin: 0;
}

.company-about {
    margin-top: 1.25rem;
    max-width: 44rem;
}

/* Icons */
.icon {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    vertical-align: -0.15em;
}

.icon-sm {
    width: 0.95rem;
    height: 0.95rem;
    margin-right: 0.28rem;
}

.icon-nav {
    width: 1rem;
    height: 1rem;
    margin-right: 0.35rem;
}

.icon-btn {
    width: 1rem;
    height: 1rem;
    margin-right: 0.4rem;
}

.icon-field {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--muted);
    pointer-events: none;
}

.nav a,
.btn,
.btn-secondary,
.search button,
.job-item-cta,
.company-item-cta,
.footer-col a,
.footer-col h2,
.footer-logout,
.hero-meta span,
.hero-cities a,
.job-item-company,
.job-item-salary,
.job-item-meta span,
.company-item-meta span,
.company-item-roles,
.nav-logout button {
    display: inline-flex;
    align-items: center;
}

.nav-logout,
.footer-col form {
    margin: 0;
}

.nav-logout button,
.footer-logout {
    border: 0;
    background: none;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
}

.nav-logout button:hover,
.footer-logout:hover {
    color: var(--brand);
}

.footer-logout {
    color: rgba(255, 255, 255, 0.82);
}

.footer-logout:hover {
    color: var(--white);
}

.nav a,
.footer-col a,
.footer-col h2 {
    gap: 0;
}

.search-field {
    position: relative;
    flex: 1 1 10rem;
    display: flex;
}

.search-field input {
    width: 100%;
    padding-left: 2.35rem;
}

.search-hero .search-field {
    flex: 1 1 10rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
}

.job-item-meta:empty {
    display: none;
}
