.vv-featured-hotels-wrapper {
	width: 100%;
}

.vv-header {
	margin-bottom: 40px;
}

.vv-header-label {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	opacity: 0.7;
}

.vv-header-headline {
	font-size: 32px;
	margin: 0 0 15px 0;
}

.vv-header-description {
	font-size: 16px;
	margin: 0;
	opacity: 0.8;
}

.vv-hotel-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.vv-hotel-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: hidden;
	position: relative;
}

.vv-hotel-card-image {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.vv-hotel-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vv-hotel-card-image::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	pointer-events: none;
}

.vv-hotel-card-logo {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	z-index: 2;
}

.vv-hotel-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.vv-hotel-card-category {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(0,0,0,0.7);
	color: #fff;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	text-transform: uppercase;
	z-index: 2;
}

.vv-hotel-card-content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.vv-hotel-name {
	font-size: 20px;
	margin: 0 0 10px 0;
}

.vv-hotel-location {
	font-size: 14px;
	opacity: 0.6;
	margin-bottom: 15px;
}

.vv-hotel-desc {
	font-size: 15px;
	margin-bottom: 25px;
	flex-grow: 1;
}

.vv-hotel-btn {
	display: inline-block;
	padding: 12px 24px;
	background: #222;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.vv-hotel-btn:hover {
	background: #000;
}

.vv-bottom-note {
	margin-top: 50px;
	padding: 40px;
	text-align: center;
	background: #f9f9f9;
}

.vv-bottom-note-label {
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.vv-bottom-note-headline {
	font-size: 24px;
	margin: 0 0 15px 0;
}

.vv-bottom-note-desc {
	margin: 0;
}