/* Jobs list */
.irodori-job-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem;
  background: #f8fafc;
  border-radius: 9999px;
  width: fit-content;
  flex-shrink: 0;
}
.irodori-job-tab {
  padding: 1.25rem 2.5rem;
  border-radius: 1.5rem;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
}
.irodori-job-tab:hover:not(.is-active) {
  color: #0f172a;
}
.irodori-job-tab.is-active {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.job-card.filter-hidden {
  display: none;
}

#recruit-archive-results.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Archive list — compact job cards */
.jobs-archive-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 54rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .jobs-archive-list {
    gap: 1.5rem;
  }
}

.job-card > a {
  padding: 1.25rem 1.5rem;
  border-radius: 1.75rem;
  border-color: #cbd5e1 !important;
  transition: border-color 0.7s ease, box-shadow 0.7s ease;
}

@media (min-width: 1024px) {
  .job-card > a {
    padding: 1.5rem 2rem;
  }
}

.job-card > a:hover {
  border-color: #0f172a !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
}

.job-card > a .rounded-full.border {
  border-color: #cbd5e1 !important;
  transition: border-color 0.7s ease, background-color 0.7s ease, color 0.7s ease;
}

.job-card > a:hover .rounded-full.border {
  border-color: #0f172a !important;
  background-color: #0f172a;
  color: #fff;
}

.job-card > a > .flex {
  gap: 1.25rem;
}

.job-card .flex-wrap.items-center {
  margin-bottom: 0.625rem;
  gap: 0.5rem;
}

.job-card .flex-wrap.items-center span {
  padding: 0.25rem 0.75rem;
}

.job-card h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 0.375rem;
}

@media (min-width: 1024px) {
  .job-card h3 {
    font-size: 1.25rem;
  }
}

.job-card > a > .flex > .flex-grow > p {
  font-size: 0.875rem;
  line-height: 1.55;
}

.job-card > a > .flex > .rounded-full {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.job-card > a > .flex > .rounded-full [data-lucide] {
  width: 1rem;
  height: 1rem;
}

section.bg-slate-50 .bg-white.border {
  border-color: #cbd5e1 !important;
}

#jobs-empty.border-dashed,
.border-dashed.border-slate-100 {
  border-color: #cbd5e1 !important;
}

@media (max-width: 767px) {
  .irodori-job-tabs {
    max-width: 100%;
    gap: 0.125rem;
    padding: 0.25rem;
  }
  .irodori-job-tab {
    padding: 0.625rem 1.125rem;
    font-size: 10px;
    letter-spacing: 0.06em;
    border-radius: 1rem;
    flex-shrink: 0;
  }
}
