/* Admin – Gallery editor layout */
.image-editor {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 20px;
  align-items: start;
  padding: 16px;
  margin-bottom: 16px;
  background: var(--brand-surface);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #e8e4dc;
}

.image-editor img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f5;
}

@media (max-width: 640px) {
  .image-editor {
    grid-template-columns: 1fr;
  }

  .image-editor img {
    max-height: 180px;
  }
}
/* Admin testimonials textarea */
/* Ensure testimonial textareas span full card width */
.card textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}
.card input[type="number"] {
  width: 80px;
}
