/* ===== ELITE TOUR CARDS ===== */

.box_grid {
  border: 0 !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
  height: 100%;
}

.box_grid:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.box_grid figure {
  position: relative;
  height: 245px;
  margin: 0;
  overflow: hidden;
}

.box_grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.box_grid:hover figure img {
  transform: scale(1.06);
}

.box_grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}

.read_more {
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wrapper {
  padding: 26px 24px 24px !important;
}

.wrapper h3 {
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #1d1d1d;
  font-weight: 800;
}

.wrapper p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4b4b4b;
  margin-bottom: 24px;
}

.wrapper a {
  text-decoration: none;
}

.wrapper .btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  background: #e8d89b;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.wrapper .btn:hover {
  background: #111;
  color: #fff;
}

.box_grid ul {
  border-top: 1px solid #eee;
  padding: 14px 22px !important;
  background: #faf8f1;
}

.box_grid ul li {
  font-size: 13px;
  color: #333;
}

.box_grid ul img {
  width: 55px;
  height: auto;
  object-fit: contain;
  margin-right: 8px;
}

/* Badge opcional sobre la imagen */
.box_grid figure .tour-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 767px) {
  .box_grid figure {
    height: 220px;
  }

  .wrapper h3 {
    font-size: 22px;
  }
}