.job-list-item {
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.job-list-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.job-list-item__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.job-list-item__company {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
}

.job-list-item__location {
  font-size: 0.875rem;
  color: #9ca3af;
}

.job-list-item__location::before {
  content: "•";
  margin-right: 0.5rem;
}

.job-list-item__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.job-list-item__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
}

.job-list-item__badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #3b82f6;
  background-color: #eff6ff;
  border-radius: 12px;
  white-space: nowrap;
}

.job-list-item__salary {
  margin-top: 0.75rem;
}

.job-list-item__salary-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
}

.job-list-item__footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.job-list-item__date {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .job-list-item {
    padding: 0.875rem 1rem;
  }

  .job-list-item__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .job-list-item__location::before {
    content: "";
    margin-right: 0;
  }

  .job-list-item__title {
    font-size: 1.125rem;
  }
}

