.module.job-postings > .content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 50px;
}
.module.job-postings .search-bar {
  grid-column: span 2;
  background: #FFF url(../assets/search.svg) no-repeat left 10px center;
}
.module.job-postings .search-bar input {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 3px solid #87BF40;
  font-size: 32px;
  font-weight: bold;
  color: #15214B;
  text-transform: none;
  padding: 10px 10px 10px 50px;
  outline: 0;
  background: transparent;
  font-family: "rm_pro-bold", sans-serif!important;
}

.module.job-postings .search-bar input::placeholder {
  text-transform: none;
  font-size: 32px;
  color: #15214B;
  font-family: "rm_pro-bold", sans-serif!important;
}

.module.job-postings .search-bar input::-webkit-input-placeholder {
  text-transform: none;
  font-size: 32px;
  color: #15214B;
  font-family: "rm_pro-bold", sans-serif!important;
}

.module.job-postings .search-bar input:-ms-input-placeholder {
  text-transform: none;
  font-size: 32px;
  color: #15214B;
  font-family: "rm_pro-bold", sans-serif!important;
}

.module.job-postings .filters ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.module.job-postings .filters > ul > li {
  border-bottom: 3px solid #87BF40;
  padding: 25px 0;
}

.module.job-postings .filters > ul > li > button + ul {
  margin-top: 15px;
}

.module.job-postings .filters > ul > li > button + ul > li:not(:last-child) {
  margin-bottom: 10px;
}

.module.job-postings .filters > ul > li > button + ul > li label {
  cursor: pointer
}

.module.job-postings .filters > ul > li > button + ul > li label input {
  margin-left: 0;
  margin-right: 8px
}

.module.job-postings ul.accordion {
  margin: 0;
  padding: 0;
  list-style-type: none
}

.module.job-postings ul.accordion > li > button {
  border: 0;
  display: block;
  width: 100%;
  cursor: pointer;
  background: url(../assets/caret-down.svg) no-repeat right center;
  font-size: 24px;
  font-weight: bold;
  color: #15214B;
  outline: 0;
  padding: 0;
  text-align: left;
}

.module.job-postings ul.accordion > li > button + * {
  display: none
}

.module.job-postings ul.accordion > li > button[aria-expanded="true"] {
  background-image: url(../assets/caret-up.svg);
}

.module.job-postings ul.accordion > li > button[aria-expanded="true"] + * {
  display: block;
}

.module.job-postings .results > ul > li {
  padding-bottom: 25px;
  margin-bottom: 15px;
  border-bottom: 3px solid #87BF40;
}

.module.job-postings .results > ul > li > a {
  text-decoration: none;
}

.module.job-postings .results > ul > li > a:hover h3 {
  text-decoration: underline;
}

.module.job-postings .results > ul > li > a h3 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.module.job-postings .results > ul > li > a .description,
.module.job-postings .results > ul > li > a .description p {
  font-size: 24px;
  color: #15214B;
}

.module.job-postings .pagination {
  grid-column: span 2;
  justify-content: center;
}

.module.job-postings .pagination ul {
  display: flex;
  gap: 15px;
}

.module.job-postings .pagination ul .disabled {
  opacity: .5;
  pointer-events: none;
}

.module.job-postings.style-compact > .content {
  grid-template-columns: 1fr;
}

.module.job-postings.style-compact > .content > .title {
  margin-bottom: 0
}

.module.job-postings.style-compact > .content .title + .results ul li:first-child a h3 {
  margin-top: 0;
}

.module.job-postings:not(.style-compact) {

}

@media all and (max-width: 768px) {
  .module.job-postings .content {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .module.job-postings .search-bar, .module.job-postings .pagination {
    grid-column: unset
  }
}
