.tour-features-v3 {
  max-width: 720px;
  margin: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-family: "Josefin Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (min-width: 601px) {
  .tour-features-v3 {
    max-width: 1100px;
  }
}

.tour-feature {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10), 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media (hover: hover) {
  .tour-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14), 0 10px 28px rgba(0, 0, 0, 0.10);
  }
}

.tour-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.included-v3::before {
  background: linear-gradient(180deg, #2fab73, #6fe3b6);
}

.excluded-v3::before {
  background: linear-gradient(180deg, #e04a4a, #ff9a9a);
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  padding-left: 6px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 12.5px;
  color: #333333;
  line-height: 1.4;
}

.included-v3 .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2fab73;
  font-weight: 700;
}

.excluded-v3 .feature-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: #e04a4a;
  font-weight: 700;
}

@media (max-width: 600px) {
  .tour-features-v3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tour-feature {
    padding: 14px 14px 16px;
    border-radius: 16px;
  }
  .feature-title {
    font-size: 14px;
  }
  .feature-list li {
    font-size: 12px;
  }
}
