/* Album cover (Featured Image): force square (1:1) on review posts, overriding
   the theme template's inline aspect-ratio (e.g. 3:2) that crops square covers. */
.wp-block-post-featured-image {
	aspect-ratio: 1 / 1 !important;
}

.wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mwim-review-details {
	margin: 2.5rem 0 1rem;
}

/* Info line */
.mwim-review-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.25rem;
	list-style: none;
	padding: 0.9rem 0;
	margin: 0 0 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 0.95rem;
}

.mwim-review-meta li {
	margin: 0;
}

/* Promo photos — always square (1:1) regardless of source */
.mwim-review-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 1.5rem 0;
}

@media (min-width: 600px) {
	.mwim-review-gallery {
		grid-template-columns: repeat(4, 1fr);
	}
}

.mwim-review-gallery figure {
	margin: 0;
}

.mwim-review-gallery img.mwim-review-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	border-radius: 6px;
	height: auto;
}

/* Artist links: presentation lives in the theme (components.css section 7),
   which renders these as the design system's social icons. The pill-button
   rules that used to sit here fought it -- the theme set colour and opacity
   but had no reason to reset a border it did not know about, so the border
   and radius from here survived and drew a box round every icon. */
