    .trending-carousel {
  max-width: 1600px;
  margin: 40px auto;
  padding: 20px;
  background: #000;            
  border-radius: 0;            
  border-top: 4px solid #ff4500;
  position: relative;
}

.trending-carousel h3 {
  position: absolute;
  top: -20px;   
  left: 20px;
  color: #ff4500;
  font-size: 24px;
  margin: 0;
  background: #000;
  padding: 0 10px;
  font-weight: bold;
  z-index: 2;
}

.carousel-container {
  display: flex;   
  flex-direction: row; 
  gap: 20px;
  overflow: hidden;  
}

.carousel-item {
  flex: 0 0 385px; 
  background: #000; 
  color: #fff;
  padding: 10px;
  border-radius: 0; 
}

.carousel-item img {
  width: 100%;
  height: 200px;  
  object-fit: cover; 
  display: block;
  margin-bottom: 10px;
  border-radius: 0;  
}

.carousel-item h4 a {
  color: #fff;
  text-decoration: none;
}

.trending-carousel button.prev,
.trending-carousel button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
}

.trending-carousel button.prev { left: 10px; }
.trending-carousel button.next { right: 10px; }
