/* Vibe Tampa - shared card style (Editors Pick + category grids) */

.vt-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 1px 3px rgba(36, 50, 47, 0.08);
}

.vt-card__media {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.vt-card__image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vt-card__image--placeholder {
  background-color: var(--vt-cream-alt);
}

/* Signature element: punched-circle "ticket stub" notch, bottom-left */
.vt-card__notch {
  position: absolute;
  left: 14px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--vt-cream);
  border: 3px solid #fff;
  box-shadow: 0 1px 2px rgba(36, 50, 47, 0.15);
}

.vt-card__body {
  padding: 18px 16px 20px;
}

.vt-card__eyebrow {
  color: var(--vt-coral);
  font-size: 0.7rem;
  display: inline-block;
  margin-bottom: 8px;
}

.vt-card__title {
  font-family: var(--vt-font-display);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0;
  color: var(--vt-ink);
}

/* Editors Pick: horizontal scroll row */
.vt-editors-pick {
  padding: 48px 24px;
}

.vt-editors-pick__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vt-editors-pick__title {
  color: var(--vt-teal-deep);
  font-size: 1.6rem;
  margin: 0 0 20px;
}

.vt-card-row-wrap {
  position: relative;
}

.vt-card-row-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 8px;
  width: 48px;
  background: linear-gradient(to right, transparent, var(--vt-cream));
  pointer-events: none;
}

.vt-card-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.vt-card-row .vt-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

@media (max-width: 640px) {
  .vt-card-row .vt-card {
    flex-basis: 260px;
  }
}
