/* Sreality Public Styles */

.sreality-properties-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.sreality-property-item {
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.sreality-property-item:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sreality-property-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: #f5f5f5;
}

.sreality-property-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sreality-property-content {
	padding: 20px;
}

.sreality-property-title {
	margin: 0 0 10px 0;
	font-size: 18px;
	color: #333;
}

.sreality-property-description {
	color: #666;
	font-size: 14px;
	margin: 10px 0;
	line-height: 1.5;
}

.sreality-property-price {
	font-size: 18px;
	color: #27ae60;
	margin: 10px 0;
	font-weight: bold;
}

.sreality-property-location {
	color: #999;
	font-size: 13px;
	margin: 10px 0;
	display: flex;
	align-items: center;
}

.sreality-property-location::before {
	content: '📍';
	margin-right: 5px;
}

.sreality-property-features {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
	font-size: 13px;
}

.sreality-property-features li {
	padding: 5px 0;
	color: #666;
}

.sreality-property-features li::before {
	content: '✓';
	color: #27ae60;
	margin-right: 8px;
	font-weight: bold;
}

/* Single Property Styles */
.sreality-property-single {
	max-width: 800px;
	margin: 20px auto;
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sreality-property-single .sreality-property-image {
	width: 100%;
	height: 400px;
}

.sreality-property-details {
	padding: 30px;
}

.sreality-property-single .sreality-property-title {
	font-size: 32px;
	margin-bottom: 20px;
	color: #333;
}

.sreality-property-single .sreality-property-price,
.sreality-property-single .sreality-property-location {
	margin: 15px 0;
	font-size: 16px;
}

.sreality-property-single .sreality-property-description {
	margin: 25px 0;
}

.sreality-property-single .sreality-property-description h2 {
	font-size: 20px;
	margin-bottom: 15px;
}

.sreality-property-single .sreality-property-features {
	margin: 25px 0;
}

.sreality-property-single .sreality-property-features h2 {
	font-size: 20px;
	margin-bottom: 15px;
}

.sreality-property-agent {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #ddd;
}

.sreality-property-agent h3 {
	margin-bottom: 10px;
}
