.ov-spot-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--ov-surface);
  border: 1px solid var(--ov-border);
  border-radius: var(--ov-radius-lg);
  overflow: hidden;
  box-shadow: var(--ov-shadow-sm);
  cursor: pointer;
  transition:
    box-shadow var(--ov-dur-base) var(--ov-ease),
    border-color var(--ov-dur-base) var(--ov-ease);
}

.ov-spot-card:focus-visible {
  outline: 2px solid var(--ov-blue);
  outline-offset: 3px;
}

/* cover image */
.ov-spot-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ov-cloud);
  position: relative;
}

.ov-spot-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ov-spot-card__cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ov-blue-50) 0%, var(--ov-cloud) 100%);
}

.ov-spot-card__cover-icon {
  width: 40px;
  height: 40px;
  color: var(--ov-blue-300);
  opacity: 0.6;
}

/* body */
.ov-spot-card__body {
  padding: var(--ov-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--ov-space-3);
}

/* header row */
.ov-spot-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--ov-space-2);
}

.ov-spot-card__name {
  font-family: var(--ov-font-display);
  font-weight: var(--ov-w-semibold);
  font-size: var(--ov-fs-sm);
  color: var(--ov-text);
  line-height: var(--ov-lh-snug);
  margin: 0;
  letter-spacing: var(--ov-track-snug);
}

/* description */
.ov-spot-card__desc {
  font-family: var(--ov-font-sans);
  font-size: var(--ov-fs-xs);
  color: var(--ov-text-muted);
  line-height: var(--ov-lh-normal);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* meta row */
.ov-spot-card__meta {
  display: flex;
  align-items: center;
  gap: var(--ov-space-3);
}

.ov-spot-card__rating {
  display: flex;
  align-items: center;
  gap: var(--ov-space-1);
  font-family: var(--ov-font-mono);
  font-size: var(--ov-fs-xs);
  font-weight: var(--ov-w-semibold);
  color: var(--ov-steel);
}

.ov-spot-card__star {
  color: var(--ov-cond);
  width: 12px;
  height: 12px;
}

.ov-spot-card__reviews {
  font-family: var(--ov-font-sans);
  font-size: var(--ov-fs-xs);
  color: var(--ov-text-muted);
}

/* tags */
.ov-spot-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ov-space-1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ov-spot-card__tag {
  font-family: var(--ov-font-sans);
  font-size: var(--ov-fs-xs);
  color: var(--ov-slate);
  background: var(--ov-cloud);
  border: 1px solid var(--ov-line);
  border-radius: var(--ov-radius-pill);
  padding: 1px var(--ov-space-2);
  line-height: 1.5;
}
