/*
  Visual markers for assets that don't exist yet (icon sets, FAQ
  background, etc.) — deliberately loud so it's obvious at a glance what
  still needs generating, per the owner's explicit request to see missing
  assets visually rather than guess from a list. Delete this file's
  usages (not the file itself — other projects may still want the
  pattern) once every slot has a real asset.
*/

.placeholder-block {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6);
  border: 2px dashed var(--color-error);
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(
    45deg,
    rgba(179, 38, 30, 0.06),
    rgba(179, 38, 30, 0.06) 10px,
    transparent 10px,
    transparent 20px
  );
}

.placeholder-block__label {
  margin: 0;
  color: var(--color-error);
  font-size: var(--font-small);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.placeholder-image {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border: 2px dashed var(--color-error);
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(
    45deg,
    rgba(179, 38, 30, 0.06),
    rgba(179, 38, 30, 0.06) 10px,
    transparent 10px,
    transparent 20px
  );
  color: var(--color-error);
  font-size: var(--font-small);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.video-placeholder {
  display: grid;
  place-items: center;
  gap: var(--space-2);
  aspect-ratio: 16 / 9;
  border: 2px dashed var(--color-error);
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(
    45deg,
    rgba(179, 38, 30, 0.06),
    rgba(179, 38, 30, 0.06) 10px,
    transparent 10px,
    transparent 20px
  );
  color: var(--color-error);
  text-align: center;
}

.video-placeholder__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--color-error);
  border-radius: 50%;
  font-size: 1.25rem;
}

.role-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
}

.role-chip-list li {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface-default);
  font-size: var(--font-small);
  font-weight: 700;
}
