.job-listings {
  background-color:transparent;
  padding: 3rem 0;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.job-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.job-header h3 {
  color: #2a7fba;
  font-size: 1.3rem;
  margin: 0;
}

.job-type {
  background: #2a7fba;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.job-details {
  margin: 1rem 0;
}

.job-details p {
  color: #555;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.job-details i {
  color: #2a7fba;
  margin-right: 8px;
  width: 16px;
}

.job-description {
  color: #666;
  line-height: 1.6;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.job-requirements {
  background: #f5f9fc;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.job-requirements strong {
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.job-requirements ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #555;
}

.job-requirements li {
  margin-bottom: 0.3rem;
}

.apply-btn {
  background: #2a7fba;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.apply-btn:hover {
  background: #1e6a9e;
}

.loading, .error {
  text-align: center;
  padding: 3rem;
  color: #555;
  font-size: 1.1rem;
}

.error {
  color: #e74c3c;
}

.no-openings-message {
  background: transparent;
  border-radius: 10px;
  padding: 3rem;
  margin-top: 2rem;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.message-container i {
  font-size: 3.5rem;
  color: #2a7fba;
  margin-bottom: 1.5rem;
}

.message-container h3 {
  color: #2a7fba;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.message-container p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.check-back-options {
  text-align: left;
  max-width: 500px;
  margin: 2rem auto;
  background: #f5f9fc;
  padding: 1.5rem;
  border-radius: 8px;
}

.check-back-options p {
  font-weight: bold;
  margin-bottom: 0.8rem;
  color: #333;
}

.check-back-options ul {
  list-style: none;
  padding-left: 0;
}

.check-back-options li {
  margin-bottom: 0.5rem;
  color: #555;
}

.check-back-options i {
  font-size: 0.9rem;
  color: #2a7fba;
  margin-right: 0.5rem;
}

.employee-benefits {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.employee-benefits h4 {
  color: #2a7fba;
  margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
  .no-openings-message {
    padding: 2rem 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .jobs-grid {
    grid-template-columns: 1fr;
  }
}