/* -----------------------------------------------------------------------------
   Layout
   ----------------------------------------------------------------------------- */

/* Undo Bond's narrow width on BP pages so content uses full container width (not full screen). */
@media (min-width: 992px) {

	.site-main .container .col-lg-8,
	.site-main .container .narrow-width-block,
	.site-main .container .page-content > *,
	.site-main .container .search-header p > * {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
	}
}


.bp-list:after,
.bp-list:before {
	content: "";
	display: none;
}

/* Two-column layout: sidebar + content (RL-style sidebar when RL is off). */
.bond-bp-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	align-items: flex-start;
}

.bond-bp-sidebar {
	flex: 0 0 auto;
	width: 100%;
	min-width: 0;
	min-height: 100%;
	align-self: stretch;
	padding: 2.5rem 1.25rem 1.5rem;
}

.bond-bp-content {
	flex: 1 1 0;
	min-width: 0;
	padding-top: 2.5rem;
}

@media (min-width: 992px) {
	.bond-bp-sidebar {
		width: 280px;
		flex-shrink: 0;
		border-right: 1px solid var(--color-border);
	}
}
