/* Image upload field: preview + hidden URL populated by the browser after the
   image has been converted to WebP and PUT straight to R2. */

.image-field {
  margin-bottom: 1rem;
}

.image-field__preview {
  width: 8rem;
  height: 8rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
}

.image-field [hidden] {
  display: none !important;
}

.image-field__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-field__status {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
}

.image-field__status:empty {
  display: none;
}

.image-field__status.is-error {
  color: var(--red);
}

.image-field.is-busy {
  opacity: 0.65;
}
