/* --- Header Section --- */
.job-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/assets/images/gedung_sinsen.png");
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  color: white;
  text-align: center;
}

/* --- Search Box --- */
.search-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -50px;
  /* Overlap effect */
  position: relative;
  z-index: 10;
}

/* --- Job Card --- */
.job-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  transition: 0.3s;
  height: 100%;
  border-top: 4px solid transparent;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top-color: var(--honda-red);
}

.job-title {
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.job-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 1rem;
}

.job-meta i {
  width: 20px;
  text-align: center;
  color: var(--honda-red);
  margin-right: 5px;
}

.badge-type {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 4px;
  background: #ffebeb;
  color: var(--honda-red);
  font-weight: 600;
}

#modalJobDesc p {
  margin: 0;
}

#modalJobDesc ul #modalJobDesc ol {
  margin: 0;
}
