.hex-carousel {
  --hexW: 250px;
  --hexH: 250px;
  --gap: 0px;
  --viewH: calc(var(--hexH) * 2 + var(--gap));
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
  background: transparent;
}
.hex-carousel::before,
.hex-carousel::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.15);
  z-index: 5;
}
.hex-carousel::before { top: 0; }
.hex-carousel::after  { bottom: 0; }

.hex-viewport {
  height: var(--viewH);
  width: 100%;
  overflow: hidden;
}
.hex-track {
  display: flex;
  align-items: flex-start;
  will-change: transform;
}
.hex-col {
  width: var(--hexW);
  height: var(--viewH);
  position: relative;
  flex-shrink: 0;
}
.hex-col + .hex-col {
  margin-left: calc(var(--gap) - (var(--hexW) * 0.1667));
}
.hex {
  width: var(--hexW);
  height: var(--hexH);
  position: absolute;
  left: 0;
  overflow: hidden;
  background: #000;
  clip-path: polygon(
    25% 6.7%, 75% 6.7%, 100% 50%,
    75% 93.3%, 25% 93.3%, 0% 50%
  );
}
.hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hex.half.top {
  clip-path: polygon(0% 50%,100% 50%,75% 93.3%,25% 93.3%);
}
.hex.half.bottom {
  clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,0% 50%);
}
.hex-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: rgba(0,0,0,0.45);
}
.hex-col.even .full-1 { top: 0; }
.hex-col.even .full-2 { top: calc(var(--hexH) + var(--gap)); }
.hex-col.odd .half-top { top: calc(var(--hexH) * -0.5); }
.hex-col.odd .full-mid { top: calc(var(--hexH) * 0.5); }
.hex-col.odd .half-bot { top: calc(var(--hexH) * 1.5); }

.hex-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 80px;
  font-size: 48px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: 0;
  cursor: pointer;
}
.hex-arrow.left  { left: 0; }
.hex-arrow.right { right: 0; }