.scudo-vehicle-grid {
	display: grid;
	gap: 24px;
	width: 100%;
}

.scudo-vehicle-grid--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scudo-vehicle-grid--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scudo-vehicle-grid--cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scudo-vehicle-card {
	position: relative;
	min-height: 240px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.scudo-vehicle-card:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 175, 55, 0.45);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
}

.scudo-vehicle-card__overlay {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 240px;
	padding: 20px 22px;
	background: linear-gradient(
		180deg,
		rgba(8, 8, 8, 0.1) 0%,
		rgba(8, 8, 8, 0.45) 45%,
		rgba(8, 8, 8, 0.92) 100%
	);
}

.scudo-vehicle-card__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
	min-height: 100%;
}

.scudo-vehicle-card__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.scudo-vehicle-card__brand {
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.scudo-vehicle-card__title {
	margin: 0;
	font-size: 28px;
	line-height: 1.15;
	font-weight: 700;
}

.scudo-vehicle-card__title a {
	color: #ffffff;
	font-size: 28px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.scudo-vehicle-card__title a:hover {
	color: #d4af37;
}

.scudo-vehicle-card__status {
	position: absolute;
	top: 12px;
	right: 12px;
	left: auto;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.3;
	backdrop-filter: blur(6px);
}

.scudo-vehicle-card__status--available {
	background: rgba(16, 120, 55, 0.88);
	color: #ecfdf3;
	border: 1px solid rgba(74, 222, 128, 0.9);
	box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.scudo-vehicle-card__status--booked {
	background: rgba(161, 98, 7, 0.75);
	color: #fef3c7;
	border: 1px solid rgba(251, 191, 36, 0.65);
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
}

.scudo-vehicle-card__status--disabled {
	background: rgba(127, 29, 29, 0.75);
	color: #fee2e2;
	border: 1px solid rgba(248, 113, 113, 0.55);
	box-shadow: 0 4px 14px rgba(239, 68, 68, 0.2);
}

.scudo-vehicle-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	padding-top: 4px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scudo-vehicle-card__price {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.scudo-vehicle-card__price-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.scudo-vehicle-card__price-value {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.scudo-vehicle-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, #d4af37 0%, #b8942d 100%);
	color: #111111;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.scudo-vehicle-card__button:hover {
	background: #ffffff;
	color: #111111;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.scudo-vehicle-grid__empty {
	margin: 0;
}

@media (max-width: 1024px) {
	.scudo-vehicle-grid--cols-3,
	.scudo-vehicle-grid--cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.scudo-vehicle-grid,
	.scudo-vehicle-grid--cols-2,
	.scudo-vehicle-grid--cols-3,
	.scudo-vehicle-grid--cols-4 {
		grid-template-columns: 1fr;
	}

	.scudo-vehicle-card,
	.scudo-vehicle-card__overlay {
		min-height: 210px;
	}

	.scudo-vehicle-card__content {
		gap: 20px;
	}

	.scudo-vehicle-card__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.scudo-vehicle-card__title,
	.scudo-vehicle-card__title a {
		font-size: 22px;
	}

	.scudo-vehicle-card__status {
		top: 10px;
		right: 10px;
		font-size: 7px;
		padding: 2px 7px;
	}
}
