.feature-badges {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;

  list-style-type: none;
  margin: 0;
  padding: 0;
}

.feature-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column nowrap;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
  max-width: 110px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .feature-badge {
    font-size: 12px;
  }
}