.etno-slider-container {
  background-color: transparent !important;
}

.etno-slider-title {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.etno-slider-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.etno-slider-card {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 20px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.etno-slider-card:hover {
  transform: scale(1.03);
}

.etno-slider-image {
  width: 100%;
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  object-fit: cover;
}

.etno-slider-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.etno-slider-content h3 {
  font-size: 1.1em;
  margin: 0 0 10px;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.etno-slider-date,
.etno-slider-location {
  font-size: 0.95em;
  margin: 6px 0;
  color: #555;
}

.etno-slider-button {
  display: inline-block;
  background-color: #c00;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95em;
  margin-top: 10px;
  align-self: flex-start;
}

.etno-slider-button:hover {
  background-color: #a00;
}

.etno-slider-footer {
  text-align: center;
  margin-top: 25px;
}

.etno-slider-seeall {
  background-color: #c00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1em;
}

.etno-slider-seeall:hover {
  background-color: #a00;
}

.etno-slider-dots {
  text-align: center;
  margin-top: 10px;
}

.etno-slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.etno-slider-dot.active {
  background-color: #c00;
}

@media (max-width: 768px) {
  .etno-slider-card {
    width: 85vw;
    margin-right: 