/* static/travelclub/css/home_featured.css */

.tc-hotelCard{
  display:block;
  text-decoration:none;
  color:inherit;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
  height:100%;
}
.tc-hotelCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.tc-hotelMedia{
  position:relative;
  height:210px;
  background:#e9ecef;
}
.tc-hotelMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tc-hotelNoPhoto{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6c757d;
}

.tc-hotelBadges{
  position:absolute;
  left:12px;
  bottom:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.tc-badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}
.tc-badge-dark{ background: rgba(255,255,255,.85); color:#111; }
.tc-badge-light{ background: rgba(255,255,255,.85); color:#111; }

.tc-hotelBody{
  padding:14px 14px 16px;
}
.tc-hotelTitle{
  font-weight:700;
  font-size:18px;
  line-height:1.2;
}
.tc-hotelMeta{
  margin-top:4px;
  color:#6c757d;
  font-size:13px;
}
.tc-hotelDesc{
  margin-top:10px;
  font-size:14px;
  color:#212529;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: 60px;
}
.tc-muted{ color:#6c757d; }

.tc-hotelCtas{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.tc-link{
  font-weight:600;
  color:#0d6efd;
}
.tc-pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:#f8f9fa;
  border:1px solid rgba(0,0,0,.06);
  color:#495057;
}
