/* media.css — "coming soon" placeholders.

   .ba-media-placeholder  branded stand-in for a photo/video that doesn't exist yet.
                          Same aspect ratio as the eventual asset, so swapping in
                          the real <img>/<video> later causes no layout shift.
*/

/* ── Coming-soon placeholder ── */
.ba-media-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--rust-light, #EFD9D0);
  border: 1px dashed var(--rust, #B5674A);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--rust, #B5674A);
  text-align: center;
  padding: 16px;
}
.ba-media-placeholder[data-type="video"] { aspect-ratio: 16 / 9; }
.ba-media-placeholder[data-ratio="banner"] { aspect-ratio: 3 / 2; max-height: 340px; border-radius: 0; border-left: none; border-right: none; }
.ba-media-placeholder-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ba-media-placeholder-note {
  font-size: 11px;
  color: var(--ink-light, #9A8E89);
  line-height: 1.5;
  max-width: 30ch;
}

