

.search-and-filters {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-input {
  max-width: 23em;
  width: 28em;
}

.filter--type {
  width: 12em;
  margin-right: 3em;
}

.filter--format {
  width: 7em;
  margin-right: 3em;
}

.filter--date-range {
  width: 15em;
}


@media screen and (max-width:1014px) {
  .search-and-filters {
    display: block;
  }

  .filters {
    justify-content: space-around;
  }

  .search-input {
    min-width: 100%;
    margin-bottom: var(--line-height-em);
  }
}

@media screen and (max-width:539px) {
  .filters {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .filter {
    margin-bottom: var(--line-height-em);
  }

  .drp__selection-wrapper .myp__dropdown {
    left: 0;
  }
}


.results {
  margin-top: calc(var(--line-height-em)*3);
}

/* ------- */
