.carousel-module-wrapper {margin: 0 20px;}
.hs-carousel { position: relative; width: 100%; }
.hs-carousel__viewport { overflow: hidden; width: 100%; }
.hs-carousel__track {
  display: flex;
  will-change: transform;
  transition: transform 400ms ease;
  touch-action: pan-y;
}

.hs-carousel__slide { flex: 0 0 auto; }
.hs-carousel__img { display: block; width: 100%; height: auto; }

.hs-carousel__controls {
  position: absolute;
  width: calc(100% + 80px);
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: none;
  padding: 0;
}

.hs-carousel__btn {
  pointer-events: auto;
  border: 0;
  padding: 0;
  background-color: #E26B00;
  transition: background 0.3s;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 999px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-carousel__btn svg {
  display: block;
  width: 20px;
  height: 20px;
}

.hs-carousel__btn:hover {
  background-color: #C15C01;
}

.hs-carousel__dots {
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 12px;
  padding; 0;
}
.hs-carousel__dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  padding: 0;
}

.hs-carousel__dot[aria-current="true"] { background: rgba(0,0,0,0.75); }

@media (prefers-reduced-motion: reduce) {
  .hs-carousel__track { transition: none; }
}

/* --- Aspect ratio: tidy row --- */
.hs-carousel__slide {
  /* optional spacing between slides */
  padding: 0;
}

/* Wrap the image area in a fixed ratio box */
.hs-carousel__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* cover keeps row tidy */
  object-position: center;
}

/* Give each slide a fixed aspect ratio */
.hs-carousel__slide {
  aspect-ratio: 16 / 9;       /* change to 1/1, 4/3, etc. */
  overflow: hidden;
  border-radius: 8px;         /* optional */
}