.pca-carousel {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
}

.pca-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
  width: 100%;
}

.pca-carousel-slide {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.pca-image-container {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pca-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pca-carousel-overlay span {
  font-size: 1.5rem;
  transition: all 0.2s ease;
}

.pca-carousel-overlay span:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.arrow-left {
	transform: rotate(180deg);
}

@media (max-width: 992px) {
  .pca-image-container {
    height: 400px;
  }
  
  .pca-carousel-overlay {
  	width: 10rem;
    gap: 7px;
  }
}

@media (max-width: 566px) {
  .pca-image-container {
    height: 300px;
  }
  
   .pca-carousel-overlay {
  	width: 7rem;
    gap: 3px;
  }
}
