/* Career Single Post Page */
.single-career-content {
  padding: 60px 0 80px 0;
  background: #fff;
}
.single-career-content .container {
  max-width: 1200px;
  margin: 0 auto;
}
.career-header {
  border-bottom: 1.5px solid #e3e3e3;
  padding-bottom: 32px;
  margin-bottom: 48px;
}
.career-header .career-label {
  color: #a67d49;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 10px;
}
.career-header .career-title {
  font-family: 'Taviraj', serif;
  font-size: 2.2rem;
  color: #3853a4;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.career-content-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.career-main-content {
  flex: 1 1 0;
  min-width: 0;
}
.career-body {
  font-size: 18px;
  color: #222;
  line-height: 1.7;
}
.career-back-btn-wrapper {
  margin-top: 48px;
}
.career-back-btn {
  display: inline-block;
  background: #3853a4;
  color: #fff;
  font-family: 'RedHatDisplay', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 36px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
  box-shadow: none;
  border: none;
}
.career-back-btn:hover {
  background: #477aff;
  color: #fff;
}
.career-sidebar {
  flex: 0 0 340px;
  min-width: 280px;
  max-width: 340px;
  position: sticky;
  top: 40px;
}
.general-questions-box {
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(56, 102, 223, 0.04);
  padding: 32px 24px;
  text-align: center;
}
.general-questions-box h3 {
  color: #3853a4;
  font-size: 20px;
  font-family: 'RedHatDisplay', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
.general-questions-box p {
  color: #222;
  font-size: 16px;
  margin-bottom: 22px;
}
.general-questions-btn {
  display: inline-block;
  background: #3853a4;
  color: #fff;
  font-family: 'RedHatDisplay', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 28px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
  box-shadow: none;
  border: none;
}
.general-questions-btn:hover {
  background: #477aff;
  color: #fff;
}
@media (max-width: 991px) {
  .career-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .career-sidebar {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }
  .career-header {
    padding-bottom: 20px;
    margin-bottom: 32px;
  }
  .career-header .career-title {
    font-size: 1.5rem;
  }
  .career-back-btn-wrapper {
    margin-top: 32px;
  }
} 