/**
 * Property Location Styles
 * 
 * Styles for the property location shortcode with red icon
 */

.property-location {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 20px 0;
	font-size: 16px;
	color: #374151;
	line-height: 1.6;
}

.full .property-location__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	stroke: #DC2626; /* Red color */
}

.property-location__text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.property-location__reference {
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #2c2c2c;
	font-size: 14px;
}

.property-location__reference-icon {
	width: 0.95rem;
	height: 0.95rem;
	color: #2c2c2c;
	flex-shrink: 0;
}

.property-location__rest {
	color: inherit;
}

/* Responsive adjustments */
@media (max-width: 640px) {
	.property-location {
		font-size: 14px;
	}
	
	.property-location__icon {
		width: 20px;
		height: 20px;
	}
}
