.featured-topic-buttons {
  display: flex;
  column-gap: 32px;
  row-gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.featured-topic-buttons .filter-button {
  text-align: center;
  background-color: #00677F;
  color: #fff;
  border-radius: 8px;
  padding: 50px 20px;
  cursor: pointer;
  flex-grow: 1;
  flex-basis: 20%;
  max-width: 208px;
  background-size: cover;
  background-position: center center;
  position: relative;
  min-width: 200px;
  overflow-wrap: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-topic-buttons .filter-button .filter-button-text {
  position: relative;
  z-index: 5;
  font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
  font-size: 18px;
}
.featured-topic-buttons .filter-button:hover::after {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.35);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  z-index: 4;
}
