.job-parent.jobs-section {
  max-width: 1450px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: 'Space Grotesk', sans-serif;
}

.job-parent .job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  flex-wrap: wrap;
  transition: box-shadow 0.3s ease;
  background: linear-gradient(to bottom,#e65c00 0%,#fc8139 50%,#f9a149 100%);
  color: #fff;
}

.job-parent .job-info {
  flex: 1 1 50%;
}

.job-parent .job-info h3,
.job-parent .job-info p {
  margin: 0;
  color: #fff !important;
}

.job-parent .job-info h3 {
  font-size: 22px;
  font-weight: 700;
}

.job-parent .job-info p {
  margin-top: 5px;
  font-size: 16px;
}

.job-parent .job-actions {
  display: flex;
  gap: 15px;
}

.job-parent .details-btn,
.job-parent .apply-btn-v2 {
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

.job-parent .details-btn {
  background-color: white;
  color: hwb(0 28% 72%);
  cursor: pointer !important;
  pointer-events: auto;

}

.job-parent .details-btn.orange {
  background-color: #f44336;
}

.job-parent .apply-btn-v2 {
  background-color: white;
  color: hwb(0 28% 72%);
}

.job-parent .job-details {
  flex-basis: 100%;
  margin-top: 20px;
  background: #fff;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  padding: 0 30px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.4s ease-in-out;
}



.job-card.show-details .job-details {
  padding: 30px;
  opacity: 1;
}

@media (max-width: 768px) {
  .job-parent .job-card {
    flex-direction: column;
    text-align: center;
    margin: 10px;
  }
  .job-parent .job-actions {
    margin-top: 15px;
  }
}

.job-parent .job-description h4,
.job-parent .job-description h5 {
  color: #333;
}

.job-parent .job-description p {
  color: #555;
}

.job-parent .job-description li {
  color: #555;
}

.job-parent .job-description li::before {
  color: #f44336;
}

ul, ol {
  margin: 0;
}