.latest-job-section {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  overflow: hidden;
  margin: 30px 0px;
}
.lj-left {
  flex: 0 0 55%;
  padding: 2rem 0 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.lj-card {
  background: #ffffffe4;
  border-radius: 14px 0 0 14px;
  border: 1px solid #ddeedd;
  margin-right: -100px;
  box-shadow: 4px 0 24px rgba(0,0,0,0.08);
}
.lj-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.lj-card-header h2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--qj-primary-dark);
}
.lj-view-all {
  font-size: 11px;
  font-weight: 600;
  color: var(--qj-primary);
  text-decoration: none;
  border: 1px solid var(--qj-primary);
  padding: 3px 10px;
  border-radius: 20px;
}
.lj-job-item {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  gap: 9px;
  padding: 7px 10px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.15s;
}
.lj-job-item:last-child {
  border-bottom: none;
}
.lj-job-item:hover {
  background: #f6fff0;
}
.lj-job-info{
  display: flex;
  align-items: center;
}
.lj-job-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--qj-primary);
  margin-bottom: 0px;
}
.lj-job-info h6, .lj-arrow span {
  font-size: 12px;
  color: var(--qj-primary);
  margin-bottom: 0px;
}
.lj-arrow i{
  color: var(--qj-primary);
  font-size: 12px;
  display: none;
}
.lj-job-item:hover .lj-arrow i{
  display: inline;
}
.lj-right {
  flex: 1;
  overflow: hidden;
}
.lj-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width:768px) {
  .lj-left {
    flex: 0 0 65%;
    padding: 2rem 0 2rem 1rem;
  }
}

@media (max-width:600px) {
  .lj-left {
    flex: 0 0 30%;
    padding: 2rem 0 2rem 1rem;
  }
  .lj-job-item{
    flex-direction: column;
  }
  .lj-card {
    margin-right: -250px;
  }
}