
*,
*::before,
*::after {
	box-sizing: border-box;
}
body.bbeui-page {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	-webkit-font-smoothing: antialiased;
}
/* Site wrapper */
body.bbeui-page .site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
/* Header */
body.bbeui-page .site-header {
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
body.bbeui-page .site-header-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	width: 100%;
}
body.bbeui-page .site-logo img {
	display: block;
	width: 30%;
	height: auto;
	max-width: 100%;
	min-width: 320px;
	margin: 2rem auto;
}
/* Content */
body.bbeui-page .site-content {
	flex: 1;
	width: 100%;
	padding: 2rem 0;
}
body.bbeui-page .entry-wrap {
	width: 90%;
	margin: 0 auto;
	padding: 2rem 0;
}
body.bbeui-page .entry-title {
	text-align: center;
	margin-bottom: 2rem;
}
body.bbeui-page .entry-columns {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	align-items: flex-start;
}
body.bbeui-page .entry-content {
	flex: 1;
	min-width: 0;
	padding-right: 1rem;
}
body.bbeui-page .entry-content h2,
body.bbeui-page .entry-content h3,
body.bbeui-page .entry-content h4,
body.bbeui-page .entry-content h5,
body.bbeui-page .entry-content h6 {
	margin: 1rem 0;
}
body.bbeui-page .entry-content hr {
	margin: 2rem 0;
	width: 90%;
}
.entry-content ul,
.entry-content ul ul,
.entry-content ul ul ul {
	margin-left: 0;
	padding-left: 1em;
}
.entry-content ul ul,
.entry-content ul ul ul {
	margin-top: 1em;
}
.entry-content ul li,
.entry-content ul li ul li,
.entry-content ul li ul li ul li {
	margin-bottom: 1em;
}
body.bbeui-page .entry-images {
	flex: 0 0 30%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding-left: 1rem;
}
body.bbeui-page .entry-images figure {
	margin: 0 0 1rem 0;
	padding: 0;
}
body.bbeui-page .entry-images figure img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 320px;
	margin: 0 auto;
}
/* Footer */
body.bbeui-page .site-footer {
	width: 100%;
}
body.bbeui-page .site-footer-inner {
	width: 90%;
	margin: 0 auto;
	padding: 1.5rem 0;
	text-align: center;
	font-size: 0.85rem;
}
body.bbeui-page .footer-text {
	margin-bottom: 0.5rem;
}
body.bbeui-page .footer-copyright {
	margin: 0;
}
/* Stack columns below 768px */
@media ( max-width: 768px ) {
	body.bbeui-page .entry-columns {
		flex-direction: column;
	}
	body.bbeui-page .entry-content {
		padding-right: 0;
	}
	body.bbeui-page .entry-images {
		padding-left: 0;
	}
	body.bbeui-page .entry-images {
		flex: 0 0 auto;
		width: 100%;
	}
	body.bbeui-page .site-logo img {
		width: 50%;
	}
}