.fhc-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fhc-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

.fhc-image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.fhc-slide {
  display: none; /* Hide by default */
  height: 100%; /* Fixed height */
  width: auto; /* Automatic width */
}

.fhc-slide:first-child {
  display: block;
}

.justify-left .fhc-image-wrapper {
  justify-content: flex-start;
}

.justify-center .fhc-image-wrapper {
  justify-content: center;
}

.justify-right .fhc-image-wrapper {
  justify-content: flex-end;
}
