.awards-slider-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.awards-slider-text {
  width: 40%;
}

.awards-slider-wrapper {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.awards-slider-track {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease;
}

.awards-slide {
  flex: 0 0 33.33%;
  display: flex;
  justify-content: center;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.6);
  filter: blur(4px);
}

.awards-slide img {
  width: 260px;
  border-radius: 10px;
}

/* Center image */
.awards-slide.awards-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 3;
}

/* Side images */
.awards-slide.awards-prev,
.awards-slide.awards-next {
  opacity: 1;
  transform: scale(0.8);
  filter: blur(3px);
  z-index: 2;
}

/* Hidden image */
.awards-slide.awards-hidden {
  opacity: 0;
  pointer-events: none;
}

.awards-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1976d2; 
  color: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 50%;
  z-index: 10;
}

.awards-prev { left: 10px; }
.awards-next { right: 10px; }

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 991px) {

  .awards-slider-section {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .awards-slider-text {
    width: 100%;
  }

  .awards-slider-text .d-flex {
    justify-content: center;
  }

  .awards-slider-wrapper {
    width: 100%;
  }

  .awards-slide img {
    width: 220px;
  }
}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 600px) {

  .awards-slider-wrapper {
    width: 100%;
  }

  .awards-slider-text {
    height: 200px;
  }

  .awards-slide {
    flex: 0 0 100%;
  }

  .awards-slide img {
    width: 200px;
  }

  /* Reduce blur on small screens */
  .awards-slide.awards-prev,
  .awards-slide.awards-next {
    transform: scale(0.75);
    filter: blur(2px);
  }

  .awards-slide.awards-active {
    transform: scale(1);
  }

  /* Move arrows slightly inward */
  .awards-prev { left: 5px; }
  .awards-next { right: 5px; }

  /* Text sizing */
  #awards-slider-title {
    font-size: 20px;
  }

  #awards-slider-desc {
    font-size: 14px;
  }
}