/**
 * Placeholders de ilustração nocontrole®
 * Troque o arquivo em static/images/illustrations/{slot_id}.webp|png|jpg
 * Ver catálogo: static/images/illustrations/SLOTS.json
 */
.nc-img-slot {
  --nc-slot-radius: 0.85rem;
  --nc-slot-bg: var(--bs-tertiary-bg);
  --nc-slot-border: var(--bs-border-color);
  margin: 0;
  max-width: 100%;
}

.nc-img-slot__frame {
  position: relative;
  width: 100%;
  max-width: min(100%, calc(var(--nc-slot-w, 560) * 1px));
  margin-inline: auto;
  aspect-ratio: var(--nc-slot-w, 560) / var(--nc-slot-h, 400);
  border-radius: var(--nc-slot-radius);
  overflow: hidden;
  background: var(--nc-slot-bg);
  border: 1px dashed color-mix(in srgb, var(--bs-primary) 35%, var(--nc-slot-border));
}

/* Com arte real: sem contorno e sem fundo cinza do placeholder */
.nc-img-slot__frame:has(.nc-img-slot__img) {
  background: transparent;
  border: none;
}

.nc-img-slot__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nc-img-slot__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem;
  text-align: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-primary) 6%, transparent), transparent 55%),
    var(--nc-slot-bg);
}

.nc-img-slot__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bs-primary);
  background: var(--bs-primary-bg-subtle);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.nc-img-slot__size {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bs-body-color);
  font-variant-numeric: tabular-nums;
}

.nc-img-slot__hint {
  font-size: 0.7rem;
  color: var(--bs-secondary-color);
  max-width: 16rem;
  line-height: 1.35;
}

.nc-img-slot__path {
  font-size: 0.62rem;
  color: var(--bs-secondary-color);
  opacity: 0.85;
  word-break: break-all;
}

/* Variantes */
.nc-img-slot--empty .nc-img-slot__frame {
  max-width: min(100%, 17.5rem);
}

.nc-img-slot--hero .nc-img-slot__frame {
  max-width: 100%;
  border-style: solid;
}

.nc-img-slot--hero .nc-img-slot__frame:has(.nc-img-slot__img),
.nc-img-slot--auth .nc-img-slot__frame:has(.nc-img-slot__img),
.nc-img-slot--inline .nc-img-slot__frame:has(.nc-img-slot__img),
.nc-img-slot--empty .nc-img-slot__frame:has(.nc-img-slot__img) {
  background: transparent;
  border: none;
}

.nc-img-slot--inline .nc-img-slot__frame {
  max-width: min(100%, 5.75rem);
  border-radius: 1rem;
}

.nc-img-slot--auth {
  height: 100%;
}

.nc-img-slot--auth .nc-img-slot__frame {
  max-width: none;
  height: 100%;
  min-height: 28rem;
  aspect-ratio: auto;
  border-radius: 1rem;
}

@media (max-width: 991.98px) {
  .nc-img-slot--auth-desktop-only {
    display: none !important;
  }
}

[data-bs-theme="dark"] .nc-img-slot__frame {
  border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .nc-img-slot__placeholder {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-primary) 12%, transparent), transparent 55%),
    rgba(255, 255, 255, 0.03);
}
