/* Custom Cruise Types Grid - Simple and Effective */
.cruise-types-custom-grid {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.cruise-types-row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  width: 100% !important;
}

.cruise-type-item {
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
  padding: 0 10px !important;
  margin-bottom: 30px !important;
  box-sizing: border-box !important;
}

.cruise-type-item a {
  display: block !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease;
  text-decoration: none !important;
  height: 100% !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.cruise-type-item a:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #0c7e52;
}

.cruise-type-item img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease;
}

.cruise-type-item a:hover img {
  transform: scale(1.08);
}

.cruise-type-item h3 {
  padding: 24px 20px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

/* Responsive - 2 columns on tablet */
@media (max-width: 991px) {
  .cruise-type-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Responsive - 1 column on mobile */
@media (max-width: 640px) {
  .cruise-type-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cruise-types-row {
    margin: 0 -10px;
    width: 100%;
  }

  .cruise-type-item {
    padding: 0 10px;
  }

  .cruise-type-item img {
    height: 220px;
  }

  .cruise-type-item h3 {
    font-size: 18px;
    padding: 20px 16px;
  }
}