.Job {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 6px;
  border-bottom: 1px solid #d2d7de;
  text-decoration: none;
  background-color: #ffffff;
  color: inherit;
  transition: background-color 0.2s ease;
}.Job:last-child {
    border-bottom: none;
  }.Job:hover {
    background-color: #f9fafb;
  }--hidden.Job {
    display: none;
  }

.neos-backend .Job {
  margin-bottom: 20px;
}

.Job-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  grid-gap: 20px;
  gap: 20px;
  align-items: start;
}

.Job-column {
  display: flex;
  gap: 8px;
  align-items: center;
}

.Job-columnLabel {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.Job-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #111827;
}

.Job-location,
.Job-company {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.Job-location {
  color: #374151;
}

.Job-content {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

.Job-location-icon,
.Job-company-icon {
  display: none;
}

@media (max-width: 768px) {
  .Job {
    padding: 14px 6px;
  }

  .Job-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

    @media screen and (min-width: 769px) {

  .Job-columns {
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 20px;
  }
    }

  .Job-location-icon,
  .Job-company-icon {
    display: block;
  }

    .Job-location-icon svg, .Job-company-icon svg {
      width: 16px;
      color: var(--clr-blue);
      fill: currentColor;
    }

  .Job-columnLabel {
    font-size: 0.6875rem;
  }

  .Job-title {
    font-size: 0.9375rem;
    font-weight: 600;
  }

  .Job-location,
  .Job-company {
    font-size: 0.8125rem;
  }
}
