.unit-photo-field {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 4px 0 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fbfaf5, #fff);
}

.unit-photo-field > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 1px solid #e1ddcf;
  border-radius: 14px;
  box-shadow: 0 12px 28px #2020181c;
}

.unit-photo-field > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.unit-photo-field strong,
.unit-photo-field small {
  display: block;
  width: 100%;
}

.unit-photo-field strong {
  color: var(--ink);
  font: 600 19px Georgia, serif;
}

.unit-photo-field small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.unit-photo-field label.button {
  cursor: pointer;
}

.unit-photo-field input[type="file"] {
  display: none;
}

.unit-photo-error {
  width: 100%;
  color: #a33d2d;
  font-size: 9px;
  font-weight: 750;
}

@media (max-width: 680px) {
  .unit-photo-field {
    grid-template-columns: 1fr;
    padding: 11px;
  }

  .unit-photo-field > img {
    height: 180px;
  }

  .unit-photo-field > div {
    align-items: stretch;
  }

  .unit-photo-field .button {
    flex: 1;
    justify-content: center;
  }
}
