.ptr-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  padding: 60px;
  padding-bottom: 50px;
  user-select: none;
  -webkit-user-select: none;
}
@media(max-width: 992px) {.ptr-carousel {  padding: 20px;}}
.ptr-carousel img {
  box-shadow: 0px 10px 50px 0px rgba(64, 72, 82, 0.12);
  border-radius: 10px;
  pointer-events: none;
}
.ptr-carousel-track {
  position: relative;
  perspective: 1200px;
  cursor: grab;
}
.ptr-carousel-track.ptr-dragging {
  cursor: grabbing;
}
.ptr-carousel-track img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  display: block;
  opacity: 0;
  transform: scale(0.82) translateZ(-80px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  z-index: 0;
}
.ptr-carousel-track img:first-child {
  position: relative;
}
.ptr-carousel-track img.ptr-active {
  opacity: 1;
  transform: scale(1) translateZ(0);
  z-index: 2;
}
.ptr-carousel-track img.ptr-leaving {
  opacity: 0;
  transform: scale(0.88) translateZ(-60px);
  z-index: 1;
}

/* === NAV === */
.ptr-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin: 20px auto 0;
  background: #fff;
  border-radius: 999px;
  padding: 0px;
  width: fit-content;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.06);
}
.ptr-carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.ptr-carousel-arrow svg {
  zoom: 1.2;
  stroke: #b0b0b0;
  transition: stroke 0.2s;
}
.ptr-carousel-arrow:hover svg {
  stroke: #666;
}
.ptr-carousel-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ptr-carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #c0c0c0;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  box-sizing: border-box;
}
.ptr-carousel-dot.ptr-active {
  background: #b0b0b0;
  border-color: #b0b0b0;
}

