/* ════════════════════════════════════════
   CAROUSEL EVENTS — event & deal card styles
   Requires: carousel-shared.css
════════════════════════════════════════ */

/* ── Event & Deal card — 320px, 4:3 image ── */
.event-card,
.deal-card {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #e4e4e4;
  overflow: hidden;
  width: 320px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.event-card:hover,
.deal-card:hover {
  transform: translateY(-5px);
  border-color: #178be6;
  box-shadow: 0 0 0 3px rgba(23,139,230,0.15), 0 0 22px rgba(23,139,230,0.18), 0 18px 44px rgba(0,0,0,0.10);
}
.event-card:hover .img-clip img,
.deal-card:hover .img-clip img { transform: scale(1.03); }

/* 4:3 image frame */
.card-img-frame {
  position: relative;
  padding-top: 75%;
  background: #111827;
}
.img-clip { position: absolute; inset: 0; overflow: hidden; }
.img-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

/* Date badge */
.date-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 5px 11px 7px;
  text-align: center;
  min-width: 54px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.10);
  z-index: 2;
  line-height: 1;
}
.date-badge .dow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}
.date-badge .day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  display: block;
}
.date-badge .mon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

/* Card body */
.card-body-inner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-title-text {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #178be6;
  line-height: 1.25;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 @media (max-width:600px) {
  .card-title-text{
    font-size: 18px !important;
  }
}

/* Tags */
.tags-row { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.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;
}

/* Venue + neighborhood rows — block (not flex) so text-overflow:ellipsis works */
.card-venue,
.card-neighborhood {
  font-size: 12px;
  color: #000;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-venue .bi,
.card-neighborhood .bi {
  font-size: 11px;
  color: #666;
  margin-right: 2px;
  vertical-align: -1px;
}
.card-venue .venue-link { font-weight: 600; color: #111; }
.card-neighborhood { font-weight: 400; }

/* Time + price row */
.card-meta-row {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.meta-time, .meta-price { display: flex; align-items: center; gap: 4px; }
.meta-time .bi, .meta-price .bi { font-size: 11px; color: #000; }
.meta-divider { color: #ccc; font-size: 12px; line-height: 1; }

/* Description */
.card-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer arrow */
.card-footer-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.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;
}
.btn-arrow:hover { background: #c94810; transform: scale(1.09); }
.btn-arrow .bi { font-size: 14px; }

/* See-more dimensions for events */
.see-more-card.ev-see-more {
  width: 320px;
  min-height: 420px;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .event-card,
  .deal-card { width: 260px; }
  .see-more-card.ev-see-more { width: 260px; }
  .card-venue,
  .card-neighborhood { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
