@charset "UTF-8";

ul.properties {
	row-gap: 110px;
	column-gap: 24px;
	max-width: none;
}

ul.properties li {
	padding-bottom: 0;
	width: calc(33.3333% - 16px);
	position: relative;
	padding-bottom: 67px;
}

ul.properties .card {
	background: #fff;
	overflow: hidden;
}

ul.properties .card .card_img {
  width: 100%;
  display: block;
}

/* Status tag */
ul.properties .card .card_status-group {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 16px 0 8px;
	display: flex;
	gap: 8px;
	align-items: center;
}
ul.properties .card .card_status {
	background: #2283DD; /* blue */
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0;
	text-align: center;
	padding: 8px;
	display: inline-block;
	box-sizing: border-box;
	min-width: 58px;	
}
ul.properties .card .card_status.orange {
	background: #F28827; /* orange */
}

ul.properties .card .card_status.red {
	background: #DD2225; /* red */
}


/* Info rows */
ul.properties .card .card_info {
  padding: 0;
}

ul.properties .card .card_title {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: 0;
	margin-bottom: 16px;
	min-height: 61px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

ul.properties .card .card_img-wrapper {
	aspect-ratio: 3 / 2;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin-bottom: 16px;
	background-color: #4C4C4C;
}

ul.properties .card .card_img {
	height: 100%;
	width: auto;
	display: block;
	object-position: center;
    object-fit: cover;
}

ul.properties .card .card_location {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
}

ul.properties .card .card_info-row {
	display: flex;
	margin-bottom: 6px;
	align-items: center;
}
ul.properties .card .card_info-row:nth-child(3) {
	align-items: flex-start;
}

ul.properties .card .card_info-row:nth-child(2)

ul.properties .card .card_info-row + .card_info-row {
	margin-top: 16px;
}

ul.properties .card .card_label {
	background: #222;
	color: #fff;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0;
	padding: 8px;
	margin-right: 16px;
	min-width: 58px;
	text-align: center;
	box-sizing: border-box;
}

ul.properties .card .card_price {
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0;
	color: #F1831EF5;
}

ul.properties .card .card_price > span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
	color: #000000;
}

ul.properties .card .card_sub-price {
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
	color:#222222;
	margin-top: 8px;
}

/* Description */
ul.properties .card .card_description {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	color: #F1831EF5;
	margin-top: 16px;
	max-height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

ul.properties .card.card_compact .card_description	{
	margin-top: 50px;
	margin-bottom: 24px;
	max-height: 63px;
	-webkit-line-clamp: 3;
}

ul.properties .card .card_description strong {
	color: #F1831EF5;
}

/* Update date */
ul.properties .card .card_update {
	padding: 16px 0 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0;
	color: #7E7E7E;
	border-top: 1px solid #D4D4D4;
	position: absolute;
	bottom: 16px;
	width: 100%;
	box-sizing: border-box;
}

ul.properties .card.card-top .card_inner {
    padding: 0 16px;
}

ul.properties .card.card-top .card_update {
    padding-left: 16px;
    padding-right: 16px;
    margin-right: -16px;
    margin-left: -16px;
}

@media (min-width: 960px) {
    ul.properties {
        max-width: none;
    }
}

@media screen and (min-width: 720px) {
	ul.properties .card .card_price {
		margin-top: 5px;
	}
}

@media screen and (max-width: 719px) {
	ul.properties {
		gap: 32px 12px;
	}
	ul.properties li {
		width: calc(50% - 6px);
	}
	ul.properties .card .card_status-group {
		font-size: 8px;
		overflow: visible;
		white-space: normal;
		margin-top: 12px;
		margin-bottom: 4px;
	}
	ul.properties .card .card_status {
		font-size: 10px;
		padding: 4px;
		min-width: 38px;
	}
	ul.properties .card .card_title {
		font-size: 14px;
		min-height: 36px;
		margin-bottom: 12px;
	}

	ul.properties .card .card_img {
		margin-bottom: 12px;
	}

	ul.properties .card  .card_info-row {
		flex-direction: column;
		align-items: flex-start;
		font-size: 14px;
	}

	ul.properties .card .card_label {
		font-size: 10px;
		padding: 4px;
		min-width: 38px;
		margin-bottom: 4px;
	}

	ul.properties .card .card_price {
		font-size: 20px;
	}

	ul.properties .card .card_price > span {
		font-size: 14px;
	}
	ul.properties .card .card_sub-price {
		font-size: 14px;
		margin-top: 4px;
	}

    ul.properties .card .card_location {
        font-size: 14px;
        width: 100%;
    }
	ul.properties .card .card_description {
		font-size: 14px;
		margin-top: 12px;
		max-height: 90px;
		-webkit-line-clamp: 5;
	}

	ul.properties .card.card_compact .card_description	{
		max-height: 90px;
		-webkit-line-clamp: 5;
	}

	ul.properties .card .card_update {
		font-size: 12px;
		margin-top: 12px;
		padding-top: 12px;
		bottom: 12px;
	}

    ul.properties .card.card-top .card_inner {
        padding: 0 12px;
    }

    ul.properties .card.card-top .card_update {
        padding-left: 12px;
        padding-right: 12px;
        margin-right: -12px;
        margin-left: -12px;
    }
}

/* Side Banner that have editable text content */
.side-banner {
	display: block;
	margin: 0 auto;
	max-width: 1200px;
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
	-webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
	.text-highlight {
		background: linear-gradient(transparent 53%, #F0831E33 60%);
	}
	.text-orange {
		color: #F1831EF5;
	}
	.side-banner_inner {
		text-align: left;
		position: relative;
		padding: 32px 16px;
	}

	.side-banner_bg {
		margin-top: 20px;
		margin-bottom: 20px;
		img {
			width: auto;
			height: auto;
			max-width: 100%;
			display: block;
			object-fit: cover;
		}
		&::after {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			width: 152px;
			height: 100%;
			background: linear-gradient(90deg, #FFF 50.48%, rgba(255, 255, 255, 0.00) 100%);
			display: none;
		}
	}

	.side-banner_label {
		color: #FFF;
		font-size: 14px;
		font-weight: 700;
		line-height: normal;
		padding: 4px 22px 5px;
		background: #000;
		display: inline-block;
		text-align: center;
	}
	.side-banner_label em {
		font-size: 12px;
	}
	.side-banner_title{
		color: #000;
		font-size: 20px;
		font-weight: 700;
		line-height: normal;
		margin-top: 8px;
	}
	.side-banner_desc {
		color: #000;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.5;
		margin-top: 8px;
		em {
			font-size: 10px;
		}
	}
	.side-banner_notes {
		color: #000;
		font-size: 10px;
		font-weight: 400;
		line-height: normal;
		margin-top: 4px;
	}
	.side-banner_content {
		background-color: #fff;
	}
	.side-banner_button {
		font-size: 14px;
		font-weight: 900;
		line-height: 1.5;
		min-height: 48px;
		max-width: 100%;
		margin: 16px auto 0;
		background-color: #F1831EF5;
		-webkit-box-shadow: 0px 6px 0px 0px #BC6617F5;
		box-shadow: 0px 6px 0px 0px #BC6617F5;
		color: #fff;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-line-pack: center;
		align-content: center;
		border-radius: 10px;
		text-align: center;
		padding: 9px 46px 6px 20px;
		box-sizing: border-box;
		letter-spacing: 0;
		&::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.05);
		}
		&::after {
			content: "";
			position: absolute;
			right: 20px;
			top: 50%;
			transform: translateY(-50%);
			display: block;
			width: 18px;
			height: 18px;
			background: url(/assets/common/images/icn_clicle.svg) no-repeat 50% 50%;
			background-size: contain;
		}
	}	
}

@media screen and (min-width: 720px) and (max-width: 1080px) {
	.delmd {
		display: none;
	}
}

@media screen and (max-width: 1080px) {
	.delmb {
		display: none;
	}
}

@media screen and (min-width: 720px) {
	.side-banner {
		.side-banner_inner {
			padding: 35px 0 30px 40px;
			padding: 2.45cqw 0 2.5cqw 2.8cqw;
		}
		.side-banner_bg {
			max-width: 50%;
			position: absolute;
			top: 0;
			right: 0;
			margin-top: 0;
			margin-bottom: 0;
			height: 100%;
			padding-left: 76px;
			&::after {
				display: block;
			}
			img {
				width: auto;
				height: 100%;
				display: block;
				object-fit: cover;
			}
		}

		.side-banner_label {
			font-size: 20px;
			font-size: clamp(14px, 4.5cqw, 24px);
			padding-left: 2.8cqw;
			padding-right: 2.8cqw;
		}

		.side-banner_label em {
			font-size: 16px;
			font-size: clamp(12px, 4.3cqw, 20px);
		}

		.side-banner_title{
			font-size: 40px;
			font-size: clamp(20px, 7.4125cqw, 40px);
			margin-top: 15px;
		}

		.side-banner_content,
		.side-banner_header {
			position: relative;
			max-width: calc(50% - 39px);
			z-index: 1;
			container-type: inline-size;
		}

		.side-banner_desc {
			font-size: 20px;
			font-size: clamp(14px, 3.7cqw, 20px);
			
			em {
				font-size: 12px;
				font-size: clamp(10px, 3.4125cqw, 12px);
			}
		}

		.side-banner_notes {
			font-size: 14px;
			font-size: clamp(10px, 2.6cqw, 14px);
		}

		.side-banner_button {
			font-size: 20px;
			font-size: clamp(14px, 4.5cqw, 24px);
			min-height: 13.68cqw;
			cursor: pointer;
			margin: 23px 0 0;
			padding: 9px clamp(10px, 19cqw, 98px) 6px clamp(10px, 15cqw, 74px);
			&::before {
				-webkit-transition: all 0.2s;
				transition: all 0.2s;
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				z-index: 2;
				display: block;
				width: 0%;
				height: calc(100% + 6px);
				background-color: rgba(255, 255, 255, 0.1);
				border-radius: 10px;
			}
			&::after {
				right: clamp(34px, 13.5cqw, 71px);
			}
		}

		.side-banner_button:hover {
			/* background-color: rgba(241, 131, 30, 0.7); */
			&::before {
				width: 100%;
			}
		}
	}
}