* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* SECTION */
.section-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* WRAPPER */
.slider-wrapper {
  max-width: 1100px;
  padding-bottom: 10px;
  margin: auto;
}

/* SLIDER */
.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.slide {
  scroll-snap-align: start;
  flex: 0 0 calc(33.33% - 14px);
}

.card {
  border: 2px solid #dfd7b7;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 10px;
}

/* IMAGE */
.card img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

/* TITLE */
.card h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.3;
}

/* DOTS */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  opacity: 0.3;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
}

/* TABLET */
@media (max-width: 1024px) {
  .slide {
    flex: 0 0 calc(50% - 10px);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .slide {
    flex: 0 0 100%;
  }
}