/* Shared city-listing layout */
.entry-content > p:has(> img),
.entry-content > p:has(> picture),
.entry-content > p.listing-placeholder {
	float: left;
	width: 180px;
	height: 180px;
	margin: 0 24px 14px 0;
}
.entry-content > p > img,
.entry-content > p > picture > img {
	display: block;
	width: 100% !important;
	aspect-ratio: 1 / 1;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.entry-content > p.listing-placeholder {
	display: grid;
	place-items: center;
	box-sizing: border-box;
	padding: 14px;
	background: #f5f7f8;
	border: 1px solid #e6eaed;
	color: #9aa5ad;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
}
.entry-content > hr {
	clear: both;
	height: 0;
	margin: 28px 0;
	border: 0;
}
.entry-content > h2 { margin: 0 0 8px; }
.entry-content .contacts { font-size: 18px; }
.entry-content .highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 6px 0 0;
}
.entry-content .highlights .badge {
	font-size: 14px;
	line-height: 1.2;
	padding: 4px 7px;
}
@media (max-width: 600px) {
	.entry-content > p:has(> img),
	.entry-content > p:has(> picture),
	.entry-content > p.listing-placeholder {
		float: none;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		margin: 0 0 16px;
	}
	.entry-content > h2 { margin: 0 0 8px; }
}
