/* Loading state */
.minigp-editor-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

/* Gallery selected — card preview */
.minigp-editor-preview {
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #ddd;
	background: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.minigp-editor-preview__image {
	width: 100%;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	background: #f0f0f1;
}

.minigp-editor-preview__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.minigp-editor-preview__no-image {
	width: 100%;
	aspect-ratio: 16 / 7;
	background: #f0f0f1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.minigp-editor-preview__no-image .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
	color: #a0a0a0;
}

.minigp-editor-preview__footer {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #fff;
	border-top: 1px solid #e0e0e0;
}

.minigp-editor-preview__icon {
	color: #757575;
	flex-shrink: 0;
}

.minigp-editor-preview__title {
	font-size: 13px;
	font-weight: 600;
	color: #1e1e1e;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
