.wide-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 40px;
}

#results a {
  text-decoration: none;
}

#results ul.flex-container {
  list-style-type: none;
}

/* Posts */
#results {
  display: grid;
  grid-template-columns: auto;
  gap: 4rem;
  padding: 0 1rem;
  justify-items: left;
}

.post {
  padding-bottom: 1rem;
  box-shadow: 0 1px 20px 0 rgb(0 0 0 / 20%);
  position: relative;
  width: 100%;
}

.post .image {
  background-position: center;
  background-size: cover;
  height: calc(1080px / 3.25 - 2rem);
  margin: 1.5rem;
}

.post .body {
  text-align: center;
}

.post .category {
  color: #b4975b;
  text-transform: uppercase;
  font-size: 15px;
  margin: 1.5rem 0;
}

.post .title {
  margin: 1.5rem 0;
}

.post .title a {
  font-size: 25px;
  font-weight: 700;
  color: black;
}

.post .summary {
  font-size: 15px;
  margin-bottom: 5rem;
  color: #686868;
  line-height: 25px;
  padding: 0 1rem;
}

.post a.keep_reading {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
}

.post .date {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  color: darkgray;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}

.flex-item {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-basis: 98%;
  margin-bottom: 15px;
}

.flex-option-1 {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.flex-option-2 {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.flex-option-1,
.flex-option-2 {
  flex-basis: 98%;
}

/* Bigger than 550 */
@media (min-width: 550px) {
  .flex-item {
    flex-basis: 48%;
  }
}

/* Bigger than 750 */
@media (min-width: 750px) {
  .flex-item {
    flex-basis: 32%;
  }
  .flex-option-1,
  .flex-option-2 {
    flex-basis: 48%;
  }
}

/* Bigger than 1000 */
@media (min-width: 1000px) {
  .flex-item {
    flex-basis: 24%;
  }
}

@media (min-width: 900px) {
  #results {
    grid-template-columns: auto auto;
  }
}

@media (min-width: 1280px) {
  #results {
    grid-template-columns: auto auto auto;
  }
}

.program-search-area {
  display: block;
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
}

/*drop select */
input {
  font-family: poppins;
  font-size: 1em;
}

select {
  font-size: 1em;
  padding: 40px;
  box-sizing: border-box;
  font-family: poppins;
}

select option:checked,
option:hover {
  color: white;
  background: #daaf48 repeat !important; /* url('data:image/gif;base64,R0lGO...') */
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* "Nothing Found" Header */
.nothing-found {
  display: flex;
  width: 100%;
}

.nothing-found h1 {
  margin: auto;
  font-family: poppins;
}

/* Mobile Responsive Styles */
@media (max-width: 500px) {
  .wide-container {
    padding: 0px 20px;
  }

  .post .image {
    height: 20rem;
  }
}
