/*
Copyright Elias Bentz - elias@bentz.dev
Kita Marienkäfer 2025
*/

.job-container {
  max-width: 800px;
  margin: 0 auto;
  min-height: 75vh;
}

.job-card {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-left: 5px solid #e53935;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.job-card:first-child {
    margin-top: 20px;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.job-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #111827;
}

.job-meta {
  display: flex;
  gap: 20px;
  color: #4b5563;
  margin-bottom: 16px;
  align-items: center;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-description {
  color: #374151;
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.job-apply-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.job-apply-button:hover {
  background-color: #1d4ed8;
}
