:root {
	--rgr-bg: #0f1115;
	--rgr-card: #161a21;
	--rgr-text: #e6ebf2;
	--rgr-muted: #9aa3af;
	--rgr-accent: #5eead4;
	--rgr-danger: #f87171;
	--rgr-success: #34d399;
}

.rgr-review {
	background: var(--rgr-card);
	color: var(--rgr-text);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
	margin: 24px 0;
}

.rgr-review__header {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 16px;
	align-items: center;
	padding: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
}

.rgr-review__thumb {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.rgr-review__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rgr-review__badge {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: var(--rgr-accent);
	color: #0b111c;
	font-weight: 800;
	font-size: 24px;
	line-height: 1;
	padding: 8px 10px;
	border-radius: 10px;
	box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.rgr-review__title {
	font-size: 20px;
	font-weight: 700;
}

.rgr-review__body { padding: 0 16px 16px; }

.rgr-review__summary {
	color: var(--rgr-text);
	opacity: 0.95;
	margin: 8px 0 16px;
}

.rgr-review__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.rgr-review__list-title { font-weight: 700; margin-bottom: 8px; }

.rgr-review__list ul { margin: 0; padding-left: 18px; }

.rgr-review__list--pros li { list-style: '\2714\FE0F  '; color: var(--rgr-success); }
.rgr-review__list--cons li { list-style: '\2716\FE0F  '; color: var(--rgr-danger); }

.rgr-review__bar {
	margin-top: 16px;
	height: 10px;
	background: rgba(255,255,255,0.08);
	border-radius: 999px;
	overflow: hidden;
}

.rgr-review__bar-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--rgr-danger), var(--rgr-accent));
	width: 0;
	transition: width 0.6s ease;
}

/* Badge vignette dans les listes d’articles */
.rgr-thumb-wrap {
	position: relative;
	display: inline-block;
}
.rgr-thumb-wrap img {
	display: block;
}
.rgr-thumb-badge {
	position: absolute;
	bottom: 6px;
	right: 6px;
	background: var(--rgr-accent);
	color: #0b111c;
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
	padding: 6px 8px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

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