.jobs.list {
  background-color: #f8f8f8;
  margin-top: 0;
  position: relative;
  overflow: visible;
}
.jobs.list form {
  display: flex;
  gap: 2px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .jobs.list form {
    position: absolute;
    right: 0;
    transform: translateY(-5em);
  }
}
.jobs.list form::after {
  content: "down";
  font-family: deister-icons;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1.4em;
  color: var(--color-primary);
}
.jobs.list form select {
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
  font-family: inherit;
  width: 30ch;
  padding: 0.2em 3em 0.2em 1em;
  box-shadow: none;
  box-sizing: border-box;
  transition: all 200ms;
  font-family: Manrope, "Roboto Condensed", arial, sans-serif;
  font-size: 1.2em;
  background: none;
  border: 0;
  color: var(--switch);
  outline: 0;
  border-bottom: 1px solid var(--color-font);
}
.jobs .entries {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5%;
}
.jobs .entries::after {
  content: "";
  margin-right: auto;
}
.jobs .entries > a {
  background: #fff;
  display: block;
  flex: 0 0 30%;
  max-width: 30%;
  margin-bottom: 3%;
  padding-bottom: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #000;
  line-height: 1.6em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .jobs .entries > a {
    min-width: 100%;
  }
}
.jobs .entries > a figure {
  width: 100%;
  border-bottom: 10px solid var(--color-primary);
}
.jobs .entries > a figure img {
  margin: 0;
  width: 100%;
  transition: all 200ms;
}
.jobs .entries > a:hover img {
  transform: scale(1.1);
}
.jobs .entries > a h2,
.jobs .entries > a p {
  margin: 1.5rem 2rem 0;
}
.jobs .entries > a h2 {
  color: var(--color-font);
  line-height: 2.5rem;
}
.jobs .entries > a h2::after {
  content: "";
  display: block;
  width: 130px;
  height: 0;
  top: 5px;
  border: 3px solid var(--color-primary);
  background-color: var(--color-primary);
}
.jobs .entries > a::after {
  content: "right";
  position: absolute;
  font-family: deister-icons;
  right: 0.8em;
  bottom: 1em;
  font-size: 1.8em;
  color: var(--color-primary);
  transition: right 200ms;
}

/*# sourceMappingURL=jobs.css.map */
