.agc-wrap{
  width: 100%;
  height: 100%;
  display: flex;          /* allow inner grid to take full available height */
}

.agc-grid{
  display: grid;
  width: 100%;
  flex: 1;                /* fill wrap height */
  align-items: stretch;   /* stretch items */
  align-content: center;  /* center the whole row content vertically */
}

.agc-item{
  display: flex;
  flex-direction: column;
  justify-content: center; /* center number+label block vertically */
  height: 100%;
}

.agc-number{
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  display: inline-block;
}

.agc-number.agc-gradient{
  background-image: linear-gradient(90deg, #58E2C2, #7CFF6B);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.agc-label{
  font-size: 16px;
  line-height: 1.2;
  opacity: 0.95;
  min-height: 2.4em; /* reserve up to 2 lines so all numbers align */
  display: block;
}
