/* ========================================
   Block Editor Styles for Info Image Accent Right
   ======================================== */

/* Block wrapper in editor */
.wp-block-theme-info-image-accent-right {
  margin: 1rem 0;
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 1rem;
  background: #f9f9f9;
}

/* Preview mode styling */
.wp-block-theme-info-image-accent-right .info-image-accent-right {
  position: relative;
  margin-bottom: 2rem;
  min-height: 200px;
}

/* Editor content area */
.wp-block-theme-info-image-accent-right .accent-stage {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image preview in editor */
.wp-block-theme-info-image-accent-right .image-wrap {
  max-width: 300px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.wp-block-theme-info-image-accent-right .image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 0 1rem;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* Accent blocks in editor */
.wp-block-theme-info-image-accent-right .accent {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  aspect-ratio: 1 / 1;
  border-radius: 0 1rem;
}

.wp-block-theme-info-image-accent-right .accent.a1 {
  width: 4rem;
  height: 4rem;
  top: 0.5rem;
  left: 1rem;
  background: #4a90e2;
  opacity: 0.7;
}

.wp-block-theme-info-image-accent-right .accent.a2 {
  width: 3rem;
  height: 3rem;
  bottom: 0.5rem;
  right: 1rem;
  background: #357abd;
  opacity: 0.7;
}

/* Placeholder when no image */
.wp-block-theme-info-image-accent-right:empty::before {
  content: "Info Image Accent Right Block - Configure in the sidebar";
  display: block;
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 2rem;
}

/* Responsive adjustments for editor */
@media (min-width: 768px) {
  .wp-block-theme-info-image-accent-right .accent-stage {
    justify-content: flex-end;
  }

  .wp-block-theme-info-image-accent-right .image-wrap {
    max-width: 400px;
  }
}
