.assos-list {
  background: linear-gradient(#379cd0, #00293f);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 20px 0;
  position: relative;
}

.assos-list .container {
  margin: 0 auto;
  padding: 0 20px;
}

.assos-list h2 {
  margin-bottom: 25px;
  font-size: 2rem;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);

  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  user-select: none;
  transition: 0.2s;
  z-index: 20;
}

.carousel-btn:hover {
  background: #e0e0e0;
}

.carousel-btn.left {
  left: -75px;
}

.carousel-btn.right {
  right: -75px;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  scroll-behavior: smooth;
  padding: 10px 0;
  gap: 40px;
  list-style: none;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  will-change: transform;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel li {
  flex-shrink: 0;
  backface-visibility: hidden;
  text-align: center;
}

.carousel a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  width: 155px;
}

.carousel img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  background: rgb(0, 15, 155);
  border: 2px solid #d9e1e7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
  transition: 0.25s;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.carousel img:hover {
  transform: scale(1.05);
}
