#yogesh-job-listings {
  padding-inline:4vw;
  font-family: Arial, sans-serif;
  margin-bottom: 60px;
  background-color:#ffffff00;
}

#yogesh-job-listings .container {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#yogesh-job-listings .title {
    margin-top: 42px;
    text-align: center;
    font-size: 39px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

#yogesh-job-listings .job-card {
  position: relative;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

#yogesh-job-listings .job-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
  border-radius: 1px;
}

#yogesh-job-listings .job-card .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#yogesh-job-listings .job-card h3 {
  font-size: 24px;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

#yogesh-job-listings .job-card h3::before {
  content: "\2666";
  color: #8a2be2;
  font-size: 18px;
}

#yogesh-job-listings .details {
  font-size: 18px;
  color: #666;
}

#yogesh-job-listings .apply-btn {
  padding: 14px 24px;
      width: 175px;
  font-size: 14px;
  color: #fff;
  background-color: #d9c640;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#yogesh-job-listings .apply-btn span {
  font-size: 16px;
  transition: transform 0.2s ease;
}

#yogesh-job-listings .apply-btn:hover {
  background-color: #e89e33;
}

#yogesh-job-listings .apply-btn:hover span {
  transform: translateX(5px);
}