.vs-property-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

.vs-property-item {
	background-color: #ffffff;
	padding: 16px;
	display: flex;
	row-gap: 8px;
	flex-direction: column;
	position: relative;
	transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.vs-property-item:hover {
	transform: translateY(-4px);
	background-color: #f0f0f0;
}

.vs-featured-properties-link::after,
.vs-property-link::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1; /* Чтобы ссылка была сверху всего контента */
}

.vs-property-title {
	margin: 0;
	text-align: center;
}

.vs-property-thumbnail {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.vs-property-floor-plan {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: contain;
}

.vs-property-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}

.vs-property-info-item {
	display: flex;
	column-gap: 4px;
	align-items: baseline;
	justify-content: space-between;
}

.vs-property-info-title {
	font-size: 12px;
}

.vs-property-info-separator {
	content: '';
	display: block;
	flex: 1;
	border-bottom: 1px dashed #c7c7c7;
	width: 100%;
}

.vs-property-info-value {
	font-size: 14px;
}

.vs-property-price {
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 12px;
}

.vs-property-price-block {
	padding: 8px;
	border: 1px dotted #c7c7c7;
}

.vs-property-price-block-title {
	font-size: 12px;
	font-weight: 600;
}

.vs-property-price-block span {
	font-size: 18px;
	color: var(--awb-color4);
}

.vs-project-facility-group-list {
	gap: 32px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.vs-featured-properties-item {
	position: relative;
	transition: transform .3s ease-in-out;
}

.vs-featured-properties-item:hover {
	transform: translateY(-8px);
}

.vs-featured-properties-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
}

.vs-featured-properties-content {
	background-color: var(--awb-color2);
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	padding: 20px;
}

.vs-featured-properties-thumbnail {
	aspect-ratio: 16/9;
	width: 100%;
	object-fit: cover;
}

.vs-featured-properties-title {
	font-size: 18px !important;
	margin: 0;
}

.vs-featured-properties-price {
	font-size: 20px;
	font-weight: 600;
	color: var(--awb-color4);
}