.staff-tiers {
  display: grid;
  gap: 48px;
}

.staff-tier {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.staff-tier:last-child .staff-group:only-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 14px);
}

.staff-tier .staff-group {
  margin: 0;
}

.staff-tier .staff-grid {
  grid-template-columns: 1fr;
}

.staff-recruiting {
  display: flex !important;
  min-height: 170px !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-style: dashed !important;
  text-decoration: none;
}

.staff-recruit-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  place-items: center;
  border: 2px dashed var(--role-end);
  border-radius: 16px;
  background: color-mix(in srgb, var(--role-end) 8%, transparent);
  color: var(--role-end);
  font-size: 2rem;
  font-weight: 500;
}

.staff-recruit-title {
  color: #e2eafb;
  font-weight: 850;
}

.staff-recruit-sub {
  margin-top: 5px;
  color: var(--role-end);
  font-size: .75rem;
  font-weight: 750;
}

@media (max-width: 700px) {
  .staff-tier {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .staff-tier:last-child .staff-group:only-child {
    grid-column: auto;
    max-width: none;
  }

  .staff-tiers {
    gap: 38px;
  }
}
