.image-field {
  margin-bottom: 24px;
}
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.image-field-body {
  display: flex;
  align-items: center;
  gap: 18px;
}
.image-field-preview {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 18px;
  background: #eef2e7;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #899b70;
}
.image-field-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-upload-label {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.image-upload-label input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.image-upload-label:focus-within {
  outline: 2px solid #729747;
  outline-offset: 3px;
}
.image-field-status {
  font-size: 12px;
  color: #6c785e;
  margin-top: 10px;
}
.image-field [data-image-clear] {
  display: block;
  margin-top: 10px;
}
.image-field [data-image-clear][hidden] {
  display: none;
}
