/**
 * Hotel thumbnail on the tour detail page's "Luxury Hotel Stays" cards.
 * Not part of the original design HTML (that card was text-only) — added
 * so hotel data sourced from the `hotel` post type can show its featured
 * image, per request. Keeps the card's existing compact proportions
 * rather than letting a raw full-size image break the layout.
 */
.hotel-name-card {
	display: block;
}

.hotel-name-image {
	margin: -21px -19px 14px;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.hotel-name-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
