@import "import";

.teamCard {
  @include flex(column, flex-start, flex-start, $gap: spacer(3));
  position: relative;
  width: 100%;
  height: 100%;

  .inner {
    @include flex(column, space-between, flex-start, $gap: spacer(4));
    background-color: color(container);
    color: color(text);
    width: 100%;
    height: 100%;
    padding: spacer(3);
  }

  .name {
    @include type-item(heading-5);
    font-weight: font-weight(bold);
  }
}
