.stats {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

.stats-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 30px;
  border-radius: 16px 16px 0px 0px;
  overflow: hidden;

  background: linear-gradient(135deg, var(--blue-3), var(--blue-5));
  color: #fff;

  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.stat {
  flex: 1;
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 2px;

  background: rgba(255, 255, 255, 0.4);
  transform: rotate(25deg);
}

.value {
  font-size: 22px;
  font-weight: 600;
}

.label {
  font-size: 13px;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .stats-card {
    flex-wrap: wrap;
    gap: 8px;
  }

  .stat {
    flex: 0 0 48%;
    text-align: center;
  }

  .stat:last-child {
    flex: 0 0 100%;
  }

  .stat:last-child .value,
  .stat:last-child .label {
    text-align: center;
  }

  .stat::after {
    display: none;
  }
}
