/* [project]/packages/ui/src/primitives/skeleton/skeleton.css [app-client] (css) */
.sb-skeleton-row {
  align-items: center;
  gap: 12px;
  display: flex;
}

.sb-spinner {
  border: 2.5px solid var(--coral-100);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: .9s linear infinite sb-spinner-rotate;
  display: inline-block;
}

@keyframes sb-spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}

.sb-dots {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.sb-dots i {
  background: var(--accent);
  width: 6px;
  height: 6px;
  animation: sb-dot-bob 1.1s var(--ease-in-out, ease-in-out) infinite;
  border-radius: 50%;
  display: block;
}

.sb-dots i:nth-child(2) {
  animation-delay: .15s;
}

.sb-dots i:nth-child(3) {
  animation-delay: .3s;
}

@keyframes sb-dot-bob {
  0%, 100% {
    opacity: .35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

.sb-scanline {
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sb-scanline:before {
  content: "";
  background: var(--coral-glow-16);
  animation: sb-scanline-pass 1.8s var(--ease-in-out, ease-in-out) infinite;
  background-repeat: no-repeat;
  background-size: 30% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes sb-scanline-pass {
  0% {
    background-position: -40% 0;
  }

  100% {
    background-position: 140% 0;
  }
}

.sb-scanline-label {
  z-index: 1;
  color: var(--fg-soft);
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: -.005em;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .sb-spinner, .sb-dots i, .sb-scanline:before {
    animation: none;
  }
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/jobs-view.css [app-client] (css) */
.sb-jobs-page {
  max-width: var(--page-max-w);
  padding: 0 var(--s-4) 64px;
  margin-left: auto;
  margin-right: auto;
}

.sb-jobs-ratelimited {
  text-align: center;
  min-height: 40vh;
  color: var(--fg-muted);
  place-items: center;
  display: grid;
}

.sb-jobs-header {
  gap: var(--s-1);
  flex-direction: column;
  display: flex;
}

.sb-jobs-overline {
  font-size: var(--text-xs);
  font-weight: var(--w-med);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
}

.sb-jobs-titlerow {
  align-items: center;
  gap: var(--s-3);
  flex-wrap: nowrap;
  min-width: 0;
  display: flex;
}

.sb-jobs-titlerow > :not(.sb-active-chips) {
  flex-shrink: 0;
}

.sb-jobs-meta {
  font-size: var(--text-sm);
  color: var(--fg-muted);
}

.sb-jobs-filters {
  gap: var(--s-4);
  flex-direction: column;
  width: 100%;
  display: flex;
}

.sb-jobs-filters-header {
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  min-height: 28px;
  display: flex;
}

.sb-jobs-filters-title {
  font: 600 11.5px var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fg-muted);
}

.sb-jobs-field {
  gap: var(--s-2);
  flex-direction: column;
  display: flex;
}

.sb-jobs-field-label-row {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.sb-jobs-field-label {
  font-size: var(--text-xs);
  font-weight: var(--w-med);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fg-muted);
}

.sb-jobs-salary {
  align-items: center;
  gap: var(--s-2);
  grid-template-columns: 1fr auto 1fr;
  display: grid;
}

.sb-jobs-salary-sep {
  color: var(--fg-muted);
  font-size: var(--text-sm);
}

.sb-jobs-row {
  width: 100%;
  display: block;
}

.sb-jobs-sentinel {
  width: 1px;
  height: 1px;
}

.sb-jobs-empty, .sb-jobs-error {
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-6);
  border: 1px dashed var(--line);
  background: var(--bg);
  color: var(--fg-soft);
  border-radius: 14px;
  flex-direction: column;
  grid-column: 1 / -1;
  display: flex;
}

.sb-jobs-state {
  justify-content: center;
  align-items: center;
  gap: var(--s-3);
  min-height: calc(var(--sb-page-fill, 100vh)  - 64px);
  padding: var(--s-6);
  text-align: center;
  flex-direction: column;
  display: flex;
}

.sb-jobs-state-title {
  font-family: var(--font-display, var(--font-sans));
  font-size: var(--text-2xl);
  font-weight: var(--w-bold);
  letter-spacing: -.012em;
  color: var(--fg);
  margin: 0;
}

.sb-jobs-state-body {
  max-width: 32rem;
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  color: var(--fg-soft);
  margin: 0;
}

.sb-jobs-state-cta {
  background: var(--accent);
  color: var(--accent-fg);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--w-semi);
  box-shadow: var(--glow-coral-sm);
  transition: background var(--d-1) var(--ease-out-soft);
  border-radius: 10px;
  align-items: center;
  padding: 10px 18px;
  text-decoration: none;
  display: inline-flex;
}

.sb-jobs-state-cta:hover {
  background: var(--coral-600);
}

/*# sourceMappingURL=_94ade4bb._.css.map*/