.component-job-card {
  border: 1px solid #596980;
  border-radius: 24px;
  padding: 24px;
  gap: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.component-job-card .job-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31.92px;
  color: #ffffff;
}

.component-job-card .job-tag {
  background-color: #3e4b5e;
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 9999px;
  height: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #ffffff;
  width: fit-content;
}

.component-job-card .job-button {
  background-color: #def0a8;
  color: #151515;
  padding: 16px 24px;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  text-transform: none;
}

.component-job-card .job-button::after {
  content: "";
  background-image: url(/wp-content/uploads/2024/12/Frame-8.svg);
  background-repeat: no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 767px) {
  .component-job-card {
    padding: 20px;
    min-height: 135px;
  }

  .component-job-card .job-title {
    font-size: 20px;
    line-height: 24px;
  }

  .component-job-card .job-button {
    min-width: 90px;
  }

  .component-job-card .job-button::after {
    content: none;
  }
}

/*** LIGHT ***/

.component-job-card.card-light {
  border-color: #dee5ee;
}

.component-job-card.card-light .job-title {
  color: #111725;
}

.component-job-card.card-light .job-tag {
  background-color: #ffffff;
  color: #111725;
}

.component-job-card.card-light .job-button {
  background-color: #07468d;
  color: #ffffff;
}

.component-job-card.card-light .job-button::after {
  background-image: url(/wp-content/uploads/2024/12/Frame-4.svg);
}
