.job-list-module {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.job-list-module.no-vacancies {
  border: 1px dotted #ccc;
  padding: 1rem 1.4rem;
  border-radius: 1.2em;
}
.job-list-module.no-vacancies p:last-child {
  margin: 0;
}

.job-listing {
  width: 100%;
  max-width: calc(50% - 15px);
  padding: 1.8em;
  margin-bottom: 30px;
  background-color: #f1f1f1;
  background-image: url("https://www.managers.org.uk/wp-content/uploads/2020/08/CTA-bg-arrow-SMALL-magenta.png");
  background-position: calc(100% + 20px) -20px;
  background-size: auto 170px;
  background-repeat: no-repeat;
  border-radius: 1.2em;
  transition: background-color 0.35s ease;
}
@media screen and (max-width: 991px) {
  .job-listing {
    max-width: 100%;
  }
}
.job-listing:hover {
  background-color: rgba(209, 0, 116, 0.15);
}
.job-listing:link, .job-listing:visited {
  text-decoration: none;
  color: #222;
}
.job-listing:hover, .job-listing:active {
  text-decoration: none;
  color: #222;
}
.job-listing .title,
.job-listing .meta {
  display: flex;
  align-items: center;
}
.job-listing .title {
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .job-listing .title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.job-listing .title h2 {
  margin: 0;
  color: #d10074;
  flex-grow: 2;
}
.job-listing .title .salary {
  white-space: nowrap;
  font-size: 1.05em;
  font-weight: bold;
  color: #444;
  line-height: 1.8rem;
}
@media screen and (max-width: 991px) {
  .job-listing .title * ~ * {
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 992px) {
  .job-listing .title * ~ * {
    margin-left: 0.5em;
  }
}
.job-listing .title span {
  font-size: 0.75em;
  flex-grow: 2;
}
.job-listing .meta {
  font-weight: bold;
  color: #666;
}
.job-listing .meta * + * {
  margin-left: 0.4em;
}
.job-listing .meta * + *::before {
  content: " - ";
  color: #999;
  font-weight: normal;
}
.job-listing .meta + .description {
  margin-top: 0.5em;
}
.job-listing .description p:last-child {
  margin: 0;
}
.job-listing a.btn {
  margin-top: 1em;
}
