.safari-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
  background: #f2f2f2;
}

.tour-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  color: white;
  display: flex;
  align-items: flex-end;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.tour-info {
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  width: 100%;
  padding: 20px;
  
}

.tour-info h4 {
  font-size: 18px;
  margin: 0 0 5px;
  color: white;
}

.tour-info p {
  font-size: 14px;
  margin: 0 0 10px;
  line-height: 1.4;
}

.tour-info p span {
  font-weight: bold;
}

.icons {
  font-size: 16px;
  margin-bottom: 10px;
}

.icons i {
  margin-right: 10px;
}

.read-more {
  display: inline-block;
  background: #f7c200;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: #e6b100;
}
