.our-vehicles-page .breadcrumbs a:hover,
.our-vehicles-page .breadcrumbs a:focus {
	color: #fff;
}

.our-vehicles-page .breadcrumbs li span {
	color: #fbd97a;
}

.gallery-list.gallery-main .vehicle-card {
	display: block;
	overflow: hidden;
	cursor: pointer;
	background: #111;
}

.gallery-list.gallery-main .vehicle-card .img-holder {
	display: block;
	overflow: hidden;
}

.gallery-list.gallery-main .vehicle-card img {
	display: block;
	width: 100%;
	transition: transform 350ms ease, filter 350ms ease;
	transform: scale(1);
}

.gallery-list.gallery-main .vehicle-card:hover img,
.gallery-list.gallery-main .vehicle-card:focus img {
	transform: scale(1.055);
	filter: brightness(1.06);
}

.gallery-list.gallery-main .vehicle-card:focus-visible {
	outline: 3px solid #d8c66a !important;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.gallery-list.gallery-main .vehicle-card img {
		transition: none;
	}

	.vehicle-lightbox__image {
		animation: none !important;
	}
}

body.vehicle-lightbox-open {
	overflow: hidden;
}

.vehicle-lightbox {
	position: fixed;
	inset: 0;
	z-index: 20000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px 72px;
	background: rgba(0, 0, 0, .9);
}

.vehicle-lightbox.is-open {
	display: flex;
}

.vehicle-lightbox__dialog {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: min(1120px, 100%);
	max-height: calc(100vh - 80px);
	overflow: hidden;
}

.vehicle-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	box-shadow: 0 16px 50px rgba(0, 0, 0, .55);
}

.vehicle-lightbox__image.slide-from-right {
	animation: vehicle-slide-from-right 320ms ease both;
}

.vehicle-lightbox__image.slide-from-left {
	animation: vehicle-slide-from-left 320ms ease both;
}

@keyframes vehicle-slide-from-right {
	from { opacity: 0; transform: translateX(42px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes vehicle-slide-from-left {
	from { opacity: 0; transform: translateX(-42px); }
	to { opacity: 1; transform: translateX(0); }
}

.vehicle-lightbox__close,
.vehicle-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	color: #fff;
	background: transparent;
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.vehicle-lightbox__close:hover,
.vehicle-lightbox__close:focus,
.vehicle-lightbox__nav:hover,
.vehicle-lightbox__nav:focus {
	color: #fff;
	background: #000;
}

.vehicle-lightbox__close:focus-visible,
.vehicle-lightbox__nav:focus-visible {
	outline: 3px solid #fbd97a;
	outline-offset: 3px;
}

.vehicle-lightbox__close {
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	font-size: 34px;
	font-weight: 300;
	line-height: 1;
	background: rgba(0, 0, 0, .5);
}

.vehicle-lightbox__nav {
	top: 50%;
	width: 54px;
	height: 76px;
	font-size: 46px;
	line-height: 1;
	transform: translateY(-50%);
}

.vehicle-lightbox__nav:hover,
.vehicle-lightbox__nav:focus {
	transform: translateY(-50%) scale(1.06);
}

.vehicle-lightbox__prev {
	left: 0;
}

.vehicle-lightbox__next {
	right: 0;
}

@media only screen and (max-width: 767px) {
	.vehicle-lightbox {
		padding: 64px 44px 52px;
	}

	.vehicle-lightbox__dialog {
		max-height: calc(100vh - 116px);
	}

	.vehicle-lightbox__close {
		top: 0;
		right: 0;
		width: 42px;
		height: 42px;
		font-size: 30px;
	}

	.vehicle-lightbox__nav {
		width: 40px;
		height: 60px;
		font-size: 36px;
	}

	.vehicle-lightbox__prev {
		left: 0;
	}

	.vehicle-lightbox__next {
		right: 0;
	}
}
