/**
 * Popular Destinations Block styles
 */

.cerinza-destinations-wrapper {
  padding: 60px 0;
}

.cerinza-destinations-title {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.destination-card {
  transition: all 0.3s ease;
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-image {
  height: 180px;
  overflow: hidden;
  border-radius: 12px !important;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.05);
}

.destination-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.destination-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}

.slider-navigation {
  margin-top: 30px;
}

.slider-navigation button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
}

.slider-navigation button:hover {
  background-color: #f8f9fa;
  border-color: #ced4da;
}

/* Custom styles to match the design */
.cerinza-destinations-header {
  margin-bottom: 40px;
}

.cerinza-destinations-title {
  font-family: 'Merriweather', serif;
  position: relative;
  display: inline-block;
}

.destinations-slider .slick-track {
  display: flex;
  gap: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .destination-image {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .cerinza-destinations-title {
    font-size: 1.75rem;
  }

  .destination-image {
    height: 140px;
  }
}

@media (max-width: 576px) {
  .cerinza-destinations-wrapper {
    padding: 40px 0;
  }

  .cerinza-destinations-title {
    font-size: 1.5rem;
  }
}
