.new-carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.new-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.new-carousel-wrapper:hover {
  cursor: pointer;
}

.new-carousel-content {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.new-carousel-info-title {
  color: #ff6b35;
  transition: 0.3s;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
}

.new-carousel-wrapper:hover .new-carousel-info-title {
  color: #0070c0;
}

.new-carousel-info-text {
  min-height: 60px;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.new-carousel-slide {
  flex: 0 0 100%;
}

.new-carousel-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.new-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.new-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.new-carousel-dot:hover {
  background: #888;
}

.new-carousel-dot.active {
  background: #333;
}
