/**
 * Repli de la liste des caractéristiques sur la fiche véhicule.
 */

.ve-specs-collapse {
	overflow: hidden;
	position: relative;
	transition: max-height 0.45s ease;
}

.ve-specs-collapse.is-collapsed:after {
	-webkit-backdrop-filter: blur(2.5px);
	backdrop-filter: blur(2.5px);
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0) 0%,
		var(--ve-specs-fade-color, #ffffff) 88%
	);
	bottom: 0;
	content: "";
	display: block;
	height: var(--ve-specs-fade-height, 150px);
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 60%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 60%);
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
}

.ve-specs-toggle {
	display: flex;
	justify-content: center;
	margin: 4px 0 8px;
	position: relative;
	z-index: 2;
}

.ve-specs-toggle__button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--ve-section-title-color, #1c8c4c);
	border-radius: 999px;
	color: var(--ve-section-title-color, #1c8c4c);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	line-height: 1.2;
	padding: 10px 22px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ve-specs-toggle__button:hover,
.ve-specs-toggle__button:focus-visible {
	background: var(--ve-section-title-color, #1c8c4c);
	color: #ffffff;
}

.ve-specs-toggle__icon {
	display: block;
	flex: 0 0 auto;
	height: 14px;
	transition: transform 0.3s ease;
	width: 14px;
}

.ve-specs-toggle__button[aria-expanded="true"] .ve-specs-toggle__icon {
	transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
	.ve-specs-collapse,
	.ve-specs-toggle__icon {
		transition: none;
	}
}
