.section-job {
  margin-top: 1.25rem;
}
.section-job__container {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
.section-job__title {
  color: #c19a6b;
  font-size: 1.5rem;
  font-weight: 400;
}
.section-job__table-wrapper {
  padding: 0 3.125rem;
}
@media (max-width: 1280px) {
  .section-job__table-wrapper {
    padding: 0;
  }
}
.section-job__table {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .section-job__table {
    display: none;
  }
}
.section-job__table-row {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}
.section-job__table-cell {
  padding: 0;
  position: relative;
  font-size: 0.875rem;
  flex: 1;
}
.section-job__table-cell--title {
  font-size: 1.125rem;
  font-weight: 600;
}
.section-job__table-cell:not(:first-child) {
  padding-left: 1.125rem;
}
.section-job__table-cell:not(:first-child)::after {
  content: "";
  height: 1.875rem;
  width: 1px;
  background-color: #e8e8e8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.section-job__table-cell:last-child a {
  margin-left: auto;
  font-size: 14px;
}
.section-job__table-value {
  font-size: 0.875rem;
}
.section-job__table-heading {
  font-size: 0.75rem;
  color: #c19a6b;
  text-transform: uppercase;
}
.section-job__mobile {
  display: none;
  flex-direction: column;
  gap: 2.125rem;
}
@media (max-width: 992px) {
  .section-job__mobile {
    display: flex;
  }
}
.section-job__mobile a {
  width: 100%;
}
.section-job__mobile-job {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.section-job__job-info {
  width: 100%;
  display: flex;
  gap: 1rem 1.875rem;
  flex-wrap: wrap;
}
.section-job__job-info-item {
  display: flex;
  gap: 0.625rem;
  align-items: end;
}
