.tlp-front,
.tlp-front * {
  box-sizing: border-box;
}

.tlp-front {
  width: 100%;
}

.tlp-front__shell {
  margin-left: auto;
  margin-right: auto;
}

.tlp-front__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.2;
}

.tlp-front__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 220px;
  max-width: 100%;
  min-height: 50px;
  margin: var(--tlp-pill-margin, 4px);
  padding: var(--tlp-pill-padding, 6px 18px);
  font-size: var(--tlp-pill-text-size, 24px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .tlp-front__wrapper {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
  }
  .tlp-front__pill {
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
  }
}
