html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 86px;
}
[id] {
	scroll-margin-top: 86px;
}
.dealer-table-wrap {
	overflow-x: auto;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.dealer-table-wrap:last-child {
	margin-bottom: 0;
}
table.dealer-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-size: .95rem;
}
table.dealer-table caption {
	text-align: left;
	font-family: var(--display);
	font-weight: 600;
	color: var(--text-ink);
	font-size: 1.1rem;
	margin-bottom: .9rem;
}
table.dealer-table th {
	font-family: var(--display);
	font-weight: 600;
	font-size: .78rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--paper);
	background: var(--ink);
	text-align: left;
	padding: .75rem 1rem;
}
table.dealer-table th:first-child {
	border-top-left-radius: 4px;
}
table.dealer-table th:last-child {
	border-top-right-radius: 4px;
}
table.dealer-table td {
	padding: .85rem 1rem;
	border-bottom: var(--rule-dark);
	color: #3c4a57;
	vertical-align: top;
}
table.dealer-table tr:last-child td {
	border-bottom: none;
}
table.dealer-table tr:nth-child(even) td {
	background: rgba(13,16,18,.035);
}
table.dealer-table td:first-child {
	font-weight: 600;
	color: var(--text-ink);
}
table.dealer-table a {
	color: var(--text-ink);
	text-decoration: none;
	border-bottom: 1px solid rgba(192,138,46,.5);
}
table.dealer-table a:hover {
	border-color: var(--brass);
}
table.dealer-table td[data-label="TELEPHONE"],
table.dealer-table td[data-label="CONTACT"] {
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
@media (max-width: 680px) {
	.dealer-table-wrap {
		overflow-x: visible;
	}
	table.dealer-table, table.dealer-table thead, table.dealer-table tbody, table.dealer-table th, table.dealer-table td, table.dealer-table tr {
		display: block;
	}
	table.dealer-table {
		min-width: 0;
	}
	table.dealer-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}
	table.dealer-table tr {
		border: var(--rule-dark);
		border-radius: 6px;
		margin-bottom: 1rem;
		padding: .5rem 1rem;
		background: #fff;
	}
	table.dealer-table tr:nth-child(even) td {
		background: transparent;
	}
	table.dealer-table td {
		border-bottom: none;
		padding: .5rem 0;
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		gap: 1rem;
		border-top: var(--rule-dark);
	}
	table.dealer-table td:first-child {
		border-top: none;
	}
	table.dealer-table td::before {
		content: attr(data-label);
		font-family: var(--display);
		font-weight: 600;
		font-size: .72rem;
		letter-spacing: .05em;
		text-transform: uppercase;
		color: var(--slate);
		flex: none;
	}
}