.logo-upload-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.logo-upload-row label {
  flex: 1;
}

.logo-upload-preview {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 14px;
  background: #fff;
  border: 1px dashed #cdbed5;
  color: var(--muted);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .72rem;
  padding: 8px;
  overflow: hidden;
}

.logo-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 620px) {
  .logo-upload-row {
    align-items: stretch;
    flex-direction: column;
  }

  .logo-upload-preview {
    width: 100%;
    height: 110px;
    flex-basis: 110px;
  }
}
