.tour-card {
    background: #f8f8f8;
    border: 1px solid #ebe7d6;
    border-radius: 2px;
    margin: 30px 0;
    padding:0;
  }
  .tour-card .media {
    margin: 0;
  }
  .tour-card-img {
    position: relative;
    width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 2px 0 0 2px;
  }
  .tour-card-heart {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #3a3a3a;
  }
  .tour-card-title {
    font-size: 1.8em;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .tour-card-price {
    text-align: right;
    font-size: 2em;
    font-weight: bold;
    color: #222;
  }
  .tour-card-price-label {
    font-size: 0.9em;
    color: #666;
    text-align: right;
  }
  .tour-card-details {
    margin-bottom: 30px;
    font-size: 1.0em;
  }
  .tour-card-btn {
        background: #5d86b7;
    color: #fff;
    border: none;
    font-size: 1.0em;
    font-weight: bold;
    padding: 10px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
    display: block;
    text-align: center;
    position: absolute;
    bottom: 20px;
  }
  .tour-card-btn:hover {
    background: #5d86b7;
    color: #fff;
  }
  .tour-card .media-body {
    padding: 15px 10px 15px 10px;
  }
  .tour-card .media-right {
    padding: 15px 10px 15px 0;
    position: relative;
  }
  @media (max-width: 767px) {
    .tour-card .media-left, .tour-card .media-body, .tour-card .media-right {
      display: block;
      width: 100%;
      text-align: center;
    }
    .tour-card-img {
      width: 100%;
      height: 180px;
      border-radius: 2px 2px 0 0;
    }
    .tour-card-price, .tour-card-price-label {
      text-align: center;
    }
     .tour-card-btn{
    position: relative;
    display: inline-block;
  }
  .tour-card-details{
    margin-bottom: 0px;
  }
  }

  /* sponsored badge start */
  .sponsored-badge {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: #ff9800;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}
.tour-card-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    z-index: 2;
}
.tour-card-heart.favorite {
    color: #ff4081;
}
/* sponsered badge end */