/**
 * Global push style
 */
.push-secondary {
  margin: auto;
}
.push-secondary__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.push-secondary__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.push-secondary__title {
  font-size: var(--title-size-m);
  font-weight: var(--title-weight);
  line-height: var(--title-line-height);
}
.push-secondary__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.push-secondary__text {
  font-weight: 300;
  color: var(--color-neutral--8);
  font-size: var(--content-size-m);
  line-height: 150%;
}
.push-secondary__text p {
  margin: 0;
}
@media all and (min-width: 640px) {
  .push-secondary {
    padding: 1rem;
  }
}
@media all and (min-width: 1000px) {
  .push-secondary {
    max-width: 448px;
    padding: 2rem;
  }
}
