/**
 * Popup Featured Property – single featured property card.
 * Image with gradient overlay (location, title, price), details row below.
 * No CSS framework; plain CSS only.
 */

.popup-featured-property {
	display: block;
	text-decoration: none;
	color: inherit;
}

.popup-featured-property__media {
	position: relative;
	overflow: hidden;
}

.popup-featured-property__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.popup-featured-property.group:hover .popup-featured-property__img {
	transform: scale(1.05);
}

.popup-featured-property__placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #e5e7eb;
}

.popup-featured-property__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		#1a1a1a 0%,
		rgba(26, 26, 26, 0.4) 50%,
		transparent 100%
	);
	pointer-events: none;
}

.popup-featured-property__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	pointer-events: none;
}

.popup-featured-property__location {
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 0.25rem;
	font-family: Questrial, sans-serif;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.popup-featured-property__title {
	font-family: Playfair Display, Georgia, serif;
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #fff;
	margin: 0 0 0.5rem;
	font-weight: 400;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.popup-featured-property__price {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 500;
	color: #bda674;
	margin: 0;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.popup-featured-property__details {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.875rem;
	color: rgba(46, 53, 61, 0.8);
	font-family: Questrial, sans-serif;
}

.popup-featured-property__sep {
	color: rgba(46, 53, 61, 0.5);
	user-select: none;
}
