.patient-stories__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 0;
}

.patient-stories__filters__title {
  flex: 0 0 100%;
}

.patient-stories__filters__dropdown {
  flex: 1 0 25%;
  font-size: 16px;
  height: 40px;
  background-color: #f2f2f9;
  border: 1px solid #d1d0f1;
  border-radius: 5px;
  color: #552c60;
  cursor: pointer;
  margin: 5px 0;
}

.patient-stories__filters__or {
  flex: 0 1 30px;
  padding: 0 .5em;
  text-transform: uppercase;
}

@media (max-width: 450px) {
  .patient-stories__filters__dropdown {
    flex: 1 0 50%;
  }
}

.patient-stories__content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  box-sizing: border-box;
}

.patient-stories__item {
  display: block;
  flex: 0 0 30%;
  margin: 10px;
  border-radius: 10px;
  background: #fff;
  color: inherit;
  box-sizing: border-box;
  text-align: center;
  color: #000 !important;
  text-decoration: none !important;
}

@media (max-width: 700px) {
  .patient-stories__item {
    flex: 0 0 45%;
  }
}

@media (max-width: 450px) {
  .patient-stories__item {
    flex: 0 0 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.patient-stories__item:hover {
  background: #552c60;
  color: #fff !important;
}

.patient-stories__thumbnail {
  padding: 10px;
}

.patient-stories__thumbnail img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.patient-stories__title {
  padding: 0 10px 10px;
  font-weight: bold;
}