.fdv-rec-wrapper {
	--fdv-rec-primary: #AD0000;
	--fdv-rec-text: #2b2b2b;
	--fdv-rec-muted: #767676;
	--fdv-rec-bg: #ffffff;
	--fdv-rec-border: #e8e8e8;
	max-width: 1100px;
	margin: 0 auto;
	box-sizing: border-box;
}
.fdv-rec-wrapper *,
.fdv-rec-wrapper *::before,
.fdv-rec-wrapper *::after {
	box-sizing: border-box;
}

.fdv-rec-slider {
	position: relative;
	overflow: hidden;
	padding: 0 44px;
}

.fdv-rec-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.fdv-rec-slide {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 6px;
}

.fdv-rec-slider[data-layout="2"] .fdv-rec-slide {
	flex: 0 0 50%;
	max-width: 50%;
}

@media (max-width: 700px) {
	.fdv-rec-slider[data-layout="2"] .fdv-rec-slide {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.fdv-rec-card {
	background: var(--fdv-rec-bg);
	border: 1px solid var(--fdv-rec-border);
	border-radius: 14px;
	padding: 22px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.fdv-rec-card-img img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.fdv-rec-card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;
}

.fdv-rec-stelle {
	color: var(--fdv-rec-primary);
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 1;
}

.fdv-rec-testo {
	color: var(--fdv-rec-text);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}

.fdv-rec-footer {
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid var(--fdv-rec-border);
}

.fdv-rec-nome {
	font-weight: 700;
	color: var(--fdv-rec-text);
	font-size: 14px;
}

.fdv-rec-viaggio {
	color: var(--fdv-rec-muted);
	font-size: 13px;
	margin-top: 2px;
}

.fdv-rec-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--fdv-rec-bg);
	border: 1px solid var(--fdv-rec-border);
	border-radius: 50%;
	width: 38px;
	height: 38px;
	cursor: pointer;
	font-size: 14px;
	color: var(--fdv-rec-text);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	z-index: 2;
}
.fdv-rec-arrow:hover {
	background: #f5f5f5;
}
.fdv-rec-prev { left: 0; }
.fdv-rec-next { right: 0; }

.fdv-rec-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.fdv-rec-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--fdv-rec-border);
	border: none;
	padding: 0;
	cursor: pointer;
}

.fdv-rec-dot.is-active {
	background: var(--fdv-rec-primary);
}

.fdv-rec-cta {
	text-align: center;
	margin-top: 26px;
}

.fdv-rec-button {
	display: inline-block;
	background: var(--fdv-rec-primary);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	padding: 13px 32px;
	border-radius: 8px;
	transition: opacity 0.2s ease;
}
.fdv-rec-button:hover {
	opacity: 0.88;
	color: #fff;
}

@media (max-width: 500px) {
	.fdv-rec-slider {
		padding: 0 34px;
	}
	.fdv-rec-arrow {
		width: 32px;
		height: 32px;
	}
}
