/* Hide original media embed output */
.block-media-embed {
  display: none;
}

/* Carousel container */
.tr-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.tr-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.tr-carousel-slide {
  flex: 0 0 100%;
}

.tr-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Controls */
.tr-carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid #000;
  cursor: pointer;
}

.tr-carousel .prev {
  left: 10px;
}

.tr-carousel .next {
  right: 10px;
}
