.gtv-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.gtv-stats-item {
  position: relative;
  width: 100%;
  max-width: 300px;
  background: #fff;
  border: 2px solid #6cb2eb; /* Light blue border */
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px; /* Space for the circle */
  margin-top: 40px; /* Space for the circle popping out */
}

.gtv-stats-circle {
  position: absolute;
  top: -40px;
  width: 80px;
  height: 80px;
  background-color: #6cb2eb; /* Light blue circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gtv-stats-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gtv-stats-title {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin: 0;
/*   text-transform: lowercase; /* As seen in image */ */
}

.gtv-stats-image {
  width: 100%;
  height: 150px; /* Fixed height for consistency */
  overflow: hidden;
  margin-top: auto; /* Push to bottom */
}

.gtv-stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 767px) {
  .gtv-stats-grid {
    gap: 50px; /* More space between items vertically */
  }
}
