/**
 * Uncomn Property Listing Styles
 *
 * @package    Uncomn_Property_Listing
 */

/* Import Roboto font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Container */
.upl-listings-container {
	width: 100%;
	margin: 20px 0;
}

.upl-section-title {
	font-family: 'Roboto', sans-serif;
	margin-bottom: 20px;
	font-size: 41px;
    font-weight: 800;
	text-align: center;
    text-transform: uppercase;
}
.upl-listing-item:hover {
	text-decoration: none;
}
.upl-listing-item:hover a {
	text-decoration: none;
}
/* Listings Grid */
.upl-listings {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}

/* Individual Listing Item */
.upl-listing-item {
	display: flex;
	width: 100%;
	height: 130px;
	box-shadow: 0 0 1px #bfbfbf;
	overflow: hidden;
	position: relative;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.upl-listing-link {
	display: flex;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

/* Image Column (30%) */
.upl-listing-image {
	width: 30%;
	height: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.upl-listing-image img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

.upl-placeholder-image {
	width: 100%;
	height: 100%;
	background-color: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Content Column (70%) */
.upl-listing-content {
	width: 70%;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
	position: relative;
	font-family: 'arno-pro', sans-serif !important;
}

/* Title */
.upl-listing-title {
	margin: 0 0 5px 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	font-family: 'Roboto', sans-serif;
}

/* Address */
.upl-listing-address {
	margin: 0 0 5px 0;
	font-size: 14px;
	line-height: 1.4;
}

/* Price */
.upl-listing-price {
	margin: 0 0 5px 0;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
}

/* Category */
.upl-listing-category {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Plus Sign */
.upl-plus-sign {
	color: #fff;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
	position: absolute;
	bottom: 0px;
	right: 0px;
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
	font-family: 'Roboto', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
	.upl-section-title {
		font-size: 20px;
	}
	.upl-listing-item {
		height: auto;
		min-height: 100px;
	}

	.upl-listing-image {
		width: 35%;
	}

	.upl-listing-content {
		width: 65%;
		padding: 8px 12px;
	}

	.upl-listing-title {
		font-size: 14px;
	}

	.upl-listing-address,
	.upl-listing-price {
		font-size: 12px;
	}

	.upl-listing-category {
		font-size: 11px;
	}

	.upl-plus-sign {
		font-size: 20px;
		bottom: 8px;
		right: 12px;
	}
}