.entry-caption {
  margin-top: 20px;
}
.entry-caption p {
  margin-bottom: 0px;
}
form {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0 40px;
  padding-left: 0;
      align-items: center;
}
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: white;
  background: #072b31;
  border-color: #072b31;
  padding: 12px 48px 12.5px 16px;
  border: solid 1px #7d7d7d;
  text-overflow: ellipsis;
  background-image: url(../../assets/svg/chevron-down-solid-white.svg);
  background-repeat: no-repeat, repeat;
  background-position: right 18px top 50%, 0 0;
  background-size: 0.95em auto, 100%;
  border-radius: 40px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  width: auto;
  max-width: 100%;
}
form select:focus {
  color: white;
  outline: none;
}
form select:has(> option[value=""]:checked) {
  background: white;
  background-repeat: no-repeat, repeat;
  background-position: right 18px top 50%, 0 0;
  background-size: 0.95em auto, 100%;
  background-image: url(../../assets/svg/chevron-down-solid.svg);
  color: #072b31;
}
form .reset {
  border-radius: 0px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 5px 0px;
  text-transform: none;
  color: #4d4d4d;
  background: white;
  border-bottom: solid 1px #4d4d4d;
}
form .reset:focus,
form .reset:hover {
  box-shadow: none;
}
.try-courses article {
  margin: 1rem auto;
  margin-bottom: 3rem;
  padding: 2.5rem;
  box-shadow: 0px 1px 8px #d6d6d6;
}
.try-courses article h2 {
  margin-bottom: 30px;
}
.try-courses article p {
  font-size: 15px;
}
.try-courses article .course-tag {
  text-transform: uppercase;
  font-family: "Asap Condensed";
  margin-bottom: 0;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.try-courses article .course-details {
  display: flex;
  column-gap: 30px;
  row-gap: 5px;
  font-size: 15px;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: stretch;
  margin: 0;
  padding: 0;
}
.try-courses article .course-details .category {
  width: 100%;
}
.try-courses article .learn-more {
  color: #fff;
  font-family: Asap Condensed, sans-serif;
  font-size: 18.7px;
  font-weight: 600;
  padding: 0.95em 1.7em;
  text-transform: uppercase;
  background-color: #4ea482;
  display: inline-block;
  line-height: normal;
  margin-top: 30px;
}
.try-courses {
      min-height: 300px;
}
@media (min-width: 800px) {
  .try-courses {
      min-height: calc(100vh - 500px);
}
}