.filters {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.filters label {
  margin-right: 15px;
  margin-bottom: 3px;
}

.listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 990px) {
  .listing {
    flex-direction: column;
  }
}
.listing * {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.listing .item {
  width: 50%;
  margin-bottom: 20px;
  position: relative;
  padding: 20px;
}
@media (max-width: 767px) {
  .listing .item {
    padding-bottom: 0;
  }
}
@media (max-width: 990px) {
  .listing .item {
    width: 100%;
  }
}
.listing .item .date-header {
  position: relative;
  width: 100%;
}
.listing .item .date-header span {
  font-size: 16px;
  background-color: white;
  padding-right: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.listing .item .date-header::after {
  position: absolute;
  content: "";
  background-color: #000;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: -1;
}
.listing .item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #9CB33B;
  margin-bottom: 20px;
}
.listing .item p {
  font-size: 16px;
  color: #0F141A;
  line-height: 150%;
}
.listing .item .buttons {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
}
.listing .item .buttons span {
  display: flex;
}
.listing .item .buttons span {
  display: flex;
}
.listing .item .buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  margin-right: 7px;
  margin-bottom: 7px;
}
.listing .item .buttons a.url {
  background-color: #B3D600;
}
.listing .item .buttons a.pdf {
  border: 1px solid #0F141A;
  position: relative;
}
.listing .item .buttons a.video {
  border: 1px solid #0F141A;
  background-color: #222C35;
  color: white;
  position: relative;
}/*# sourceMappingURL=template.css.map */