.carousel-wrapper {
  flex-shrink: 1;
  flex-grow: 1;
  width: 0;
  min-width: 60px;
}
.single .nowrap > .carousel-wrapper .carousel {
  aspect-ratio: 8/5;
  overflow: hidden;
}
.single .nowrap > .carousel-wrapper .carousel .carousel-inner {
  height: 100%;
  overflow: hidden;
}
.single .nowrap > .carousel-wrapper .carousel .carousel-item {
  height: 100%;
}
.single .nowrap > .carousel-wrapper .carousel .carousel-item img {
  width: auto;
  height: 100%;
  object-fit: contain; /* cobre o aspecto 4/3 */
  flex-shrink: unset;
  flex-grow: unset;
  min-width: unset;
}
.single .nowrap > .carousel-wrapper .carousel .carousel-item img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre o aspecto 4/3 */
}
.carousel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  font-size: 13px;
  color: var(--cor);
}
.carousel-titulo span {
  display: none;
}
.carousel-titulo span.active {
  display: block;
}
.carousel-controls button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cor);
  font-size: 16px;
  padding: 0 4px;
}
