.stats-band {
  background-image: url("/assets/map_bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #111;
  color: var(--color-white);
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.stats-band .grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.stats-band .map img {
  width: 100%;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
}

.stats-band .stats {
  display: flex;
  flex-direction: column;
}

.stats-band .stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: nowrap;
}

.stats-band .stat-row2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 8px;
}

.stats-band .label {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.5rem;
}

.stats-band .label-wide {
  color: var(--color-secondary);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: left;
}

.stats-band .label-right {
  color: var(--color-secondary);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: right;
}

.stats-band .number-a {
  color: var(--color-white);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.stats-band .number-b {
  color: var(--color-white);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.stats-band .divider {
  border: none;
  border-top: 4.7px solid var(--color-secondary);
  width: 92%;
  margin: 15px auto;
}

.stats-band .desc {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .stats-band .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .stats-band {
    padding: 40px 0;
    min-height: auto;
  }

  .stats-band .label,
  .stats-band .label-wide,
  .stats-band .label-right {
    font-size: 1.3rem;
  }

  .stats-band .number-a {
    font-size: 3rem;
  }

  .stats-band .number-b {
    font-size: 2.8rem;
  }

  .stats-band .desc {
    font-size: 14px;
  }

  .stats-band .divider {
    width: 71%;
    margin: 0 auto;
  }

  .stats-band .map img {
    height: 319px;
  }
}
