.cf-carousel-window {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.cf-carousel-window ul {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  left: 0;
  bottom: 0;
  top: 0;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease;
}

.cf-carousel-window li {
  width: 33.333%;
  height: 100%;
  flex-shrink: 0;
  flex-grow: 0;
}

.cf-carousel-window li a {
  width: 100%;
  height: 100%;
  display: block;
}

.cf-carousel-window li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel controls: arrow navigation over carousel area */
.cf-carousel {
  position: relative;
}

.carousel-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 2.5em;
  height: 200px;
  margin: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.carousel-controls button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-controls .carousel-arrow {
  display: block;
}

.carousel-button-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

