/*
  Restrained "coming soon" state for asset slots that genuinely have no
  content yet (e.g. a video not recorded/linked) — as opposed to the
  icon-chip lists (icon-chips.css), which now carry real, if generic,
  icons and are finished content, not placeholders.

  Deliberately calm and on-brand: warm neutral surface, soft border, muted
  icon and copy — never the loud red-dashed dev-warning treatment
  (placeholder.css's .video-placeholder, now unused). Public visitors see
  only this, with zero developer/"missing asset" language. An
  authenticated admin in Edit Mode additionally sees a small badge
  (injected by client/edit-mode.js, styled in client/edit-mode.css as
  .edit-missing-asset-badge) identifying which slot still needs a real
  asset — that badge never renders for a normal visitor since it only
  exists in the DOM after a signed-in admin turns Edit Mode on.

  Icon: Lucide "video" (https://lucide.dev) — same ISC-licensed set as
  icon-chips.css; see that file's header comment for full license detail.
*/

.coming-soon {
  position: relative;
  display: grid;
  place-items: center;
  gap: var(--space-3);
  aspect-ratio: 16 / 9;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-alt);
  color: var(--color-text-secondary);
  text-align: center;
}

.coming-soon__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface-default);
  color: var(--color-brand-primary);
}

.coming-soon__icon svg {
  width: 24px;
  height: 24px;
}

.coming-soon__text {
  margin: 0;
  max-width: 26rem;
  font-size: var(--font-small);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
