/* ════════════════════════════════════════
   CAROUSEL VENUE — venue card styles
   Used by: nightlife, dining, lifestyle, venues
   Requires: carousel-shared.css
════════════════════════════════════════ */

/* ── Venue card — 280px, 16:9 image ── */
.venue-card {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #ececec;
  overflow: hidden;
  width: 280px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.venue-card:hover {
  transform: translateY(-4px);
  border-color: #c8dff6;
  box-shadow:
    0 0 0 2px rgba(23,139,230,0.10),
    0 0 16px rgba(23,139,230,0.12),
    0 12px 32px rgba(0,0,0,0.08);
}
.venue-card:hover .img-clip img { transform: scale(1.03); }

/* 16:9 image */
.venue-card .card-img-frame {
  position: relative;
  padding-top: 56.25%;
  background: #1a1a2e;
}
.venue-card .img-clip { position: absolute; inset: 0; overflow: hidden; }
.venue-card .img-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

/* Card body */
.venue-card .card-body-inner {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Venue name — 15px, blue, 2-line clamp */
.venue-name {
  font-family: 'Barlow', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #178be6;
  line-height: 1.25;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width:600px) {
  .venue-name {
    font-size: 18px !important;
  }
}

/* Single subcategory tag */
.venue-card .tags-row { display: flex; gap: 4px; margin-bottom: 7px; }
.venue-card .cat-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: #f0f0f0;
  border-radius: 3px;
  padding: 2px 7px;
  white-space: nowrap;
}

/* Neighborhood */
.venue-location {
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.venue-location .bi { font-size: 10px; color: #666; flex-shrink: 0; }

/* Highlight — 2-line clamp, light gray */
.venue-highlight {
  font-size: 12px;
  color: #666;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.venue-highlight .bi {
  font-size: 10px;
  color: #bbb;
  flex-shrink: 0;
  margin-right: 4px;
}

/* Footer */
.venue-card .card-footer-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 5px;
}
.venue-card .btn-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e85411;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.venue-card .btn-arrow:hover { background: #c94810; transform: scale(1.09); }
.venue-card .btn-arrow .bi { font-size: 14px; }

/* See-more dimensions for venue */
.see-more-card.vn-see-more {
  width: 280px;
  min-height: 340px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .venue-card { width: 240px; }
  .see-more-card.vn-see-more { width: 240px; }
  .venue-location { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
