/* 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; }
}

/* book-button:start */
/* "Book Now" is the one action on a listing, so it reads as a button rather
   than a stray sentence. Pill and accent colour match the CTA buttons the sites
   already use on their own pages; the custom properties are the theme's, so a
   change of accent carries through here. */
.entry-content p.book { clear: none; margin: 12px 0 0; }
.entry-content p.book > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 9999px;
	background-color: var(--accent, #006ba6);
	color: var(--base-4, #ffffff);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .15s ease;
}
.entry-content p.book > a:hover,
.entry-content p.book > a:focus-visible {
	background-color: var(--contrast, #2d3663);
	color: var(--base-4, #ffffff);
	text-decoration: none;
}
.entry-content p.book > a:focus-visible {
	outline: 2px solid var(--contrast, #2d3663);
	outline-offset: 2px;
}
/* 13px of padding against a 15px/1.2 label gives a 44px target, which is the
   touch-target floor. The desktop button is 38px, which is fine for a pointer. */
@media (max-width: 600px) {
	.entry-content p.book > a { width: 100%; padding: 13px 22px; }
}
/* book-button:end */
