.lever-jobs-container {
  border-top:  1px solid #ccc;
  margin: 2rem 0;
  padding-top: 2rem;
}

.lever-jobs-container * {
  box-sizing: border-box;
}

.job-posting {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  font-size: 1rem;
  justify-content: space-between;
}

.job-posting:not(:last-child) {
  margin-bottom: 1rem;
}

a.job-posting__title {
  color: #737578;
  margin: 0 1rem 1rem 0;
  text-decoration: none;
}

a.job-posting__title:hover {
  font-size: inherit;
}

a.job-posting__title:hover .job-posting__name {
  color: #579eee;
}

.job-posting__name {
  font: normal 400 1.5em/1.4 Lato;
  margin: 0 0 .5rem;
}

.job-posting__category {
  display: inline-block;
  color: #808080;
  font: normal 700 .75em/1.4 Lato;
  letter-spacing: .083em;
  text-transform: uppercase;
}

.job-posting__category:not(:last-child) {
  margin-right: 1em;
}

a.job-posting__apply__btn {
  display: inline-flex;
  justify-content: center;
  background-color: #0c92f3;
  border-color: #0b8ae6;
  color: #ffffff;
  font: normal 700 .875em/1.4 Lato;
  padding: .357em 1.706em;
  text-transform: uppercase;
  letter-spacing: .143em;
  border-radius: .188rem;
  text-decoration: none;
}

a.job-posting__apply__btn:hover {
  background-color: #0a83da;
}

@media screen and (min-width: 75rem) {
  .job-posting {
    flex-direction: row;
  }
}