/* UGE Tim Dahle inventory carousel */

.uge-td-unit {
	margin: 12px 0;
	padding: 8px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
}

.uge-td-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 0 2px 6px;
}

.uge-td-brand {
	font-weight: 700;
	font-size: 13px;
	color: #1a3f7a;
}

.uge-td-label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999;
}

.uge-td-track {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.uge-td-track::-webkit-scrollbar {
	display: none;
}

.uge-td-tile {
	flex: 0 0 150px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
	transition: box-shadow 0.15s ease;
}

.uge-td-tile:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

.uge-td-img {
	display: block;
	height: 96px;
	background: #eee;
}

.uge-td-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.uge-td-title {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	color: #333;
	padding: 6px 7px 2px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.uge-td-meta {
	font-size: 11px;
	color: #888;
	padding: 0 7px;
}

.uge-td-price {
	font-size: 13px;
	font-weight: 700;
	color: #b0281a;
	padding: 2px 7px 7px;
	margin-top: auto;
}

/* Sidebar variant: vertical stack instead of a horizontal strip.
   The sidebar column is ~270px, so the thumbnail stays small and the title
   gets the remaining width over two lines. An earlier 84px thumb squeezed
   titles down to "2026 Ford..." which is useless to a shopper. */
.uge-td-sidebar .uge-td-track {
	flex-direction: column;
	max-height: 460px;
	overflow-y: auto;
	overflow-x: hidden;
}

.uge-td-sidebar .uge-td-tile {
	flex: 0 0 auto;
	flex-direction: row;
	align-items: stretch;
	padding: 4px;
	gap: 8px;
}

.uge-td-sidebar .uge-td-img {
	flex: 0 0 68px;
	height: 52px;
	border-radius: 3px;
	overflow: hidden;
}

.uge-td-sidebar .uge-td-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	flex: 1 1 auto;
}

.uge-td-sidebar .uge-td-title {
	padding: 0;
	font-size: 11.5px;
	line-height: 1.2;
	-webkit-line-clamp: 2;
}

.uge-td-sidebar .uge-td-meta {
	padding: 1px 0 0;
	font-size: 10px;
}

.uge-td-sidebar .uge-td-price {
	padding: 1px 0 0;
	margin-top: 0;
	font-size: 12.5px;
}
