.pb-price-bridge {
	--pb-price-bridge-border: #d9e0e8;
	--pb-price-bridge-navy: #0b3768;
	--pb-price-bridge-muted: #5f6f82;
	margin-block: 2rem;
	max-width: 100%;
	color: #1d2a38;
}

.pb-price-bridge *,
.pb-price-bridge *::before,
.pb-price-bridge *::after {
	box-sizing: border-box;
}

.pb-price-bridge__title {
	margin: 0 0 1rem;
	font-size: clamp(1.35rem, 2.5vw, 1.8rem);
	line-height: 1.4;
}

.pb-price-bridge__table-wrap {
	max-width: 100%;
	overflow-x: auto;
	border: 1px solid var(--pb-price-bridge-border);
	border-radius: 4px;
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.pb-price-bridge__table-wrap:focus-visible {
	outline: 3px solid rgba(11, 55, 104, 0.35);
	outline-offset: 2px;
}

.pb-price-bridge__table {
	width: 100%;
	min-width: 520px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	table-layout: auto;
}

.pb-price-bridge__table th,
.pb-price-bridge__table td {
	padding: 0.85rem 1rem;
	border: 0;
	border-bottom: 1px solid var(--pb-price-bridge-border);
	text-align: left;
	vertical-align: middle;
}

.pb-price-bridge__table th {
	background: #f5f7fa;
	color: var(--pb-price-bridge-muted);
	font-size: 0.85rem;
	font-weight: 700;
}

.pb-price-bridge__table th:last-child,
.pb-price-bridge__table td:last-child {
	width: 9rem;
	text-align: right;
}

.pb-price-bridge__table tbody tr:last-child td {
	border-bottom: 0;
}

.pb-price-bridge__product {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.pb-price-bridge__image {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	object-fit: contain;
	background: #fff;
}

.pb-price-bridge__product-link {
	color: var(--pb-price-bridge-navy);
	font-weight: 700;
	line-height: 1.55;
	text-decoration: none;
}

.pb-price-bridge__product-link:hover,
.pb-price-bridge__product-link:focus-visible {
	text-decoration: underline;
}

.pb-price-bridge__price {
	white-space: nowrap;
	color: #ba1d23;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.pb-price-bridge__directory {
	margin: 0.85rem 0 0;
	text-align: right;
}

.pb-price-bridge__directory a {
	color: var(--pb-price-bridge-navy);
	font-weight: 700;
}

.pb-price-bridge__cta {
	margin: 1rem 0 0;
	text-align: center;
}

.pb-price-bridge__cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-height: 52px;
	padding: 0.75rem 1.5rem;
	border: 1px solid var(--pb-price-bridge-navy);
	border-radius: 4px;
	background: var(--pb-price-bridge-navy);
	color: #fff;
	font-weight: 800;
	line-height: 1.4;
	text-decoration: none;
}

.pb-price-bridge__cta a:hover,
.pb-price-bridge__cta a:focus-visible {
	background: #072b54;
	color: #fff;
}

.pb-price-bridge__cta a:focus-visible {
	outline: 3px solid rgba(11, 55, 104, 0.35);
	outline-offset: 3px;
}

.pb-price-bridge__fallback {
	margin-block: 1rem;
	padding: 1rem;
	border-left: 3px solid #8090a0;
	background: #f7f8fa;
	color: #465668;
}

@media (max-width: 520px) {
	.pb-price-bridge__table {
		display: block;
		min-width: 0;
		table-layout: fixed;
	}

	.pb-price-bridge__table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.pb-price-bridge__table tbody {
		display: block;
	}

	.pb-price-bridge__table tr {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		border-bottom: 1px solid var(--pb-price-bridge-border);
	}

	.pb-price-bridge__table tbody tr:last-child {
		border-bottom: 0;
	}

	.pb-price-bridge__table td,
	.pb-price-bridge__table tbody tr:last-child td {
		display: block;
		min-width: 0;
		border-bottom: 0;
	}

	.pb-price-bridge__table th,
	.pb-price-bridge__table td {
		padding: 0.7rem 0.5rem;
	}

	.pb-price-bridge__table td:last-child {
		width: auto;
		padding-left: 0.25rem;
		font-size: 0.9rem;
	}

	.pb-price-bridge__image {
		flex-basis: 46px;
		width: 46px;
		height: 46px;
	}

	.pb-price-bridge__product {
		gap: 0.5rem;
		min-width: 0;
	}

	.pb-price-bridge__product-link {
		min-width: 0;
		font-size: 0.9rem;
		line-height: 1.45;
		overflow-wrap: anywhere;
	}

	.pb-price-bridge__cta a {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pb-price-bridge * {
		scroll-behavior: auto !important;
	}
}
