/* Universal Scholvix image upload editor */
.scholvix-image-cropper[hidden] { display: none !important; }
.scholvix-image-cropper {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 24, 40, .76);
  backdrop-filter: blur(5px);
}
.scholvix-image-cropper-card {
  width: min(820px, 100%);
  max-height: min(94vh, 960px);
  overflow: auto;
  padding: 22px;
  border: 1px solid #d9e2ec;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(16, 24, 40, .28);
}
.scholvix-image-cropper-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}
.scholvix-crop-eyebrow {
  display: block;
  color: #0f766e;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scholvix-image-cropper-head h2 { margin: 4px 0 4px; font-size: 1.45rem; color: #172033; }
.scholvix-image-cropper-head p { margin: 0; color: #667085; font-size: .9rem; }
.scholvix-crop-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #172033;
  font-size: 1.8rem;
  cursor: pointer;
}
.scholvix-crop-close:hover { background: #eef2f6; }
.scholvix-crop-stage {
  width: 100%;
  height: min(58vh, 570px);
  min-height: 300px;
  overflow: hidden;
  border-radius: 14px;
  background: #101828;
}
.scholvix-crop-stage img { display: block; max-width: none; }
.scholvix-crop-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.scholvix-crop-controls .button,
.scholvix-crop-actions .button {
  min-height: 40px;
  padding: .55rem .8rem;
  border: 1px solid #d9e2ec;
  border-radius: 9px;
  background: #fff;
  color: #172033;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.scholvix-crop-controls .button:hover,
.scholvix-crop-actions .button.secondary:hover { background: #eef2f6; }
.scholvix-crop-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #d9e2ec;
}
.scholvix-crop-actions .button.primary {
  border-color: #0f766e;
  background: #0f766e;
  color: #fff;
}
.scholvix-crop-actions .button.primary:hover { background: #115e59; }
.scholvix-cropper-open { overflow: hidden !important; }
@media (max-width: 600px) {
  .scholvix-image-cropper { padding: 10px; }
  .scholvix-image-cropper-card { padding: 15px; border-radius: 15px; }
  .scholvix-crop-stage { height: 48vh; min-height: 250px; }
  .scholvix-crop-controls .button span { display: none; }
  .scholvix-crop-controls .button { width: 42px; padding: 0; }
  .scholvix-crop-actions { flex-direction: column-reverse; }
  .scholvix-crop-actions .button { width: 100%; }
}
