:root {
    --bg: #f3f7fb;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-strong: #ffffff;
    --surface-soft: #edf5ff;
    --text: #10233b;
    --muted: #60758d;
    --line: #d7e2ed;
    --primary: #1263dd;
    --primary-dark: #0d4db0;
    --accent: #ff9f1a;
    --danger: #d84c45;
    --success: #1f9d61;
    --shadow: 0 18px 44px rgba(16, 35, 59, 0.09);
    --shadow-soft: 0 10px 24px rgba(16, 35, 59, 0.06);
    --radius: 24px;
    --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(18, 99, 221, 0.12), transparent 24rem),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 42%, #f7fafc 100%);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { min-height: 70vh; }
button, input, select, textarea { font: inherit; }

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.section { padding: 4.75rem 0; }
.section-tight { padding-top: 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(237,245,255,0.45)); }
.narrow { width: min(760px, calc(100% - 2rem)); }
.stack { display: grid; gap: 1.25rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(248, 251, 255, 0.86);
    border-bottom: 1px solid rgba(215, 226, 237, 0.8);
}
.nav-shell { padding: 0.85rem 0; }
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}
.brand-mark {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #51a0ff);
    color: #fff;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}
.brand strong,
.brand small {
    display: block;
}
.brand strong {
    font-family: "Jost", sans-serif;
    font-size: 1.02rem;
}
.brand small,
.muted {
    color: var(--muted);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}
.nav-links,
.nav-cta,
.job-card-top,
.job-card-bottom,
.section-head,
.results-bar,
.table-item,
.checkbox,
.footer-lead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-links a {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
    color: #26415f;
}
.nav-link-with-badge,
.mobile-menu-link-with-badge {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
}
.nav-badge {
    display: inline-grid;
    place-items: center;
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a2f, #ff5a24);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}
.nav-links a:hover {
    background: rgba(18, 99, 221, 0.08);
    color: var(--primary);
}
.menu-toggle {
    display: none !important;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    margin-top: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(215, 226, 237, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}
.mobile-menu-links {
    display: grid;
    gap: 0.85rem;
}
.mobile-menu-links a {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: #f7fbff;
    border: 1px solid var(--line);
    font-weight: 700;
}
.mobile-menu-register {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary), #3f8fff) !important;
    border-color: transparent !important;
}

.hero { padding: 4.5rem 0 3.5rem; }
.hero-grid,
.grid-with-sidebar,
.grid-detail,
.dashboard-grid,
.footer-grid {
    display: grid;
    gap: 1.5rem;
}
.hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: stretch;
}
.hero-panel {
    position: relative;
    overflow: hidden;
}
.hero-panel::before {
    content: "";
    position: absolute;
    inset: auto -3rem -3rem auto;
    width: 10rem;
    height: 10rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,159,26,0.22), transparent 68%);
}

.eyebrow {
    display: inline-flex;
    padding: 0.48rem 0.78rem;
    border-radius: 999px;
    background: rgba(18, 99, 221, 0.1);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
h1, h2, h3, h4, p { margin: 0; }
h1 {
    margin-top: 1rem;
    font-family: "Jost", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}
h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}
h3 { font-size: 1.08rem; }
.hero-copy, .lead, .prose-page p {
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--muted);
}
.hero-copy { max-width: 42rem; margin: 1rem 0 1.5rem; }

.card, .job-card, .category-card, .step-card, .stat-card {
    background: var(--surface);
    border: 1px solid rgba(215, 226, 237, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.card, .step-card, .stat-card { padding: 1.5rem; }
.hero-search {
    display: grid;
    gap: 1rem;
    padding: 1.15rem;
    max-width: 44rem;
    background: rgba(255,255,255,0.92);
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.25rem; }

.field { display: grid; gap: 0.45rem; }
label { font-weight: 700; font-size: 0.95rem; }
input, select, textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: rgba(18, 99, 221, 0.5);
    box-shadow: 0 0 0 4px rgba(18, 99, 221, 0.12);
}
textarea { resize: vertical; }

.button, .link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border: 0;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 800;
}
.button {
    background: linear-gradient(135deg, var(--primary), #3f8fff);
    color: #fff;
}
.button:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.button-secondary {
    background: rgba(18, 99, 221, 0.08);
    color: var(--primary);
}
.button-danger {
    background: linear-gradient(135deg, var(--danger), #ec6d63);
    color: #fff;
}
.button-sm { min-height: 40px; padding: 0.68rem 1rem; font-size: 0.94rem; }
.mobile-desktop-only { display: block; }
.link-button {
    min-height: auto;
    padding: 0;
    background: transparent;
    color: var(--text);
}
.text-link { color: var(--primary); font-weight: 800; }
.w-full { width: 100%; }
.mobile-hide { display: inline-flex; }
.trap-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(16, 35, 59, 0.06);
    font-size: 0.84rem;
    font-weight: 800;
}
.pill-accent { background: rgba(255, 159, 26, 0.18); color: #b06d00; }
.pill-outline { background: #fff; border: 1px solid var(--line); }
.city-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }

.category-grid,
.job-grid,
.steps-grid,
.stats-grid {
    display: grid;
    gap: 1.25rem;
}
.category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.job-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.category-card,
.job-card {
    padding: 1.35rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.category-card:hover,
.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(16, 35, 59, 0.12);
}
.category-card span {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted);
    line-height: 1.65;
}
.job-card { display: grid; gap: 1rem; }
.job-card p, .detail-list dd, .table-item span, .feature-list li { color: var(--muted); line-height: 1.65; }
.job-meta, .detail-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
}
.job-meta dt, .detail-list dt {
    margin-bottom: 0.25rem;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.job-meta dd, .detail-list dd { margin: 0; }

.feature-list {
    display: grid;
    gap: 0.9rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}
.feature-list li {
    position: relative;
    padding-left: 1.5rem;
}
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ffca66);
}

.section-head { margin-bottom: 1.5rem; }
.desktop-only-heading {
    display: block;
}
.mobile-only-heading {
    display: none;
}
.eduleb-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    background:
        linear-gradient(135deg, rgba(82, 95, 225, 0.95), rgba(98, 126, 240, 0.88)),
        url('/assets/eduleb/home-bg.jpg') center/cover no-repeat;
}
.eduleb-hero::before {
    content: "";
    position: absolute;
    inset: auto auto -7rem -7rem;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: rgba(242, 107, 101, 0.16);
    filter: blur(4px);
}
.eduleb-hero::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: min(38vw, 34rem);
    background: rgba(11, 16, 74, 0.92);
    border-bottom-left-radius: 16rem;
}
.eduleb-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 2rem;
    align-items: center;
}
.eduleb-hero-copy {
    color: #fff;
}
.eduleb-kicker {
    display: inline-flex;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.eduleb-hero-copy h1 {
    margin-top: 1.2rem;
    max-width: 12ch;
    color: #fff;
    font-size: clamp(3.2rem, 6vw, 5rem);
    line-height: 0.96;
}
.eduleb-hero-copy p {
    max-width: 35rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.72;
}
.eduleb-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}
.eduleb-primary-button {
    background: #f26b65;
    box-shadow: 0 16px 36px rgba(242, 107, 101, 0.35);
}
.eduleb-primary-button:hover {
    background: #ec5b54;
}
.eduleb-link-button {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-weight: 800;
}
.eduleb-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.8rem;
}
.eduleb-stat-card {
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}
.eduleb-stat-card strong {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
}
.eduleb-stat-card span {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}
.eduleb-hero-visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.eduleb-hero-card {
    position: relative;
    z-index: 2;
    margin: 0 0 0 auto;
    width: min(100%, 31rem);
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 60px rgba(11, 16, 74, 0.22);
}
.eduleb-card-label {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(82, 95, 225, 0.1);
    color: #525fe1;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.eduleb-hero-card h2 {
    margin-top: 1rem;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.04;
}
.eduleb-feature-list {
    display: grid;
    gap: 0.95rem;
    margin-top: 1rem;
}
.eduleb-feature-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted);
    line-height: 1.6;
}
.eduleb-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.68rem;
    height: 0.68rem;
    border-radius: 50%;
    background: #525fe1;
}
.eduleb-city-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}
.eduleb-section-head {
    align-items: end;
}
.eduleb-section-copy {
    max-width: 44rem;
    margin-top: 0.75rem;
    color: var(--muted);
    line-height: 1.7;
}
.eduleb-categories-section {
    background: #fff url('/assets/eduleb/shape-1.png') center/cover no-repeat;
}
.eduleb-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}
.eduleb-category-card {
    display: grid;
    gap: 0.7rem;
    min-height: 100%;
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(215, 226, 237, 0.9);
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.eduleb-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.eduleb-category-number {
    color: #525fe1;
    font-family: "Jost", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}
.eduleb-category-card strong {
    font-size: 1.15rem;
}
.eduleb-category-card span:last-child {
    color: var(--muted);
    line-height: 1.65;
}
.eduleb-jobs-section {
    background: linear-gradient(180deg, rgba(247, 249, 255, 0.95), rgba(240, 244, 253, 0.98));
}
.eduleb-how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.eduleb-how-card {
    display: grid;
    gap: 0.8rem;
    padding: 1.5rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(215, 226, 237, 0.92);
    box-shadow: var(--shadow-soft);
}
.eduleb-how-card span {
    color: #525fe1;
    font-family: "Jost", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}
.eduleb-how-card p {
    color: var(--muted);
    line-height: 1.7;
}
.page-head { padding-bottom: 2rem; }
.filter-card { position: sticky; top: 110px; align-self: start; }
.grid-with-sidebar { grid-template-columns: 310px minmax(0, 1fr); }
.grid-detail { grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); }
.job-detail-page {
    padding-top: 2rem;
}
.job-focus {
    padding: 1.35rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,251,255,0.97));
}
.job-focus-back {
    margin-bottom: 1rem;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
    font-weight: 700;
}
.job-focus-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding-bottom: 1.4rem;
}
.job-focus-title {
    display: grid;
    gap: 0.75rem;
}
.job-focus-badges {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.job-focus-title h1 {
    margin: 0;
    max-width: 20ch;
    text-align: center;
}
.job-focus-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
}
.job-focus-title .lead {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}
.job-focus-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 0 1.2rem;
    border-top: 1px solid rgba(215, 226, 237, 0.9);
    border-bottom: 1px solid rgba(215, 226, 237, 0.9);
}
.focus-metric {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(247, 251, 255, 0.92);
    border: 1px solid rgba(215, 226, 237, 0.95);
    text-align: center;
}
.focus-metric span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.focus-metric strong {
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    display: grid;
    gap: 0.2rem;
}
.focus-metric strong small {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    color: var(--muted);
}
.job-focus-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 1.25rem;
}
.focus-detail-box {
    padding: 1.15rem;
    border-radius: 20px;
    background: rgba(247, 251, 255, 0.92);
    border: 1px solid rgba(215, 226, 237, 0.95);
}
.focus-detail-box h2 {
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}
.focus-detail-box p {
    color: var(--muted);
    line-height: 1.65;
}
.detail-points {
    margin: 0;
    padding-left: 1rem;
    color: var(--muted);
    display: grid;
    gap: 0.55rem;
    line-height: 1.6;
}
.job-focus-cta {
    padding-top: 1.2rem;
}
.quick-apply-note {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}
.quick-apply-note label {
    color: var(--text);
}
.quick-apply-note textarea {
    min-height: 120px;
    border-radius: 18px;
    background: rgba(247, 251, 255, 0.96);
}
.auth-apply-prompt {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(18, 99, 221, 0.14);
    background: linear-gradient(180deg, rgba(18, 99, 221, 0.06), rgba(255, 255, 255, 0.96));
}
.auth-apply-prompt h2 {
    font-size: 1.35rem;
}
.auth-apply-prompt p {
    color: var(--muted);
    line-height: 1.6;
}
.auth-apply-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}
.missing-profile-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.profile-helper-note {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(18, 99, 221, 0.06);
    border: 1px solid rgba(18, 99, 221, 0.14);
}
.focus-apply-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 64px;
    padding: 0.9rem 1.2rem;
    border-radius: 16px;
    border: 0;
    background: linear-gradient(135deg, #ff7a2f, #ff5a24);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(255, 106, 36, 0.22);
}
.focus-apply-button span {
    display: block;
    font-size: 1rem;
    line-height: 1.15;
}
.focus-apply-button small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}
.focus-apply-button:hover {
    background: linear-gradient(135deg, #ff6c22, #f45420);
}
.job-focus-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
}
.report-inline {
    margin-left: auto;
}
.report-inline .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(18, 99, 221, 0.08);
    color: var(--primary);
}
.job-meta-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.95rem;
}
.apply-card-head {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1rem;
}
.apply-card-head p {
    color: var(--muted);
    line-height: 1.6;
}
.job-inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.inquiry-message {
    grid-column: 1 / -1;
}
.apply-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}
.apply-modal[hidden] {
    display: none;
}
.apply-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 24, 43, 0.52);
    backdrop-filter: blur(8px);
}
.apply-modal-card {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    padding: 1.4rem;
    border: 1px solid rgba(215, 226, 237, 0.95);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,251,255,0.97));
    box-shadow: 0 28px 60px rgba(8, 23, 43, 0.24);
}
.apply-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}
.apply-modal-close:hover {
    border-color: rgba(18, 99, 221, 0.35);
    color: var(--primary);
}
.related-section {
    margin-top: 0.5rem;
}
.related-section .section-head {
    margin-bottom: 0.75rem;
}
.dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dashboard-grid-wide { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.three-col, .two-col {
    display: grid;
    gap: 1rem;
}
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.align-end {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 1rem;
}

.table-list { display: grid; gap: 1rem; }
.table-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}
.table-item:last-child { padding-bottom: 0; border-bottom: 0; }
.table-item-stretch { align-items: start; }
.inquiry-stack {
    gap: 0.9rem;
}
.inquiry-card {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(247, 251, 255, 0.92);
}
.inquiry-summary-card {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(215, 226, 237, 0.92);
    border-radius: 22px;
    background: rgba(247, 251, 255, 0.92);
}
.inquiry-summary-main {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}
.applicant-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 1.15rem;
}
.inquiry-summary-copy {
    display: grid;
    gap: 0.38rem;
}
.inquiry-summary-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
}
.inquiry-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.7rem;
}
.inquiry-summary-copy p,
.inquiry-summary-meta span {
    color: var(--muted);
    line-height: 1.45;
}
.inquiry-summary-actions {
    display: grid;
}
.inquiries-page {
    padding-top: 2.4rem;
}
.inquiries-head {
    margin-bottom: 0.2rem;
}
.inquiries-layout {
    gap: 1.25rem;
}
.inbox-panel {
    padding: 1.25rem;
}
.inbox-panel-head {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(215, 226, 237, 0.92);
}
.inbox-panel-head h2 {
    margin-bottom: 0.35rem;
}
.inquiry-card-detailed {
    gap: 1rem;
}
.applicant-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1rem;
}
.applicant-identity {
    display: grid;
    gap: 0.8rem;
    align-content: start;
    padding: 1rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(215, 226, 237, 0.92);
}
.applicant-avatar {
    width: 88px;
    height: 88px;
    overflow: hidden;
    display: inline-grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(18, 99, 221, 0.12), rgba(90, 168, 255, 0.18));
    color: var(--primary);
    font-family: "Jost", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}
.applicant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.applicant-identity-copy {
    display: grid;
    gap: 0.35rem;
}
.applicant-identity-copy span {
    color: var(--muted);
    line-height: 1.5;
}
.applicant-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}
.info-chip {
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(215, 226, 237, 0.92);
}
.info-chip span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.info-chip strong {
    line-height: 1.45;
}
.info-chip p {
    color: var(--text);
    line-height: 1.6;
}
.info-chip-wide {
    grid-column: 1 / -1;
}
.empty-panel {
    display: grid;
    gap: 0.4rem;
    padding: 1.1rem;
    border-radius: 20px;
    background: rgba(247, 251, 255, 0.92);
    border: 1px dashed rgba(215, 226, 237, 0.95);
}
.inquiry-head,
.inquiry-meta,
.inquiry-actions,
.chat-list-top,
.chat-list-middle,
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}
.inquiry-head {
    align-items: start;
}
.inquiry-head span,
.inquiry-meta span,
.chat-list-middle span {
    color: var(--muted);
}
.inquiry-meta {
    flex-wrap: wrap;
    font-size: 0.92rem;
}
.inquiry-card p,
.chat-list-item p,
.chat-bubble p {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}
.chat-list {
    display: grid;
    gap: 0.9rem;
}
.chat-list-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(247, 251, 255, 0.92);
}
.chat-avatar {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(18, 99, 221, 0.12), rgba(90, 168, 255, 0.18));
    color: var(--primary);
    font-family: "Jost", sans-serif;
    font-weight: 700;
}
.chat-list-content {
    display: grid;
    gap: 0.45rem;
}
.chat-shell {
    padding: 1.35rem;
}
.chat-header {
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(215, 226, 237, 0.9);
}
.chat-messages {
    display: grid;
    gap: 0.85rem;
    padding: 1.2rem 0;
}
.chat-bubble {
    width: min(78%, 620px);
    padding: 0.9rem 1rem;
    border-radius: 22px 22px 22px 8px;
    background: rgba(247, 251, 255, 0.95);
    border: 1px solid rgba(215, 226, 237, 0.95);
}
.chat-bubble-own {
    margin-left: auto;
    border-radius: 22px 22px 8px 22px;
    background: linear-gradient(135deg, rgba(18, 99, 221, 0.12), rgba(90, 168, 255, 0.12));
}
.chat-bubble strong {
    display: block;
    margin-bottom: 0.3rem;
}
.chat-bubble span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.84rem;
}
.chat-form {
    display: grid;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(215, 226, 237, 0.9);
}
.chat-rating {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.1rem;
    border-radius: 22px;
    background: rgba(247, 251, 255, 0.92);
}
.rating-form,
.rating-summary {
    display: grid;
    gap: 0.8rem;
}
.rating-history {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.25rem;
}
.rating-history-item {
    display: grid;
    gap: 0.25rem;
    padding: 0.8rem;
    border-radius: 14px;
    background: rgba(247, 251, 255, 0.92);
    border: 1px solid rgba(215, 226, 237, 0.92);
}
.rating-history-item span {
    color: var(--muted);
    font-size: 0.9rem;
}
.rating-history-item p {
    margin: 0;
    line-height: 1.5;
}
.rating-summary strong {
    font-family: "Jost", sans-serif;
    font-size: 1.2rem;
}
.stat-card strong {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 2rem;
}
.step-card span {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: rgba(18, 99, 221, 0.12);
    color: var(--primary);
    font-weight: 800;
}
.empty-state { text-align: center; padding: 2.25rem; }
.checkbox { justify-content: flex-start; }

.flash-stack { display: grid; gap: 0.8rem; margin-top: 1rem; }
.flash {
    padding: 1rem 1.15rem;
    border-radius: 18px;
    font-weight: 700;
}
.flash-success { background: rgba(31, 157, 97, 0.12); color: var(--success); }
.flash-error { background: rgba(216, 76, 69, 0.1); color: #a0322b; }
.flash-error ul { margin: 0.75rem 0 0; padding-left: 1.15rem; }

.site-footer {
    margin-top: 2rem;
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(215, 226, 237, 0.82);
    background: rgba(255, 255, 255, 0.8);
}
.footer-shell {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(215, 226, 237, 0.9);
    border-radius: 28px;
}
.footer-lead {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(215, 226, 237, 0.9);
}
.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 1.2rem;
    align-items: start;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.4rem;
}
.footer-links > div {
    display: grid;
    align-content: start;
    gap: 0.45rem;
}
.footer-links h3,
.footer-note h3 {
    margin-bottom: 0.8rem;
    font-family: "Jost", sans-serif;
}
.footer-links a,
.footer-note p {
    display: block;
    color: var(--muted);
    line-height: 1.72;
}
.footer-note {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(247, 251, 255, 0.92);
    border: 1px solid rgba(215, 226, 237, 0.9);
}
.footer-note h3 {
    margin-bottom: 0.45rem;
}
.footer-note p {
    font-size: 0.96rem;
    line-height: 1.6;
}
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(215, 226, 237, 0.9);
    flex-wrap: wrap;
}
.footer-legal a {
    color: var(--muted);
    font-size: 0.9rem;
}
.prose-page { display: grid; gap: 1.25rem; }

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

@media (max-width: 1080px) {
    .eduleb-hero-grid,
    .eduleb-category-grid,
    .eduleb-how-grid,
    .hero-grid,
    .grid-with-sidebar,
    .grid-detail,
    .job-focus-head,
    .job-focus-metrics,
    .job-focus-details,
    .dashboard-grid,
    .dashboard-grid-wide,
    .footer-main,
    .category-grid,
    .job-grid,
    .steps-grid,
    .stats-grid,
    .three-col,
    .two-col {
        grid-template-columns: 1fr;
    }

    .filter-card { position: static; }
    .job-focus-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .job-focus-details {
        grid-template-columns: 1fr;
    }
    .job-inquiry-form {
        grid-template-columns: 1fr;
    }
    .eduleb-hero::after {
        width: 100%;
        height: 26rem;
        inset: auto 0 0 0;
        border-bottom-left-radius: 0;
        border-top-left-radius: 10rem;
    }
    .eduleb-hero-card {
        margin: 0;
    }
    .chat-header,
    .inquiry-head,
    .chat-list-top,
    .chat-list-middle {
        align-items: flex-start;
        flex-direction: column;
    }
    .applicant-layout,
    .applicant-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: inline-flex !important; }
    .nav-shell { padding: 0.75rem 0; }
    .mobile-hide {
        display: none !important;
    }
    .footer-lead {
        display: none;
    }
    .footer-lead,
    .section-head,
    .results-bar,
    .job-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container { width: min(100% - 1rem, 1180px); }
    .section { padding: 3.4rem 0; }
    .hero { padding: 3rem 0 2.5rem; }
    .desktop-only-heading {
        display: none;
    }
    .mobile-only-heading {
        display: block;
    }
    .eduleb-hero {
        padding: 2.2rem 0 2.5rem;
    }
    .eduleb-hero::after {
        height: 17rem;
        border-top-left-radius: 6rem;
    }
    .eduleb-kicker {
        padding: 0.5rem 0.8rem;
        font-size: 0.74rem;
    }
    .eduleb-hero-copy h1 {
        margin-top: 0.9rem;
        font-size: 2.45rem;
        max-width: none;
    }
    .eduleb-hero-copy p {
        font-size: 0.98rem;
        line-height: 1.6;
    }
    .eduleb-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .eduleb-link-button,
    .eduleb-primary-button {
        width: 100%;
    }
    .eduleb-hero-stats {
        display: none;
    }
    .eduleb-stat-card {
        padding: 0.9rem 1rem;
        border-radius: 18px;
    }
    .eduleb-hero-card {
        padding: 1rem;
        border-radius: 22px;
    }
    .eduleb-hero-card h2 {
        margin-top: 0.75rem;
        font-size: 1.6rem;
    }
    .eduleb-feature-list {
        gap: 0.7rem;
    }
    .eduleb-section-head {
        align-items: flex-start;
    }
    .eduleb-section-copy {
        margin-top: 0.55rem;
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .eduleb-category-grid,
    .eduleb-how-grid {
        gap: 0.85rem;
    }
    .eduleb-category-card,
    .eduleb-how-card {
        padding: 1rem;
        border-radius: 20px;
    }
    .eduleb-category-number {
        font-size: 1.1rem;
    }
    .eduleb-category-card strong {
        font-size: 1.02rem;
    }
    h1 {
        font-size: 2.3rem;
        line-height: 1.02;
    }
    h2 { font-size: 1.55rem; }
    .card, .step-card, .stat-card, .category-card, .job-card, .footer-shell {
        padding: 1.1rem;
        border-radius: 20px;
    }
    .job-detail-page {
        padding-top: 0.35rem;
        padding-bottom: 1.35rem;
    }
    .job-focus,
    .apply-modal-card {
        padding: 1rem;
    }
    .job-focus-head {
        gap: 0.55rem;
        padding-bottom: 0.7rem;
    }
    .job-focus-badges {
        justify-content: flex-start;
        gap: 0.45rem;
    }
    .job-focus-title {
        gap: 0.5rem;
    }
    .job-focus-title h1 {
        max-width: none;
        font-size: 2rem;
        line-height: 0.98;
        letter-spacing: -0.04em;
        text-align: left;
    }
    .job-focus-subtitle {
        font-size: 0.94rem;
        text-align: left;
        line-height: 1.45;
    }
    .job-focus-title .lead {
        margin: 0;
        text-align: left;
        font-size: 0.96rem;
        line-height: 1.55;
    }
    .job-focus-metrics {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding: 0.85rem 0 0.95rem;
    }
    .focus-metric {
        padding: 0.8rem 0.85rem;
        border-radius: 16px;
        text-align: left;
        background: #f7fbff;
    }
    .focus-metric span {
        margin-bottom: 0.25rem;
        font-size: 0.7rem;
    }
    .focus-metric strong {
        font-size: 1rem;
        line-height: 1.3;
    }
    .job-focus-details {
        gap: 0.6rem;
        padding-top: 0.8rem;
        grid-template-columns: 1fr;
    }
    .focus-detail-box {
        padding: 0.95rem;
        border-radius: 16px;
        background: #ffffff;
    }
    .focus-detail-box h2 {
        margin-bottom: 0.45rem;
        font-size: 1.12rem;
    }
    .focus-detail-box p,
    .detail-points {
        font-size: 0.97rem;
        line-height: 1.55;
    }
    .job-focus-footer,
    .job-meta-inline {
        align-items: flex-start;
        flex-direction: column;
    }
    .job-focus-cta {
        position: sticky;
        bottom: 0.55rem;
        z-index: 4;
        margin-top: 0.95rem;
        padding: 0.8rem;
        border: 1px solid rgba(18, 99, 221, 0.14);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 32px rgba(16, 35, 59, 0.14);
        backdrop-filter: blur(10px);
    }
    .quick-apply-note {
        margin-bottom: 0.65rem;
    }
    .quick-apply-note label {
        font-size: 0.88rem;
    }
    .quick-apply-note textarea {
        min-height: 98px;
        padding: 0.8rem 0.9rem;
        border-radius: 16px;
        font-size: 0.92rem;
        line-height: 1.45;
        background: #ffffff;
    }
    .auth-apply-prompt {
        gap: 0.65rem;
        padding: 0.95rem;
        border-radius: 18px;
    }
    .auth-apply-prompt h2 {
        font-size: 1.18rem;
        line-height: 1.08;
    }
    .auth-apply-prompt p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .auth-apply-actions {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
    .focus-apply-button {
        min-height: 64px;
        border-radius: 18px;
        font-size: 1rem;
        box-shadow: 0 18px 30px rgba(255, 106, 36, 0.3);
    }
    .focus-apply-button span {
        font-size: 1.03rem;
    }
    .focus-apply-button small {
        font-size: 0.8rem;
    }
    .job-focus-footer {
        gap: 0.5rem;
        padding-top: 0.8rem;
        font-size: 0.88rem;
    }
    .job-meta-inline {
        gap: 0.2rem;
        font-size: 0.85rem;
    }
    .report-inline {
        margin-left: 0;
        width: 100%;
    }
    .report-inline .text-link {
        min-height: 38px;
        width: 100%;
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
    .apply-card-head {
        gap: 0.5rem;
        margin-bottom: 0.85rem;
        padding-top: 0.35rem;
    }
    .apply-card-head h2 {
        font-size: 1.45rem;
    }
    .apply-card-head p {
        font-size: 0.94rem;
        line-height: 1.45;
    }
    .field {
        gap: 0.35rem;
    }
    label {
        font-size: 0.92rem;
    }
    input, select, textarea {
        padding: 0.9rem 0.95rem;
        border-radius: 14px;
    }
    textarea {
        min-height: 124px;
    }
    .hero-search {
        padding: 0.95rem;
        border-radius: 20px;
    }
    .apply-modal {
        align-items: end;
        padding: 0.65rem;
    }
    .apply-modal-card {
        width: 100%;
        max-height: 92vh;
        border-radius: 24px 24px 18px 18px;
    }
    .apply-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .button, .button-secondary, .button-danger {
        width: 100%;
    }
    .results-bar strong {
        font-size: 0.98rem;
    }
    .table-item,
    .table-item-stretch {
        align-items: flex-start;
        flex-direction: column;
    }
    .mobile-menu {
        margin-top: 0.75rem;
        padding: 0.8rem;
    }
    .mobile-menu-link-with-badge {
        display: flex !important;
    }
    .inquiry-card,
    .inquiry-summary-card,
    .chat-list-item,
    .chat-shell {
        padding: 0.95rem;
        border-radius: 18px;
    }
    .inquiry-meta,
    .inquiry-actions,
    .chat-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .inquiry-summary-main {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 0.75rem;
    }
    .applicant-avatar-small {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
    .inquiry-summary-top {
        align-items: flex-start;
        flex-direction: column;
    }
    .inquiry-summary-meta {
        gap: 0.35rem 0.6rem;
        font-size: 0.92rem;
    }
    .chat-list-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 0.75rem;
    }
    .chat-avatar {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }
    .chat-bubble {
        width: 100%;
        padding: 0.85rem 0.9rem;
    }
    .chat-messages {
        padding: 1rem 0;
    }
    .chat-form textarea {
        min-height: 110px;
    }
    .chat-rating {
        padding: 0.95rem;
        border-radius: 18px;
    }
    .rating-history-item {
        padding: 0.75rem;
    }
    .inquiries-page {
        padding-top: 0.9rem;
    }
    .inbox-panel {
        padding: 1rem;
        border-radius: 22px;
    }
    .inquiry-card-detailed {
        gap: 0.85rem;
    }
    .applicant-identity,
    .info-chip,
    .empty-panel {
        padding: 0.9rem;
        border-radius: 16px;
    }
    .applicant-avatar {
        width: 72px;
        height: 72px;
        border-radius: 20px;
        font-size: 1.45rem;
    }
    .applicant-grid {
        gap: 0.75rem;
    }
    .missing-profile-fields {
        gap: 0.45rem;
    }
    .site-footer {
        margin-top: 1.25rem;
        padding: 1rem 0 1.5rem;
    }
    .footer-shell {
        gap: 1rem;
        padding: 1rem;
        border-radius: 22px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1rem 0.85rem;
    }
    .footer-links h3,
    .footer-note h3 {
        margin-bottom: 0.45rem;
        font-size: 1rem;
    }
    .footer-links a,
    .footer-note p,
    .footer-legal a {
        font-size: 0.95rem;
        line-height: 1.45;
    }
    .footer-links > div {
        gap: 0.35rem;
    }
    .footer-note {
        padding: 0.85rem 0.95rem;
    }
    .footer-legal {
        justify-content: flex-start;
        gap: 0.85rem 1rem;
        padding-top: 0.85rem;
    }
    .related-section {
        margin-top: 0.35rem;
    }
    .related-section .section-head {
        margin-bottom: 0.4rem;
    }
    .related-section .section-head h2 {
        font-size: 1.18rem;
        line-height: 1.08;
        color: var(--text);
    }
    .job-grid {
        gap: 0.75rem;
    }
    .job-card {
        padding: 0.92rem;
    }
}
