/*
Theme Name: NinhBinhWeb.net
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.front-villa-list-page .nbw-villa-grid{
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:16px;
}
.front-villa-list-page .nbw-villa-card{
	border:1px solid #e2e8f0;
	border-radius:12px;
	background:#fff;
	overflow:hidden;
	box-shadow:0 8px 20px rgba(15,23,42,.06);
}
.front-villa-list-page .nbw-villa-thumb{
	display:block;
	aspect-ratio:16/10;
	overflow:hidden;
}
.front-villa-list-page .nbw-villa-thumb img{
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .28s ease;
}
.front-villa-list-page .nbw-villa-card:hover .nbw-villa-thumb img{
	transform:scale(1.05);
}
.front-villa-list-page .nbw-villa-body{
	padding:12px;
}
.front-villa-list-page .nbw-villa-body h3{
	margin:0 0 6px;
	font-size:17px;
	line-height:1.35;
	min-height:2.7em;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
}
.front-villa-list-page .nbw-villa-meta{
	color:#64748b;
	font-size:13px;
	margin-bottom:10px;
}
.front-villa-list-page .nbw-villa-row{
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:8px;
	flex-wrap:wrap;
}
.front-villa-list-page .nbw-villa-tags{
	display:flex;
	gap:6px;
}
.front-villa-list-page .nbw-tag{
	font-size:12px;
	border:1px solid #dbeafe;
	background:#eff6ff;
	color:#1d4ed8;
	padding:2px 8px;
	border-radius:999px;
}
.front-villa-list-page .nbw-villa-price{
	font-weight:700;
	color:#1d4ed8;
	font-size:14px;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

.front-villa-list-page .nbw-villa-grid{
	grid-template-columns:1fr;
}

}