.small-listings-grid {
	display: flex;
	justify-content: space-between;
}

.small-listing-item {
	width: 360px;
	height: 256px;
	background-color: white;
	border-radius: 10px;
	cursor: pointer;
}

.small-listing-item > .vehicle-photo-wrapper {
	position: relative;
	width: 360px;
	height: 210px;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.small-listing-item > .vehicle-photo-wrapper > .vehicle-photo {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	background-color: white;
}

.small-listing-item > .vehicle-photo-wrapper > .more-pictures {
	position: absolute;
	background-color: var(--sixty);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: 0.3s ease;
}

.small-listing-item > .vehicle-photo-wrapper > .more-pictures:hover {
	opacity: 1;
	background-color: rgba(var(--sixty-rgb), 0.3);
}

.small-listing-item .vehicle-price {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80px;
	height: 24px;
	background-color: var(--thirty);
	display: flex;
	justify-content: center;
	align-items: center;
}

.small-listing-item .vehicle-price > p {
	margin: 0;
	color: white;
}

.small-listing-item .vehicle-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 46px;
}

.small-listing-item .vehicle-info > .vehicle-title {
	text-transform: uppercase;
	color: var(--sixty);
	margin-left: 10px;
	max-width: 55%;
}

.small-listing-item .vehicle-info > .vehicle-mileage {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-right: 10px;
}

.small-listing-item .vehicle-info > .vehicle-mileage>p {
	color: var(--sixty);
	margin: 0;
}

.small-listing-item .vehicle-info-icon {
	width: 12px;
	height: 12px;
}

.listing-status {
	opacity: 0.7;
	text-transform: uppercase;
	margin-top: 32px;
	margin-bottom: 8px;
}

.more-button-wrapper {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.more-vehicles-btn {
	text-transform: uppercase;
	background-color: var(--thirty);
	color: white;
	border: 0;
	border-radius: 50px;
	font-size: 1rem;
	width: 128px;
	height: 32px;
	margin-top: 8px;
	margin-bottom: 0;
	transition: 0.3s ease;
	cursor: pointer;
}

.more-vehicles-btn:hover {
	background-color: var(--ten)
}

a.small-listing-link, a.listing-link {
  text-decoration: none;
  color: inherit;        
  display: block;        
}


/* INVENTORY LISTINGS */
.listings-grid {
	margin-top: 16px;
	display: grid;
	grid-template-columns: 735px 735px;
	gap: 15px;
}

.listing-item {
	border-radius: 20px;
	border: 2px solid rgba(255, 255, 255, 0.50);
	overflow: hidden;
	display: flex;
	gap: 8px;
	color: white;
	width: 735px;
	height: 216px;
	position: relative;
	cursor: pointer;
}

.listing-item .listing-image-wrapper {
	position: relative;
	width: 370px;
	height: 216px;
	overflow: hidden;
}

.listing-item .listing-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}

.listing-item .listing-image-wrapper > .more-pictures {
	position: absolute;
	background-color: var(--sixty);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: 0.3s ease;
}

.listing-item .listing-image-wrapper > .more-pictures:hover {
  opacity: 1;
  background-color: rgba(var(--sixty-rgb), 0.3);
}

.listing-item .listing-price-wrapper > span {
	font-size: 1rem;
	font-weight: 400;
}

.listing-item .listing-info {
	position: relative;
	flex: 1;
	padding: 8px;
}

.listing-item .listing-title {
	font-weight: 600;
	display: block;
	width: 224px;
}

.listing-item .listing-price-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--thirty);
	color: white;
	width: 112px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.listing-item .vehicle-details {
	position: absolute;
	display: grid;
	grid-template-columns: auto auto;
	gap: 8px;
	top: 70px;
}

.listing-item .detail-item {
	display: flex;
	column-gap: 8px;
	justify-items: start;
	align-items: center;
}

.listing-item .detail-text {
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	font-size: 0.833rem;
}

.listing-item .detail-text > .label {
	opacity: 0.5;
	text-transform: uppercase;
	font-size: 0.833rem;
}

.load-more-btn-wrapper {
	display: flex;
	padding: 32px;
	justify-content: center;
}

.load-more-btn {
	background-color: var(--thirty);
	height: 32px;
	width: 240px;
	text-transform: uppercase;
	border: none;
	border-radius: 50px;
	color: white;
	transition: 0.3s ease;
	cursor: pointer;
	font-size: 1rem;
}

.load-more-btn:hover {
	background-color: var(--ten);
}

.status-bar {
	background-color: var(--ten);
	width: 260px;
	padding: 8px;
	text-align: center;
	transform: rotate(-45deg);
	position: absolute;
	left: -90px;
	top: 20px;
}

.status-bar > span {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1rem;
	color: var(--sixty);
}

@media (max-width: 1550px) {
  .small-listings-grid {
		display: grid;
		grid-template-columns: auto auto;
		gap: 16px;
	}
}

@media (max-width: 450px) {
	.small-listings-grid {
		display: grid;
		grid-template-columns: auto;
		gap: 16px;
	}

	.listings-grid {
		grid-template-columns: 400px;
	}

	.listing-item {
		flex-direction: column;
		height: 450px;
		width: 360px;
	}
}
