/* ==========================================================================
   Country hub DEEP layout (premium). Scoped under .ushub so nothing leaks.
   Rendered by routes/seo/country.php via resources/views/pages/country-hub-deep.php
   for countries with a deep-content config (United States today).
   ========================================================================== */

.ushub .ushub-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;
}

.ushub {
    --ink: #0a0a0a;
    --slate-900: #0b1220;
    --slate-800: #0f172a;
    --slate-700: #1e293b;
    --line: #e4e4e7;
    --line-soft: #f1f1f4;
    --muted: #52525b;
    --muted-2: #71717a;
    --sky: #0284c7;
    --sky-soft: #e0f2fe;
    --accent: #38bdf8;
    --maxw: 1120px;
    display: block;
    width: 100%;
    color: var(--ink);
}
.ushub *,
.ushub *::before,
.ushub *::after { box-sizing: border-box; }

/* NOTE: do NOT add a `.ushub a { color: inherit }` rule. Its specificity (0,1,1) beats
   the shared card's `.jc-apply { color:#fff }` (0,1,0) and repaints the card's links/
   buttons, making the hub cards differ from /jobs. The global `a { color: inherit }`
   already covers unstyled links, and the card partial owns its own link colors. */

/* Visible keyboard focus (WCAG 2.4.7). Scoped to the hub's own controls and NOT the
   shared job cards, so cards stay byte-identical to /jobs and /internships. The outline
   follows each element's own border-radius (no radius override here). */
.ushub .ushub-btn:focus-visible,
.ushub .ushub-search input:focus-visible,
.ushub .ushub-search-btn:focus-visible,
.ushub .ushub-quicknav a:focus-visible,
.ushub .ushub-role:focus-visible,
.ushub .ushub-city:focus-visible,
.ushub .ushub-pa-chip:focus-visible,
.ushub .ushub-pills a:focus-visible,
.ushub .ushub-logo:focus-visible,
.ushub .ushub-guide-link:focus-visible,
.ushub .ushub-faq-item summary:focus-visible,
.ushub .tab-trigger:focus-visible,
.ushub .ushub-alert-form input:focus-visible {
    outline: 2px solid var(--sky);
    outline-offset: 2px;
}
/* On the dark hero, use a light ring so it is visible against slate. */
.ushub .ushub-hero a:focus-visible,
.ushub .ushub-hero button:focus-visible,
.ushub .ushub-search input:focus-visible {
    outline-color: #fff;
}

.ushub .ushub-section {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 56px 20px;
}
.ushub .ushub-head { max-width: 760px; margin: 0 0 28px; }
.ushub .ushub-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.ushub .ushub-head h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--slate-800);
    margin: 0 0 10px;
    line-height: 1.15;
}
.ushub .ushub-head p { font-size: 1.02rem; line-height: 1.6; color: var(--muted); margin: 0; }
.ushub .ushub-h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-800); margin: 0 0 14px; }

/* ---- Buttons ---- */
.ushub .ushub-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 22px; border-radius: 12px; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    white-space: nowrap;
}
.ushub .ushub-btn:hover { transform: translateY(-1px); }
.ushub .ushub-btn-dark { background: var(--ink); color: #fff; }
.ushub .ushub-btn-dark:hover { box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.ushub .ushub-btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.ushub .ushub-btn-light:hover { box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.ushub .ushub-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.ushub .ushub-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.ushub .ushub-btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.ushub .ushub-btn-outline:hover { border-color: var(--ink); }

/* ---- HERO ---- */
.ushub .ushub-hero {
    width: 100%;
    background:
        radial-gradient(1100px 480px at 50% -8%, rgba(56,189,248,.18), transparent 60%),
        radial-gradient(800px 380px at 88% 10%, rgba(99,102,241,.16), transparent 55%),
        linear-gradient(180deg, var(--slate-900) 0%, var(--slate-800) 55%, var(--slate-700) 100%);
    color: #fff;
    padding: 124px 20px 60px;
    position: relative;
    overflow: hidden;
}
.ushub .ushub-hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(900px 420px at 50% 0%, #000 35%, transparent 80%);
    mask-image: radial-gradient(900px 420px at 50% 0%, #000 35%, transparent 80%);
    pointer-events: none;
}
.ushub .ushub-hero-inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.ushub .ushub-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    color: #cbd5e1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.ushub .ushub-h1 {
    font-size: clamp(2.1rem, 5.4vw, 3.4rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; margin: 0 0 18px;
    color: #fff;
}
.ushub .ushub-sub {
    font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.6; color: #cbd5e1;
    max-width: 680px; margin: 0 auto 30px;
}
.ushub .ushub-search {
    display: flex; align-items: center; gap: 8px; max-width: 660px; margin: 0 auto 18px;
    background: #fff; border-radius: 14px; padding: 7px 7px 7px 16px;
    box-shadow: 0 18px 50px rgba(2,6,23,.45); position: relative;
}
.ushub .ushub-search-ico { color: var(--muted-2); font-size: 0.95rem; }
.ushub .ushub-search-input {
    flex: 1; border: 0; outline: 0; font-size: 1rem; color: var(--ink); background: transparent;
    padding: 11px 6px; font-family: inherit; min-width: 0;
}
.ushub .ushub-search-btn {
    border: 0; background: var(--ink); color: #fff; font-weight: 600; font-size: 0.95rem;
    padding: 12px 22px; border-radius: 10px; cursor: pointer; font-family: inherit;
    transition: background .15s ease;
}
.ushub .ushub-search-btn:hover { background: #27272a; }
.ushub .ushub-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 38px; }

.ushub .ushub-proof {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 36px;
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12);
}
.ushub .ushub-stat { display: flex; flex-direction: column; align-items: center; min-width: 76px; }
.ushub .ushub-stat-n { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; color: #fff; line-height: 1.1; }
.ushub .ushub-stat-l { font-size: 0.78rem; color: #94a3b8; margin-top: 4px; text-transform: uppercase; letter-spacing: .03em; }
.ushub .ushub-freshness { font-size: 0.85rem; color: #94a3b8; margin: 20px 0 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.ushub .ushub-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); display: inline-block; }

/* ---- LOGOS ---- */
.ushub .ushub-logos { max-width: var(--maxw); margin: 0 auto; padding: 38px 20px 6px; text-align: center; }
.ushub .ushub-logos-label { font-size: 0.8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 22px; }
.ushub .ushub-logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 38px; }
.ushub .ushub-logo { display: inline-flex; align-items: center; height: 38px; opacity: .85; filter: grayscale(100%); transition: opacity .18s ease, filter .18s ease, transform .18s ease; }
.ushub .ushub-logo:hover { opacity: 1; filter: grayscale(0%); transform: translateY(-1px); }
.ushub .ushub-logo img { max-height: 34px; max-width: 132px; width: auto; height: auto; object-fit: contain; }
/* Touch devices have no hover, so show real color logos by default */
@media (hover: none) {
    .ushub .ushub-logo { opacity: 1; filter: none; }
}

/* ---- QUICK NAV ---- */
.ushub .ushub-quicknav { max-width: var(--maxw); margin: 30px auto 0; padding: 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.ushub .ushub-quicknav a {
    font-size: 0.88rem; font-weight: 600; color: var(--muted); background: #fff;
    border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; text-decoration: none;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.ushub .ushub-quicknav a:hover { border-color: var(--ink); color: var(--ink); }

/* ---- ROLES ---- */
.ushub .ushub-roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ushub .ushub-role {
    display: flex; flex-direction: column; gap: 8px; padding: 22px; background: #fff;
    border: 1px solid var(--line); border-radius: 16px; text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.ushub .ushub-role:hover { border-color: #d4d4d8; box-shadow: 0 10px 30px rgba(2,6,23,.07); transform: translateY(-2px); }
.ushub .ushub-role-ico { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--sky-soft); color: var(--sky); font-size: 1.05rem; margin-bottom: 4px; }
.ushub .ushub-role-name { font-size: 1.06rem; font-weight: 700; color: var(--slate-800); }
.ushub .ushub-role-blurb { font-size: 0.92rem; line-height: 1.55; color: var(--muted); flex: 1; }
.ushub .ushub-role-go { font-size: 0.86rem; font-weight: 600; color: var(--sky); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.ushub .ushub-role:hover .ushub-role-go i { transform: translateX(3px); }
.ushub .ushub-role-go i { transition: transform .15s ease; }

/* ---- TABS (reuse global .tab-trigger styling if present; minimal fallback) ---- */
.ushub .ushub-tabs { margin-top: 4px; }
.ushub .ushub-viewall { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
/* Job/internship cards render exactly as they do on /jobs, /internships and the homepage:
   the shared .jobs-grid partial owns their layout. Do NOT override it here. */

/* ---- SALARY ---- */
.ushub .ushub-salary-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.ushub .ushub-band-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; text-align: center; }
.ushub .ushub-band-mid { background: linear-gradient(180deg, #0f172a, #1e293b); border-color: #0f172a; color: #fff; transform: translateY(-4px); box-shadow: 0 14px 34px rgba(2,6,23,.18); }
.ushub .ushub-band-l { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--muted-2); }
.ushub .ushub-band-mid .ushub-band-l { color: #94a3b8; }
.ushub .ushub-band-n { display: block; font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; color: var(--slate-800); margin: 8px 0 4px; }
.ushub .ushub-band-mid .ushub-band-n { color: #fff; }
.ushub .ushub-band-s { display: block; font-size: 0.82rem; color: var(--muted-2); }
.ushub .ushub-band-mid .ushub-band-s { color: #cbd5e1; }

.ushub .ushub-salary-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 8px 8px 16px; overflow-x: auto; }
.ushub .ushub-salary-table-wrap .ushub-h3 { padding: 18px 16px 4px; }
.ushub .ushub-salary-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 520px; }
.ushub .ushub-salary-table th { text-align: left; font-size: 0.76rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted-2); font-weight: 700; padding: 10px 16px; border-bottom: 1px solid var(--line); }
.ushub .ushub-salary-table td { padding: 13px 16px; border-bottom: 1px solid var(--line-soft); color: var(--slate-700); }
.ushub .ushub-salary-table tr:last-child td { border-bottom: 0; }
.ushub .ushub-salary-table .ushub-strong { font-weight: 700; color: var(--slate-800); }
.ushub .ushub-num { text-align: right; color: var(--muted-2); }
.ushub .ushub-note { font-size: 0.82rem; color: var(--muted-2); line-height: 1.55; margin: 14px 16px 0; }
/* ---- Salary distribution bar (CSS only) ---- */
.ushub .ushub-distbar { margin: 0 0 30px; }
.ushub .ushub-distbar-track { position: relative; height: 12px; border-radius: 999px; background: var(--line); overflow: visible; }
.ushub .ushub-distbar-fill { position: absolute; left: 0; right: 0; top: 0; bottom: 0; border-radius: 999px; background: linear-gradient(90deg, #7dd3fc, #38bdf8, #0284c7); }
.ushub .ushub-distbar-marker { position: absolute; left: 50%; top: -5px; width: 4px; height: 22px; border-radius: 3px; background: var(--ink); transform: translateX(-50%); box-shadow: 0 0 0 3px rgba(255,255,255,.9); }
.ushub .ushub-distbar-labels { display: flex; justify-content: space-between; margin-top: 14px; }
.ushub .ushub-distbar-labels span { display: flex; flex-direction: column; font-size: 0.95rem; font-weight: 700; color: var(--slate-800); }
.ushub .ushub-distbar-labels span:last-child { align-items: flex-end; }
.ushub .ushub-distbar-labels .ushub-distbar-med { align-items: center; flex: 1; color: var(--ink); }
.ushub .ushub-distbar-labels small { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--muted-2); margin-top: 2px; }

/* ---- Early-career calendar ---- */
.ushub .ushub-cal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ushub .ushub-cal-item { display: flex; flex-direction: column; gap: 8px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.ushub .ushub-cal-ico { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--sky-soft); color: var(--sky); font-size: 1rem; }
.ushub .ushub-cal-t { font-size: 1.02rem; font-weight: 700; color: var(--slate-800); }
.ushub .ushub-cal-d { font-size: 0.92rem; line-height: 1.6; color: var(--muted); }
.ushub .ushub-anchors-date { font-size: 0.78rem; font-weight: 600; color: var(--sky); background: #fff; border: 1px solid #bae6fd; padding: 2px 9px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }

.ushub .ushub-anchors { margin-top: 26px; background: var(--sky-soft); border: 1px solid #bae6fd; border-radius: 16px; padding: 22px 24px; }
.ushub .ushub-anchor-list { margin: 0; padding-left: 18px; }
.ushub .ushub-anchor-list li { font-size: 0.95rem; line-height: 1.7; color: var(--slate-700); }
.ushub .ushub-src { font-size: 0.8rem; color: var(--sky); font-weight: 600; }
.ushub .ushub-src-note { font-size: 0.82rem; color: var(--muted-2); }

/* ---- CITIES ---- */
.ushub .ushub-cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ushub .ushub-city { display: flex; flex-direction: column; gap: 3px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
.ushub .ushub-city:hover { border-color: var(--ink); transform: translateY(-2px); }
.ushub .ushub-city-name { font-size: 1.02rem; font-weight: 700; color: var(--slate-800); }
.ushub .ushub-city-n { font-size: 0.85rem; color: var(--muted-2); }

/* ---- PRACTICE AREAS ---- */
.ushub .ushub-pa { display: flex; flex-wrap: wrap; gap: 10px; }
.ushub .ushub-pa-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: var(--slate-700); background: #fff; border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; text-decoration: none; transition: border-color .15s ease, color .15s ease; }
.ushub .ushub-pa-chip:hover { border-color: var(--ink); color: var(--ink); }
.ushub .ushub-pa-chip span { font-size: 0.8rem; font-weight: 700; color: var(--muted-2); background: var(--line-soft); padding: 2px 8px; border-radius: 999px; }

/* ---- BROWSE COLUMNS ---- */
.ushub .ushub-browse { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ushub .ushub-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ushub .ushub-pills a { font-size: 0.88rem; font-weight: 600; color: var(--muted); background: #fff; border: 1px solid var(--line); padding: 9px 15px; border-radius: 10px; text-decoration: none; transition: border-color .15s ease, color .15s ease; display: inline-flex; gap: 7px; align-items: center; }
.ushub .ushub-pills a:hover { border-color: var(--ink); color: var(--ink); }
.ushub .ushub-pills a span { font-size: 0.78rem; color: var(--muted-2); }

/* ---- CAREER STEPS ---- */
/* Full-width band, but the inner content must line up with every other section.
   The padding moves from the (full-width) section onto the centered children, so
   their left edge matches the standard .ushub-section content edge exactly. */
.ushub .ushub-career { background: linear-gradient(180deg, #fafafa, #fff); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); max-width: none; padding-left: 0; padding-right: 0; }
.ushub .ushub-career > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
.ushub .ushub-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ushub .ushub-step { display: flex; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.ushub .ushub-step-n { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--ink); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.ushub .ushub-step-t { display: block; font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 4px; }
.ushub .ushub-step-d { display: block; font-size: 0.9rem; line-height: 1.55; color: var(--muted); }
.ushub .ushub-facts { margin-top: 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; }
.ushub .ushub-facts p { font-size: 0.92rem; line-height: 1.65; color: var(--slate-700); margin: 0 0 10px; }
.ushub .ushub-facts p:last-child { margin-bottom: 0; }
.ushub .ushub-guides { margin-top: 18px; }
.ushub .ushub-guide-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--sky); font-size: 0.95rem; text-decoration: none; }
.ushub .ushub-guide-link:hover { text-decoration: underline; }

/* ---- FAQ ---- */
.ushub .ushub-faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; }
.ushub .ushub-faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; }
.ushub .ushub-faq-item summary { font-size: 1rem; font-weight: 600; color: var(--slate-800); cursor: pointer; padding: 14px 0; list-style: none; position: relative; padding-right: 28px; }
.ushub .ushub-faq-item summary::-webkit-details-marker { display: none; }
.ushub .ushub-faq-item summary::after { content: "+"; position: absolute; right: 2px; top: 12px; font-size: 1.3rem; font-weight: 400; color: var(--muted-2); transition: transform .15s ease; }
.ushub .ushub-faq-item[open] summary::after { content: "\2212"; }
.ushub .ushub-faq-item p { font-size: 0.95rem; line-height: 1.7; color: var(--muted); margin: 0 0 16px; }

/* ---- CTAs ---- */
.ushub .ushub-ctas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ushub .ushub-cta-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; }
.ushub .ushub-cta-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--slate-800); margin: 0 0 8px; }
.ushub .ushub-cta-card p { font-size: 0.92rem; line-height: 1.55; color: var(--muted); margin: 0 0 18px; flex: 1; }
.ushub .ushub-cta-dark { background: linear-gradient(135deg, #0f172a, #1e3a5f); border-color: #0f172a; }
.ushub .ushub-cta-dark h3 { color: #fff; }
.ushub .ushub-cta-dark p { color: rgba(255,255,255,.75); }
.ushub .ushub-cta-hire { border: 2px solid var(--ink); }
.ushub .ushub-alert-form { display: flex; flex-direction: column; gap: 10px; }
.ushub .ushub-alert-form input[type=email] { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 0.95rem; font-family: inherit; outline: none; }
.ushub .ushub-alert-form input[type=email]:focus { border-color: var(--ink); }
.ushub .ushub-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ushub .ushub-flash { font-size: 0.85rem; padding: 9px 12px; border-radius: 10px; margin-bottom: 12px; }
.ushub .ushub-flash-ok { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.ushub .ushub-flash-err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ==========================================================================
   Extended sections for answer-first / evergreen hubs (e.g. Micronesia): prose
   overview, employer landscape, regions/states, qualification routes, official
   resources, and the zero-inventory alert panel. All scoped under .ushub.
   ========================================================================== */

/* ---- PROSE (overview + qualitative salary) ---- */
.ushub .ushub-prose { max-width: 760px; }
.ushub .ushub-prose p { font-size: 1.02rem; line-height: 1.75; color: var(--slate-700); margin: 0 0 16px; }
.ushub .ushub-prose p:last-child { margin-bottom: 0; }

/* ---- ROLE card with no link (informational) ---- */
.ushub .ushub-role-static { cursor: default; }
.ushub .ushub-role-static:hover { border-color: var(--line); box-shadow: none; transform: none; }

/* ---- EMPLOYER LANDSCAPE ---- */
.ushub .ushub-emp { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ushub .ushub-emp-card { display: flex; gap: 14px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; transition: border-color .15s ease, box-shadow .15s ease; }
.ushub .ushub-emp-card:hover { border-color: #d4d4d8; box-shadow: 0 8px 24px rgba(2,6,23,.06); }
.ushub .ushub-emp-ico { flex: none; width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--sky-soft); color: var(--sky); font-size: 1.05rem; }
.ushub .ushub-emp-body { display: flex; flex-direction: column; gap: 5px; }
.ushub .ushub-emp-name { font-size: 1.02rem; font-weight: 700; color: var(--slate-800); }
.ushub .ushub-emp-blurb { font-size: 0.92rem; line-height: 1.6; color: var(--muted); }

/* ---- REGIONS / STATES ---- */
.ushub .ushub-regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ushub .ushub-region { padding: 20px 22px; background: linear-gradient(180deg, #fafafa, #fff); border: 1px solid var(--line); border-radius: 14px; }
.ushub .ushub-region-name { display: block; font-size: 1.05rem; font-weight: 700; color: var(--slate-800); margin-bottom: 6px; }
.ushub .ushub-region-name::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); margin-right: 9px; vertical-align: middle; }
.ushub .ushub-region-blurb { font-size: 0.92rem; line-height: 1.6; color: var(--muted); }

/* ---- QUALIFICATION ROUTES ---- */
.ushub .ushub-routes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: start; }
.ushub .ushub-route { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 18px; position: relative; }
.ushub .ushub-route-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--sky); background: var(--sky-soft); border: 1px solid #bae6fd; padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }
.ushub .ushub-route-title { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.01em; color: var(--slate-800); margin: 0 0 8px; }
.ushub .ushub-route-sum { font-size: 0.95rem; line-height: 1.6; color: var(--muted); margin: 0 0 16px; }
.ushub .ushub-route-steps { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 9px; }
.ushub .ushub-route-steps li { font-size: 0.93rem; line-height: 1.55; color: var(--slate-700); }
.ushub .ushub-route-steps li::marker { color: var(--sky); font-weight: 700; }

/* ---- NO-INVENTORY ALERT PANEL ---- */
.ushub .ushub-noinv { max-width: 720px; margin: 0 auto; text-align: center; padding: 44px 28px; background: linear-gradient(180deg, #0f172a, #1e293b); border-radius: 22px; color: #fff; }
.ushub .ushub-noinv-ico { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: rgba(56,189,248,.16); color: #7dd3fc; font-size: 1.4rem; margin-bottom: 18px; }
.ushub .ushub-noinv-title { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; color: #fff; margin: 0 0 12px; line-height: 1.2; }
.ushub .ushub-noinv-text { font-size: 1rem; line-height: 1.65; color: #cbd5e1; max-width: 560px; margin: 0 auto 24px; }
.ushub .ushub-noinv-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto 18px; }
.ushub .ushub-noinv-form input[type=email] { flex: 1; padding: 13px 16px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; border-radius: 11px; font-size: 0.95rem; font-family: inherit; outline: none; min-width: 0; }
.ushub .ushub-noinv-form input[type=email]::placeholder { color: #94a3b8; }
.ushub .ushub-noinv-form input[type=email]:focus { border-color: var(--accent); background: rgba(255,255,255,.1); }
.ushub .ushub-noinv-links { display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: center; }
.ushub .ushub-noinv-links a { font-size: 0.88rem; font-weight: 600; color: #7dd3fc; text-decoration: none; }
.ushub .ushub-noinv-links a:hover { text-decoration: underline; }

/* ---- RESOURCES / OFFICIAL CHANNELS ---- */
.ushub .ushub-res { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ushub .ushub-res-link { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 13px; text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
.ushub .ushub-res-link:hover { border-color: var(--ink); transform: translateY(-1px); }
.ushub .ushub-res-name { font-size: 0.98rem; font-weight: 700; color: var(--slate-800); display: inline-flex; align-items: center; gap: 8px; }
.ushub .ushub-res-name i { font-size: 0.78rem; color: var(--sky); }
.ushub .ushub-res-note { font-size: 0.86rem; line-height: 1.5; color: var(--muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .ushub .ushub-roles { grid-template-columns: repeat(2, 1fr); }
    .ushub .ushub-cities { grid-template-columns: repeat(3, 1fr); }
    .ushub .ushub-browse { grid-template-columns: 1fr; gap: 22px; }
    .ushub .ushub-steps { grid-template-columns: 1fr; }
    .ushub .ushub-cal { grid-template-columns: 1fr; }
    .ushub .ushub-ctas { grid-template-columns: 1fr; }
    .ushub .ushub-emp { grid-template-columns: 1fr; }
    .ushub .ushub-regions { grid-template-columns: 1fr; }
    .ushub .ushub-routes { grid-template-columns: 1fr; }
    .ushub .ushub-res { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .ushub .ushub-hero { padding: 104px 18px 48px; }
    .ushub .ushub-section { padding: 42px 18px; }
    .ushub .ushub-search { flex-wrap: wrap; padding: 12px; gap: 10px; }
    .ushub .ushub-search-input { width: 100%; padding: 8px 6px; }
    .ushub .ushub-search-btn { width: 100%; }
    .ushub .ushub-roles { grid-template-columns: 1fr; }
    .ushub .ushub-cities { grid-template-columns: repeat(2, 1fr); }
    .ushub .ushub-salary-band { grid-template-columns: 1fr; }
    .ushub .ushub-band-mid { transform: none; }
    .ushub .ushub-proof { gap: 12px 22px; }
    .ushub .ushub-noinv-form { flex-direction: column; }
    .ushub .ushub-noinv-form input[type=email] { width: 100%; }
    .ushub .ushub-noinv { padding: 34px 20px; }
    /* Comfortable >=44px tap targets on mobile (WCAG 2.5.8). */
    .ushub .ushub-quicknav a,
    .ushub .ushub-pills a,
    .ushub .ushub-pa-chip,
    .ushub .tab-trigger,
    .ushub .ushub-logo { min-height: 44px; display: inline-flex; align-items: center; }
    /* Salary table scrolls horizontally on narrow screens: add a right-edge fade cue */
    .ushub .ushub-salary-table-wrap { position: relative; }
    .ushub .ushub-salary-table-wrap::after {
        content: ""; position: absolute; top: 1px; right: 1px; bottom: 1px; width: 36px;
        border-radius: 0 16px 16px 0; pointer-events: none;
        background: linear-gradient(90deg, rgba(255,255,255,0), #fff 78%);
    }
}
