/**
 * smg/review-meta - front end and editor styles.
 *
 * Colours and faces come from the active design system, "SMG Navy and Gold
 * Editorial": navy #08122a, ink #151f33, slate #5a6680, hairline #e4e8f1,
 * gold #c8a24c as the single accent, Newsreader for display, Plus Jakarta Sans
 * for body. No second accent, no colour outside that palette.
 *
 * Only the things a core block cannot express live here: the round avatar and
 * its monogram fallback, the star row, and the small-caps stamp. Layout,
 * spacing and section colour are done with block attributes so they stay
 * editable in Gutenberg.
 */

.smg-rvm {
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

/* ---------- avatar ---------- */
.smg-rvm--avatar {
	line-height: 0;
}
.smg-rvm__photo,
.smg-rvm__mono {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: block;
}
.smg-rvm__photo {
	object-fit: cover;
	background: #f4f6fb;
}
.smg-rvm__mono {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4f6fb;
	border: 1px solid #e4e8f1;
	color: #5a6680;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
}

/* ---------- stamp: record number + source ---------- */
.smg-rvm--stamp {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
}
.smg-rvm__record {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #5a6680;
	font-variant-numeric: tabular-nums;
}
.smg-rvm__source {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #5a6680;
	border: 1px solid #e4e8f1;
	border-radius: 8px;
	padding: 2px 7px;
}

/* ---------- identity: name, stars, visa class ---------- */
.smg-rvm--identity {
	margin-bottom: 10px;
}
.smg-rvm__who {
	display: flex;
	align-items: center;
	gap: 13px;
	flex-wrap: wrap;
}
.smg-rvm__name {
	font-family: "Newsreader", Georgia, serif;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: #08122a;
}
.smg-rvm__stars {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1;
	white-space: nowrap;
}
.smg-rvm__stars .on {
	color: #c8a24c;
}
.smg-rvm__stars .off {
	color: #e4e8f1;
}
.smg-rvm__visa {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #5a6680;
}

/* ---------- note: no-comment line and edited date ---------- */
.smg-rvm__nocomment {
	font-size: 0.95rem;
	color: #5a6680;
	margin: 0;
}
.smg-rvm__edited {
	font-size: 0.78rem;
	color: #5a6680;
	font-style: italic;
	margin: 14px 0 0;
}

/* ---------- editor placeholder ---------- */
.smg-rvm--editor {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 12px;
	border: 1px dashed #e4e8f1;
	border-radius: 8px;
	background: #f4f6fb;
}
.smg-rvm__tag {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #08122a;
}
.smg-rvm__hint {
	font-size: 12.5px;
	color: #5a6680;
}

/* ---------- record rhythm inside the Query Loop ---------- */
.smg-reviews .wp-block-post {
	padding: 30px 0;
	border-bottom: 1px solid #e4e8f1;
}
.smg-reviews .wp-block-post-content p {
	font-family: "Newsreader", Georgia, serif;
	font-size: 1.0625rem;
	line-height: 1.66;
	color: #151f33;
	max-width: 66ch;
}
.smg-reviews .wp-block-post-date {
	font-size: 0.78rem;
	font-weight: 600;
	color: #151f33;
	font-variant-numeric: tabular-nums;
}

@media (max-width: 781px) {
	.smg-rvm__photo,
	.smg-rvm__mono {
		width: 44px;
		height: 44px;
		font-size: 14px;
	}
	.smg-reviews .wp-block-post-content p {
		font-size: 1.02rem;
	}
}
