:root {
  --primary: #b81f1d;
  --light: #ffffff;
  --trans: all 0.3s ease-in-out;
}

.employment-hero-jobs {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-inline: auto;
}

.job-listing {
  padding-bottom: 2rem;
  background: #fff;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: #141414 !important;
}

.job-listing h3 {
  font-size: 1.25rem;
  line-height: 22px;
  margin-bottom: 8px;
  padding: 0;
}

.job-listing span {
  display: block;
  margin-bottom: 5px;
}

.job-listing .btn {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2em;
  padding: 7px 25px;
  border-radius: 0px;
  border: 1px solid var(--primary);
  display: block;
  margin-bottom: 1rem;
  transition: var(--trans);
  color: var(--light);
  background-color: var(--primary);
  font-weight: bold;
}

.job-listing .btn:hover,
.job-listing .btn:focus-within {
  color: var(--primary);
  background-color: var(--light);
  border-color: var(--primary);
}

@media screen and (min-width: 992px) {
  .job-listing {
    flex-direction: row;
  }
}