/* ─── Spot Images ───────────────────────────────────────────── */
.spot-image-placeholder {
  float: right;
  width: 200px;
  margin: 0 0 2rem 2rem;
  clear: right;
}

.spot-image-placeholder.left {
  float: left;
  margin: 0 2rem 2rem 0;
  clear: left;
}

.spot-image {
  margin: 0;
  padding: 0;
}

.spot-image img {
  width: 200px;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: block;
}

.spot-image figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
  font-style: italic;
  text-align: center;
}

@media (max-width: 600px) {
  .spot-image-placeholder,
  .spot-image-placeholder.left {
    float: none;
    width: 100%;
    margin: 1.5rem 0;
  }

  .spot-image img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
