/*
 * Media Queries
 */ /* 400 */ /* 480 */ /* 768 */ /* 1024 */ /* 1280 */ /* 1440 */

/*
 * Theme layer for details that are awkward or impossible to express cleanly in theme.json.
 */

:root {
	--bb-gutter: max(var(--wp--custom--spacing--20), min(4vw, var(--wp--custom--spacing--40)));
	--bb-flow-space: var(--wp--custom--spacing--24);
	--bb-flow-space-lg: var(--wp--custom--spacing--64-80);
}



html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(0px + var(--wp--custom--spacing--32));
	scroll-padding-top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--wp--custom--spacing--32));
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

:where(.wp-site-blocks *:focus-visible) {
	outline: 2px solid var(--wp--preset--color--signal-blue);
	outline-offset: 3px;
}

:where(h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p) {
	text-wrap: pretty;
}

:where(pre) {
	overflow-x: auto;
}



.bb-site-header {
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--wp--preset--color--border);
	position: sticky;
	top: 0px;
	top: var(--wp-admin--admin-bar--height, 0px);
	z-index: 20;
}

.bb-site-header .wp-block-navigation__responsive-container-open,
.bb-site-header .wp-block-navigation__responsive-container-close {
	border-radius: var(--wp--custom--radius--sm);
	padding: var(--wp--custom--spacing--8);
}

.bb-site-header .wp-block-navigation-item__content {
	border-radius: var(--wp--custom--radius--sm);
	outline-offset: 4px;
}

.bb-site-footer {
	border-top: 1px solid var(--wp--preset--color--border);
}

footer {
	margin: 0;
}
.is-style-bb-section {
	border-top: 1px solid var(--wp--preset--color--border);
	padding-top: var(--wp--preset--spacing--80-112);
	padding-bottom: var(--wp--preset--spacing--80-112);
}

	.is-style-bb-section#tools {
		margin-top: 0;
	}

.is-style-bb-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--lg);
	box-shadow: var(--wp--custom--shadow--card);
	padding: var(--wp--preset--spacing--24);
}

.is-style-bb-card-hero {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--lg);
	box-shadow: var(--wp--custom--shadow--card);
	padding: var(--wp--preset--spacing--24);
}

.is-style-bb-callout {
	background: var(--wp--preset--color--mint);
	border-left: 4px solid var(--wp--preset--color--accent);
	border-radius: var(--wp--custom--radius--md);
	padding: var(--wp--preset--spacing--24);
}

.bb-card-link {
	-webkit-text-decoration: none;
	text-decoration: none;
}

.bb-card-link:hover {
	border-color: color-mix(in srgb, var(--wp--preset--color--accent) 45%, var(--wp--preset--color--border));
	transform: translateY(-2px);
}

.wp-block-button__link,
.wp-block-search__button,
.bb-card-link {
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.is-style-bb-eyebrow,
.is-style-bb-meta {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	line-height: 1.4;
}

.is-style-bb-eyebrow {
	color: var(--wp--preset--color--accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.is-style-bb-meta {
	color: var(--wp--preset--color--muted);
}

.is-style-bb-pill-list,
.is-style-bb-divided-list,
.is-style-checkmark-list {
	list-style: none;
	padding-left: 0;
}

.is-style-bb-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--8);
}

.is-style-bb-pill-list li {
	background: var(--wp--preset--color--secondary);
	border-radius: 999px;
	color: var(--wp--preset--color--primary);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 700;
	line-height: 1.2;
	padding: 0.35rem 0.7rem;
}

.is-style-bb-divided-list li {
	border-top: 1px solid var(--wp--preset--color--border);
	padding-top: var(--wp--preset--spacing--20);
	padding-bottom: var(--wp--preset--spacing--20);
}

.is-style-bb-divided-list li:first-child {
	border-top: 0;
	padding-top: 0;
}

.is-style-checkmark-list li {
	padding-left: 1.6rem;
	position: relative;
}

.is-style-checkmark-list li::before {
	color: var(--wp--preset--color--accent);
	content: "\2713";
	font-weight: 800;
	left: 0;
	position: absolute;
}

.bb-post-list .wp-block-post {
	border-top: 1px solid var(--wp--preset--color--border);
	padding-top: var(--wp--preset--spacing--32);
	padding-bottom: var(--wp--preset--spacing--32);
}

.bb-post-list .wp-block-post:first-child {
	border-top: 0;
	padding-top: 0;
}

.wp-block-post-content > :where(*) + :where(*) {
	margin-top: var(--bb-flow-space);
}

.wp-block-post-content > :where(h2, h3, h4) {
	margin-top: var(--bb-flow-space-lg);
}



.wp-block-column .is-style-bb-card {
	height: 100%;
}

@media (max-width: 43.75em) {
	.bb-site-header .wp-block-group,
	.bb-site-footer .wp-block-group {
		align-items: flex-start;
	}
}





