.fc_stats_repeater {
  .stat_container {
    display: flex;
    flex-direction: column;

    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--gap-xxs);
      border-bottom: 1px solid var(--color-grey);
      margin-bottom: var(--gap-s);
      padding-bottom: var(--gap-s);

      .stat_number {
        --color-headings: var(--color-green);
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        font-weight: 900;
      }

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  /* backgrounds */
  &.bg_black {
    .stat_container {
      .stat {
        border-bottom: 1px solid var(--color-white);

        .stat_number {
          --color-headings: var(--color-white);
        }
      }
    }
  }

  /* responsive */
  @media (width >= 576px) {
    .stat_container {
      .stat {
        flex-direction: row;
        justify-content: space-between;
        text-align: initial;
      }
    }
  }
}
