.badge-section {
  width: 100%;
}
.badge-section.bg-white {
  background-color: #ffffff;
}
.badge-section.bg-red {
  background-color: #e2001a;
}
.badge-section.bg-neutral100 {
  background-color: #f5f5f5;
}
.badge-section__inner {
  width: 100%;
}
.badge-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .badge-section__content {
    gap: 16px;
  }
}
.badge-section__headline {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .badge-section__headline {
    text-align: left;
  }
}
.badge-section__title {
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .badge-section__title {
    text-align: left;
  }
}
.badge-section__title.font-brand {
  font-family: 'EONBrixSans', sans-serif;
  font-style: italic;
  font-weight: 700;
}
.badge-section__title.color-neutral800 {
  color: #3c3c3b;
}
.badge-section__title.color-white {
  color: #ffffff;
}
.badge-section__title.color-red500 {
  color: #e2001a;
}
