/* Slight rotation + layered "stacked cut-paper" shadow. Apply
   .vcs-paper-card to any Elementor container, image, or card element.
   Alternates rotation direction via nth-of-type so a row of cards
   doesn't all lean the same way (reads as scattered paper cutouts,
   not a uniform tilt). */

.vcs-paper-card{
	transform: rotate(-1.2deg);
	box-shadow: 5px 8px 0 rgba(21,19,15,0.08);
	transition: transform 0.2s ease;
}
.vcs-paper-card:nth-of-type(even){
	transform: rotate(1.4deg);
}
.vcs-paper-card:hover{
	transform: rotate(0deg) translateY(-3px);
}

@media (prefers-reduced-motion: reduce){
	.vcs-paper-card{ transition: none; }
}
