/* Career Page Job Grid */
.bharti-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px auto;         /* ✅ Centered */
  max-width: 800px;          /* ✅ Limit width */
  font-size: 14px;           /* ✅ Base font size */
  padding: 0 15px;           /* ✅ Spacing on smaller screens */
}

.job-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.2s;
  font-size: 16px;           /* ✅ Job card body text */
}
.job-card:hover { transform: translateY(-5px); }

.job-title {
  font-size: 18px;           /* ✅ Bigger than body text */
  color: #075985;
  margin-bottom: 10px;
  font-weight: 600;
}

.job-info {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.job-info li {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.5;
}

.job-view {
  display: inline-block;
  background: #075985;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}
.job-view:hover { background: #064663; }

/* Single Job Page */
.job-single {
  max-width: 800px;          /* ✅ Restrict width */
  margin: 0 auto;            /* ✅ Centered */
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.job-header {
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.job-header .job-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: #222;
}

.job-header .job-meta {
  font-size: 14px;
  color: #555;
}

.job-body {
  margin-top: 20px;
}

.job-description {
  margin-bottom: 20px;
}

.job-details {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-details li {
  margin-bottom: 8px;
  font-size: 14px;
}
