.counts-carousel-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #981E20;
  padding: 0 75px;
  position: relative;
  margin-top: -20px;
}
.glide {
  position: relative;
  padding-bottom: 20px;
}
.glide__track {
  overflow: hidden;
}
.glide__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.glide__arrow {
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glide__arrow i {
  color: #fff;
}
.glide__arrow:hover i {
  color: #F15622;
}
.glide__arrow--left {
  margin-left: -48px;
}
.glide__arrow--right {
  margin-right: -48px;
}
.glide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  min-width: 180px;
  max-width: 220px;
  margin: 0 1rem;
}
.carousel-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.carousel-count {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.carousel-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}
.glide__bullets {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.glide__bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  margin: 0 6px;
  border: none;
  transition: opacity 0.2s;
}
.glide__bullet--active {
  opacity: 1;
  background: #F15622;
}
@media (max-width: 900px) {
  .carousel-item {
    min-width: 140px;
    max-width: 180px;
  }
  .carousel-icon {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 600px) {
  .carousel-item {
    min-width: 100px;
    max-width: 120px;
  }
  .carousel-icon {
    width: 50px !important;
    height: 50px !important;
  }
  .carousel-label {
    font-size: 16px !important;
  }
} 