.destination_cards h2 {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}

.destination_cards {
  margin: 2rem 0;
  text-align: center;
  align-self: center;
}

.card-row {
  display: flex;
  padding-inline: 20px;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  min-width: 260px;
  background: var(--section-background-1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
}

.card a{
  color: var(--primary-text-color);
}

.card-slideshow {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.slides {
  display: flex;
  will-change: transform;
  transition: transform .45s ease;
}

.slides img {
  flex: 0 0 100%;
  width: 100%;
  height: 220px;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.card-info {
  padding: 14px 16px 18px;
}

.card-info p{
  font-size: 13px;
}

.card-info h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  font-weight: 500;
}

.destination_location{
  font-size: 10px !important;
  font-weight: 700;
  margin-top: 5px;
}

.destination_wedding_line{
  font-size: 10px !important;
  font-weight: 700;
  margin-top: 5px;
  color: var(--primary-text-color);
}

.price {
  margin-top: 8px;
  font-weight: 500;
}

.price span {
  color: var(--primary-text-color) !important;
  font-size: 12px;
}

.price .old {
  color: #888;
  text-decoration: line-through;
  margin-right: 6px;
  font-size: 13px;
  font-weight: 400;
}

.offer {
  color: var(--primary-text-color);
  background-color: var(--button-bgHover-1);
  font-size: 12px !important;
  margin-top: 10px;
}

.price .new-price {
  font-size: 16px;
  font-weight: 650;
  margin-right: 3px;
}

.facility-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0;
}

.facility-icons i {
  font-size: 15px;
  color: var(--secondary-text-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .card {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}