.travel-card {
  background: linear-gradient(to bottom, #ffffff, #fafcff);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


.travel-card:hover {
  transform: translateY(-4px);
}

/* Media */
.travel-main-media {
  max-height: 520px;
  object-fit: cover;
  border-bottom: 1px solid #f1f1f1;
}

/* Overlay */
.travel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff;
}

.travel-location {
  font-size: 16px;
}

.travel-sub {
  font-size: 13px;
  opacity: 0.9;
}

/* Intent Badge */
.travel-intent-badge {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  background: #f3f8ff;
  color: #1a73e8;
  border-radius: 20px;
  margin-top: 2px;
}

/* Caption */
.travel-caption {
  font-size: 15px;
  line-height: 1.6;
}
.travel-caption::first-letter {
  font-size: 22px;
  font-weight: 600;
}

/* Explore Button */
.travel-explore-btn {
  background: #ff7a18;
  color: #fff;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  border: none;
}

.travel-explore-btn:hover {
  background: #e86c10;
  color: #fff;
}


.post-summary {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.experiences-page .reaction-btn,
.experiences-page .comment-btn,
.experiences-page .reply-btn {
  opacity: 0.6;
  cursor: pointer;
}

.experiences-page .reaction-btn:hover,
.experiences-page .comment-btn:hover,
.experiences-page .reply-btn:hover {
  opacity: 1;
}
/*cards css for mobile */
/* ===============================
   MOBILE REELS MODE
================================ */

@media(max-width:768px){

  #travelFeed{
    height:100vh;
    overflow-y:auto;
    scroll-snap-type:y mandatory;
  }

  /*.travel-card{*/
  /*  height:100vh;*/
  /*  scroll-snap-align:start;*/
  /*  display:flex;*/
  /*  flex-direction:column;*/
  /*  justify-content:center;*/
  /*}*/

  .travel-media-single{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
  }

}

/* ===============================
   REEL VIDEO
================================ */

.reel-wrapper{
  position:relative;
}

.reel-video{
  width:100%;
  border-radius:16px;
  background:#000;
}

.reel-sound-toggle{
  position:absolute;
  bottom:15px;
  right:15px;
  width:42px;
  height:42px;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(6px);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:#fff;
  cursor:pointer;
}

.reel-progress{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:rgba(255,255,255,0.2);
}

.reel-progress-bar{
  width:0%;
  height:100%;
  background:#fff;
}