/* ==========================================================================
   Do You Rome · Tour card
   ========================================================================== */

.dyr-tour-card {
	position: relative;
	border: 1px solid rgba(31, 31, 31, 0.08);
	border-radius: 24px;
	overflow: visible !important;
	box-shadow:
		0 2px 6px rgba(16, 24, 40, 0.04),
		0 12px 28px rgba(16, 24, 40, 0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	z-index: 1;
}

.dyr-tour-card:hover {
	transform: translateY(-2px);
	border-color: rgba(31, 31, 31, 0.10);
	box-shadow:
		0 4px 10px rgba(16, 24, 40, 0.05),
		0 20px 44px rgba(16, 24, 40, 0.09);
	z-index: 20;
}
