  body.home main {
    padding: 0 !important;
    margin: 0 !important;
    height: 100vh;
  }

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  grid-column: 1 / 9; 
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: w-resize; 
  z-index: 5;
}

.carousel-container::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: e-resize;
  z-index: 5;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.carousel-button {
  display: none;
}

@media (max-width: 768px) {
  .carousel-container::before,
  .carousel-container::after {
    display: none;
  }
  
  .carousel-button {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-blue-text);
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 2vw;
   background: transparent;
  }

  .carousel-button.prev {
    left: 10px;
  }

  .carousel-button.next {
    right: 10px;
  }
}