/* Le Loft – Mode Vacances : encart affiché au-dessus des formulaires. */

.llv-notice {
	--llv-accent: #c2703d;
	position: relative;
	box-sizing: border-box;
	margin: 0 0 1.5em;
	padding: 1.1em 1.3em 1.15em 1.45em;
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86)),
		var(--llv-accent);
	box-shadow: 0 6px 24px rgba(40, 25, 12, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
	font-size: 0.95em;
	line-height: 1.55;
	color: #33302c;
	text-align: left;
}

.llv-notice::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: linear-gradient(
		180deg,
		var(--llv-b1, var(--llv-accent)) 0 33.4%,
		var(--llv-b2, var(--llv-accent)) 33.4% 66.7%,
		var(--llv-b3, var(--llv-accent)) 66.7% 100%
	);
	border-radius: 14px 0 0 14px;
}

.llv-notice__titre {
	display: block;
	margin: 0 0 0.35em;
	font-weight: 700;
	font-size: 1.05em;
	color: #26221e;
}

.llv-notice p {
	margin: 0 0 0.6em;
}

.llv-notice p:last-child {
	margin-bottom: 0;
}

.llv-notice a {
	color: var(--llv-accent);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.llv-notice a:hover {
	opacity: 0.85;
}

/* Calendrier de RDV embarqué dans l'encart. */
.llv-embed {
	margin-top: 1em;
}

.llv-embed iframe {
	display: block;
	width: 100%;
	height: 620px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	background: #fff;
}

.llv-embed__close {
	display: inline-block;
	margin-top: 0.5em;
	padding: 4px 12px;
	border: none;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.06);
	color: #33302c;
	font-size: 0.85em;
	cursor: pointer;
}

.llv-embed__close:hover {
	background: rgba(0, 0, 0, 0.1);
}

/* Petits écrans : encart plus compact. */
@media (max-width: 600px) {
	.llv-notice {
		padding: 0.9em 1em 0.95em 1.15em;
		border-radius: 12px;
		font-size: 0.92em;
	}

	.llv-notice::before {
		width: 4px;
		border-radius: 12px 0 0 12px;
	}

	.llv-notice__titre {
		font-size: 1em;
	}
}
