/* Bay County Hospitality Jobs — map-first, Vantara-inspired */
:root {
  --sand: #f6f1e6;
  --foam: #e6f3f7;
  --ocean: #0a6b84;
  --ocean-mid: #0d7f9c;
  --ocean-deep: #054a5c;
  --coral: #d96b4c;
  --coral-deep: #c2573a;
  --coral-soft: #fce8e1;
  --ink: #15262e;
  --muted: #5c6f79;
  --muted-2: #7a8d96;
  --card: #ffffff;
  --border: rgba(215, 228, 234, 0.9);
  --border-strong: #b8ced8;
  --glass: rgba(255, 252, 248, 0.78);
  --glass-strong: rgba(255, 252, 248, 0.92);
  --glass-border: rgba(255, 255, 255, 0.55);
  --shadow-sm: 0 1px 2px rgba(5, 74, 92, 0.06);
  --shadow: 0 8px 32px rgba(5, 74, 92, 0.12), 0 2px 8px rgba(5, 74, 92, 0.06);
  --shadow-lg: 0 24px 64px rgba(5, 74, 92, 0.18), 0 4px 16px rgba(5, 74, 92, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --focus: 0 0 0 3px rgba(10, 107, 132, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --chrome-h: 72px;
  --sheet-w: min(440px, 100vw);
  --z-map: 1;
  --z-chrome: 40;
  --z-hint: 35;
  --z-footer: 30;
  --z-backdrop: 50;
  --z-sheet: 60;
}

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

html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #c5d5dc;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  background: var(--ocean-deep);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0.75rem;
  outline: none;
  box-shadow: var(--focus);
}

/* ——— Map stage ——— */
.map-stage {
  position: fixed;
  inset: 0;
  z-index: var(--z-map);
  background: #b8cdd6;
}

.leaflet-container {
  font: inherit;
  background: #b8cdd6;
}

.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255, 252, 248, 0.75) !important;
  backdrop-filter: blur(8px);
  border-radius: 6px 0 0 0;
  max-width: 55vw;
}

.leaflet-control-zoom {
  border: none !important;
  box-shadow: var(--shadow) !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 4.5rem !important;
}
.leaflet-control-zoom a {
  background: var(--glass-strong) !important;
  color: var(--ocean-deep) !important;
  border-bottom-color: var(--border) !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  font-size: 16px !important;
}
.leaflet-control-zoom a:hover {
  background: #fff !important;
}

/* City markers */
.city-marker {
  background: transparent;
  border: none;
}
.city-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  filter: drop-shadow(0 4px 10px rgba(5, 74, 92, 0.25));
  transition: transform 0.2s var(--ease);
}
.city-pin:hover,
.city-pin:focus-within {
  transform: translateY(-2px) scale(1.04);
}
.city-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(217, 107, 76, 0.28);
}
.city-pin-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ocean-deep);
  background: var(--glass-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.city-pin-count {
  display: inline-block;
  margin-left: 0.25rem;
  font-weight: 700;
  color: var(--coral-deep);
}

.leaflet-popup-content-wrapper {
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
}
.leaflet-popup-content {
  margin: 0.85rem 1rem;
  font-family: var(--font);
  color: var(--ink);
  min-width: 160px;
}
.leaflet-popup-content strong {
  font-family: var(--display);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.2rem;
}
.leaflet-popup-content p {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--ocean);
  color: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.popup-btn:hover { background: var(--ocean-mid); }
.leaflet-popup-tip {
  background: var(--glass-strong);
}

/* ——— Glass ——— */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

/* ——— Chrome ——— */
.chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-chrome);
  padding: 0.75rem 0.85rem;
  pointer-events: none;
}
.chrome-inner {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
}
.chrome-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.chrome-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 30% 30%, #7ec8d8, transparent 55%),
    linear-gradient(145deg, var(--ocean-mid), var(--ocean-deep));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}
.chrome-titles { min-width: 0; }
.chrome-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ocean-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(52vw, 320px);
}
.chrome-sub {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chrome-nav {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--ocean);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.nav-btn:hover {
  background: var(--ocean-mid);
}
.nav-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.nav-btn[aria-expanded="true"] {
  background: var(--ocean-deep);
}
.nav-btn:nth-child(2) {
  background: transparent;
  color: var(--ocean-deep);
  border-color: var(--border-strong);
}
.nav-btn:nth-child(2):hover {
  background: rgba(10, 107, 132, 0.08);
}
.nav-btn:nth-child(2)[aria-expanded="true"] {
  background: rgba(10, 107, 132, 0.12);
  border-color: var(--ocean);
}

@media (max-width: 520px) {
  .chrome-sub { display: none; }
  .nav-btn span { display: none; }
  .nav-btn {
    padding: 0.6rem;
    border-radius: 12px;
  }
  .nav-btn svg { width: 20px; height: 20px; }
}

/* ——— Map hint & footer ——— */
.map-hint {
  position: fixed;
  left: 50%;
  bottom: 3.25rem;
  transform: translateX(-50%);
  z-index: var(--z-hint);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.map-hint p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.map-hint.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
}

.map-footer {
  position: fixed;
  left: 0.75rem;
  bottom: 0.65rem;
  z-index: var(--z-footer);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  max-width: min(22rem, calc(100vw - 11rem));
}
.map-footer p {
  margin: 0;
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.sheet-open .map-hint,
body.sheet-open .map-footer,
body.sheet-open .created-by {
  opacity: 0;
  pointer-events: none;
}

.created-by {
  position: fixed;
  right: 0.75rem;
  bottom: 0.65rem;
  z-index: var(--z-footer);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  max-width: calc(50vw - 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease, opacity 0.2s ease;
}
.created-by:hover,
.created-by:focus-visible {
  color: var(--ocean, #0a6b84);
  outline: none;
}

/* ——— Backdrop ——— */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-backdrop);
  background: rgba(5, 40, 52, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
  border: none;
  padding: 0;
  cursor: pointer;
}
.backdrop.is-open {
  opacity: 1;
}
.backdrop[hidden] {
  display: none;
}

/* ——— Sheets ——— */
.sheet {
  position: fixed;
  z-index: var(--z-sheet);
  display: flex;
  flex-direction: column;
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s var(--ease), opacity 0.28s var(--ease);
  outline: none;
}

/* Desktop: slide-over from right */
@media (min-width: 721px) {
  .sheet {
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--sheet-w);
    border-radius: var(--radius) 0 0 var(--radius);
    transform: translateX(105%);
    opacity: 1;
  }
  .sheet.is-open {
    transform: translateX(0);
  }
  .sheet-handle { display: none; }
}

/* Mobile: bottom sheet */
@media (max-width: 720px) {
  .sheet {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    max-height: min(88vh, 920px);
    border-radius: 22px 22px 0 0;
    transform: translateY(105%);
  }
  .sheet.is-open {
    transform: translateY(0);
  }
  .sheet-handle {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: var(--border-strong);
    margin: 0.55rem auto 0;
    flex-shrink: 0;
  }
}

.sheet[hidden] {
  display: none;
}
.sheet.is-open[hidden] {
  display: flex;
}

.sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem 0.65rem;
  flex-shrink: 0;
}
.sheet-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ocean-deep);
}
.sheet-desc {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.sheet-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 12px;
  background: rgba(10, 107, 132, 0.08);
  color: var(--ocean-deep);
  cursor: pointer;
  transition: background 0.15s;
}
.sheet-close:hover { background: rgba(10, 107, 132, 0.14); }
.sheet-close:focus-visible { outline: none; box-shadow: var(--focus); }

.sheet-toolbar {
  padding: 0 1.15rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}
.toolbar-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}
.result-meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.result-meta span {
  color: var(--ocean);
}

.sheet-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.85rem 1.15rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

/* ——— Search ——— */
.search-wrap {
  position: relative;
}
.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  pointer-events: none;
}
.search {
  width: 100%;
  padding: 0.7rem 0.9rem 0.7rem 2.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: var(--focus);
}
.search::placeholder { color: var(--muted-2); }

/* ——— Role chips ——— */
.chip-scroller {
  position: relative;
  margin: 0 -0.25rem;
}
.chip-scroller::before,
.chip-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.chip-scroller::before {
  left: 0;
  background: linear-gradient(90deg, var(--glass-strong), transparent);
}
.chip-scroller::after {
  right: 0;
  background: linear-gradient(270deg, var(--glass-strong), transparent);
}
.chip-scroller[data-fade-left]::before { opacity: 1; }
.chip-scroller[data-fade-right]::after { opacity: 1; }

.role-filter {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.15rem 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.role-filter::-webkit-scrollbar { display: none; }

.role-chip {
  flex-shrink: 0;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 550;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.role-chip:hover {
  border-color: var(--ocean);
  color: var(--ocean-deep);
}
.role-chip.active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
}
.role-chip:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* ——— Toggle ——— */
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-ui {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: var(--border-strong);
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.toggle-ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease);
}
.toggle input:checked + .toggle-ui {
  background: var(--ocean);
}
.toggle input:checked + .toggle-ui::after {
  transform: translateX(16px);
}
.toggle input:focus-visible + .toggle-ui {
  box-shadow: var(--focus);
}

/* ——— Segmented tabs ——— */
.segmented {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(10, 107, 132, 0.07);
  border-radius: var(--radius-sm);
  overflow-x: auto;
  scrollbar-width: none;
}
.segmented::-webkit-scrollbar { display: none; }
.tab {
  flex: 1 1 auto;
  min-width: max-content;
  padding: 0.5rem 0.65rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.tab:hover { color: var(--ocean-deep); }
.tab.active {
  background: #fff;
  color: var(--ocean-deep);
  box-shadow: var(--shadow-sm);
}
.tab:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.tab-count {
  display: inline-block;
  margin-left: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral-deep);
  opacity: 0.9;
}
.tab.active .tab-count { color: var(--coral); }

/* ——— Panels ——— */
.panel { display: none; }
.panel.active { display: block; }
.panel-head {
  margin-bottom: 0.85rem;
}
.panel-head h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ocean-deep);
}
.hint {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ——— Cards ——— */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.card-top h3 {
  margin: 0 0 0.15rem;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.card .meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.card-details {
  display: grid;
  gap: 0.35rem 0.75rem;
  margin: 0.65rem 0 0.85rem;
  padding: 0;
}
.card-details > div {
  display: grid;
  grid-template-columns: minmax(7.5rem, 38%) 1fr;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  font-size: 0.86rem;
  line-height: 1.35;
}
.card-details dt {
  margin: 0;
  color: var(--muted, #5c6b7a);
  font-weight: 500;
}
.card-details dd {
  margin: 0;
  color: var(--ink, #1a2430);
  font-weight: 600;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.65rem 0 0;
}
.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--foam);
  color: var(--ocean-deep);
  text-transform: capitalize;
}
.badge.role {
  background: rgba(10, 107, 132, 0.12);
  color: var(--ocean);
}
.badge.stale {
  background: #f3e8d8;
  color: #8a5a2b;
}
.badge.unknown-date {
  background: #eee;
  color: var(--muted);
}
.badge.category {
  background: var(--sand);
  color: var(--muted);
}
.badge.mode {
  background: var(--coral-soft);
  color: var(--coral-deep);
}
.notes {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--ocean);
  color: #fff;
  border: 1px solid var(--ocean);
}
.btn-primary:hover { background: var(--ocean-mid); border-color: var(--ocean-mid); }
.btn-secondary {
  background: transparent;
  color: var(--ocean-deep);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--ocean);
  background: rgba(10, 107, 132, 0.06);
}

/* ——— Empty ——— */
.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
}
.empty-state.hidden { display: none; }
.empty-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.empty-title {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ocean-deep);
}
.empty-body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 28ch;
  margin-inline: auto;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ——— City pin filter (Search sheet) ——— */
.city-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}
.city-filter-bar[hidden] {
  display: none !important;
}
.city-filter-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}
.city-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 107, 132, 0.12);
  color: var(--ocean-deep);
  font-size: 0.85rem;
  font-weight: 600;
}
.city-filter-clear {
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--ocean);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.city-filter-clear:hover {
  background: var(--foam);
  border-color: var(--ocean);
}
.city-filter-clear:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.hotel-careers-section,
.city-hiring-section {
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.city-hiring-section.hidden {
  display: none;
}
.city-hiring-head h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ocean-deep);
}
.city-hiring-head .hint {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
