.carousel__sites__section {
  padding: var(--section-desktop-padding);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carousel__main__title__container {
  margin-bottom: 30px;
  margin-top: 100px;
}

.carousel__main__title__container h2 {
  text-align: center;
}

.carousel__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  padding: 0 10px;
}

.carousel__nav {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  z-index: 2;
  flex-shrink: 0;
}

.carousel__nav:hover {
  color: #333;
}

.carousel__nav:disabled {
  color: #ccc;
  opacity: 0.5;
}

.carousel__nav:disabled:hover {
  color: #ccc;
}

.carousel__nav--prev {
  margin-right: 15px;
}

.carousel__nav--prev svg {
  transform: scaleX(-1);
}

.carousel__nav--next {
  margin-left: 15px;
}

.carousel__nav--next svg {
  transform: scaleX(-1);
}

.carousel__slides__container {
  overflow: hidden;
  position: relative;
  width: 820px;
  margin: 0 auto;
}

.carousel__slides__wrapper {
  display: flex;
  transition: transform 0.3s ease;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  direction: rtl;
}

.carousel__slide {
  flex: 0 0 auto;
  width: 155.5px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(128, 128, 128, 0.171);
  padding: 8px 10px 6px 10px;
}

.brand__logo {
  width: 120px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__name {
  font-size: 14px;
  color: #333333;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1.2;
}

.carousel__disclaimer {
  margin-top: 32px;
  text-align: center;
  margin-bottom: 100px;
}

.carousel__disclaimer p {
  font-size: 14px;
  cursor: pointer;
}

.carousel__disclaimer,
.carousel__disclaimer *,
.carousel__disclaimer a {
  color: var(--lower-text-color) !important;
}

.carousel__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18.61px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--lower-text-color, #000);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel__dot--active {
  background-color: var(--lower-text-color, #000);
  border: 1px solid var(--lower-text-color, #000);
}

@media (max-width: 768px) {
  .carousel__sites__section {
    min-height: 290px;
    padding: var(--section-mobile-padding);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .carousel__main__title__container {
    margin-top: 40px;
    margin-bottom: 29px;
  }

  .carousel__disclaimer {
    margin-bottom: 40px;
  }

  .carousel__container {
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .carousel__nav {
    display: none;
  }

  .carousel__dots {
    display: flex;
    order: 3;
    margin-bottom: 27px;
    direction: rtl;
  }

  .carousel__slides__container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    touch-action: pan-x; 
    -webkit-touch-callout: none;
    -webkit-user-select: none; 
    user-select: none;
    order: 2;
  }

  .carousel__slides__wrapper {
    justify-content: flex-start;
    gap: 10px;
    padding: 0;
    cursor: grab;
    touch-action: pan-x;
    direction: ltr;
    -webkit-transform: translateZ(0); 
    transform: translateZ(0);
  }

  .carousel__slides__wrapper:active {
    cursor: grabbing;
  }

  .carousel__slide {
    width: 139.92px;
    height: 82.78px;
    flex-shrink: 0;
    touch-action: none; 
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(128, 128, 128, 0.171);
    padding: 6px 8px 5px 8px;
  }

  .brand__logo {
    width: 100px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .brand__name {
    font-size: 12px;
    color: #000000;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1.2;
  }

  .carousel__disclaimer {
    margin-top: 20px;
    padding: 0 20px;
  }
}