.job-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  max-width: 100%;
  margin-bottom: 20px;
}

.job-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.job-text {
  flex: 1;
}

.job-text h3 {
  margin: 0;
  color: #23559B;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.job-text p {
  color: #383939;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-date {
  color: #134a9f;
  font-weight: normal;
  display: inline-block;
  font-size: 14px;
}

.fellowship-date {
  padding-right: 10px;
}

.fellowship-department {
  padding-inline: 10px;
  border-left: 2px solid #23559b5f;
  border-right: 2px solid #23559b5f;
}

.fellowship-department-fellowship {
  padding-left: 10px;
}

.job-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.closing-on {
    background-color: #DE24241C;
    color: #000000;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    margin-right: 5px;
}