.jobs-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(184, 23, 31, .28);
  background:
    linear-gradient(135deg, rgba(76, 8, 13, .48), rgba(20, 7, 9, .9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .018);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.job-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 32, 41, .52);
  background:
    linear-gradient(135deg, rgba(88, 9, 15, .56), rgba(22, 7, 9, .94));
}

.job-card-heading {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.job-card-heading strong {
  margin: 1px 0 0;
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(23px, 2.8vw, 31px);
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.position-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #a9aaa6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.position-state::before {
  content: '';
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #b83a42;
  box-shadow: 0 0 8px rgba(184, 58, 66, .28);
}

.position-state.is-available::before {
  background: #4fc978;
  box-shadow: 0 0 9px rgba(79, 201, 120, .38);
}

.job-card-meta {
  color: #9b9b97;
  font-size: 12px;
  line-height: 1.35;
}

.job-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 132px;
  padding: 10px 14px;
  border: 1px solid rgba(214, 32, 41, .48);
  background: rgba(184, 23, 31, .13);
  color: #f5f5f2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.job-card-link::after {
  content: '→';
  font-size: 13px;
  transition: transform .2s ease;
}

.job-card-link:hover {
  background: rgba(184, 23, 31, .34);
  border-color: rgba(214, 32, 41, .82);
}

.job-card-link:hover::after {
  transform: translateX(3px);
}

.job-card.is-closed {
  opacity: .48;
  filter: grayscale(.28) saturate(.55);
  border-color: rgba(255, 255, 255, .09);
  background: #090909;
}

.job-card.is-closed:hover {
  transform: none;
  border-color: rgba(255, 255, 255, .09);
  background: #090909;
}

.job-card.is-closed .job-card-link {
  pointer-events: none;
  cursor: default;
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .035);
  color: #777;
}

.careers-open-note {
  max-width: 820px;
  margin-top: 34px;
}

@media (max-width: 680px) {
  .jobs-list {
    max-width: none;
  }

  .job-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    padding: 18px;
  }

  .job-card-link {
    width: 100%;
  }
}
