/* ============================================================
   Report — Carrusel de galería
   Estilo del front-end + del editor.
   ============================================================ */

/* ---------- Front-end ---------- */
.report-carrusel {
	position: relative;
	max-width: 640px;
	margin: 1.4em auto;
	height: var( --rc-height, 400px );
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba( 0, 0, 0, 0.5 );
}
.report-carrusel .rc-track {
	position: relative;
	width: 100%;
	height: 100%;
}
.report-carrusel .rc-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	z-index: 0;
}
.report-carrusel .rc-slide.is-active {
	opacity: 1;
	z-index: 1;
}
.report-carrusel .rc-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.report-carrusel .rc-arrow {
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	background: rgba( 255, 255, 255, 0.15 );
	border: 1px solid rgba( 255, 255, 255, 0.35 );
	color: #fff;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	font-size: 16px;
	line-height: 1;
	padding: 0;
	-webkit-appearance: none;
	appearance: none;
	transition: background 0.2s ease;
}
.report-carrusel .rc-arrow:hover {
	background: rgba( 255, 255, 255, 0.3 );
}
.report-carrusel .rc-prev { left: 16px; }
.report-carrusel .rc-next { right: 16px; }

/* ---------- Editor ---------- */
.rc-edit {
	border: 1px dashed #c3c4c7;
	border-radius: 10px;
	padding: 14px;
	text-align: center;
	background: #f6f7f7;
}
.rc-edit-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.rc-edit-title { font-weight: 600; }
.rc-edit-count {
	font-size: 12px;
	color: #50575e;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 10px;
	padding: 1px 8px;
}
.rc-edit-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 88px, 1fr ) );
	gap: 8px;
	margin-bottom: 12px;
}
.rc-edit-thumb img {
	width: 100%;
	height: 68px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}
.rc-edit-empty {
	color: #666;
	margin: 0 0 12px;
}
