.team-page-numbers {
  background-color: var(--color-brand-primary-background);
}
.Medusa-numbers {
  display: flex;
  padding-top: 60px;
  gap: 80px;
}

@media screen and (max-width: 968px) {
  .Medusa-numbers {
    flex-direction: column-reverse;
    padding-top: 40px;
    gap: 40px;
  }
}

.Medusa-numbers-image-wrapper {
  flex: 1;
  display: flex;
  align-items: end;
}
.Medusa-numbers-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.Medusa-numbers-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
  gap: 24px;
}

.Medusa-numbers-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.Medusa-numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 32px;
  justify-content: start;
}

@media screen and (max-width: 968px) {
  .Medusa-numbers-grid {
    justify-content: center;
  }
}

.Medusa-number-value {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-brand-primary);
}

.Medusa-number-label {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-neutral-black);
}
