/*
 * Geordie Print Co - site design.
 *
 * Sections are dropped into ordinary page content, so each one has to break out
 * of whatever width the theme wraps content in. That is what .bpt-s does, and
 * why html gets an overflow-x guard: 100vw includes the scrollbar gutter, and
 * without the guard that gutter shows up as a horizontal scroll on Windows.
 */

html.bpt-has-sections { overflow-x: hidden; }

/*
 * Elementra ships an orange accent, which fights the blue in the logo on every
 * link, button and hover in the theme's own chrome. Rather than chase each one,
 * repoint the theme's own colour variables at the brand blue - one change,
 * everything the theme paints follows it.
 *
 * The selector is deliberately over-specific: the theme declares these on
 * ".scheme_default, body.scheme_default", and this has to win no matter which
 * stylesheet the host loads last.
 */
html body[class*="scheme_"],
html body[class*="scheme_"] [class*="scheme_"] {
	--theme-color-link: #1F4495;
	--theme-color-hover: #16357A;
	--theme-color-alt_link: #6E93E0;
	--theme-color-alt_hover: #9FB6E8;
	--theme-color-link_07: rgba( 31, 68, 149, .7 );
	--theme-color-link_blend: #2B54AC;
}

.bpt-s {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc( 50% - 50vw );
	margin-right: calc( 50% - 50vw );
	padding: 88px 0;
	box-sizing: border-box;
	font-family: inherit;
	color: var( --bpt-ink, #101114 );
	line-height: 1.6;
}

.bpt-s *,
.bpt-s *::before,
.bpt-s *::after { box-sizing: border-box; }

.bpt-wrap {
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.bpt-wrap--narrow { max-width: 860px; }

/* The front page is all sections - the theme's page title and its content
   padding just leave a white band above and below the design. */
.bpt-front .page_content_wrap { padding-top: 0 !important; padding-bottom: 0 !important; }

.bpt-front .page_title,
.bpt-front .top_panel_title,
.bpt-front .elementra_tabs_content > .page_title,
.bpt-front .breadcrumbs { display: none !important; }

.bpt-front .content_wrap > .content,
.bpt-front article.page .entry-content,
.bpt-front .post_content_single { padding-top: 0 !important; margin-top: 0 !important; }

/* ------------------------------------------------------------------ */
/* Shared bits                                                         */
/* ------------------------------------------------------------------ */

.bpt-s h1,
.bpt-s h2 {
	margin: 0 0 .5em;
	line-height: 1.12;
	letter-spacing: -.02em;
	font-weight: 800;
	color: inherit;
}

/* The theme's heading face is Inter Tight, whose word spacing is very narrow -
   at card-heading size two words start to read as one. */
.bpt-s h3 {
	margin: 0 0 .5em;
	line-height: 1.25;
	letter-spacing: .005em;
	word-spacing: .1em;
	font-weight: 800;
	color: inherit;
}

.bpt-s p { margin: 0 0 1em; }
.bpt-s p:last-child { margin-bottom: 0; }

.bpt-head {
	max-width: 720px;
	margin: 0 0 44px;
}

.bpt-head h2 { font-size: clamp( 28px, 3.4vw, 42px ); }
.bpt-head p { font-size: 17px; color: #4A5163; margin: 0; }
.bpt-head--light p { color: rgba( 255, 255, 255, .72 ); }

.bpt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var( --bpt-blue, #1F4495 );
}

.bpt-eyebrow--light { color: #9FB6E8; }

.bpt-eyebrow__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	flex: none;
}

/* Buttons. Scoped to the element so a theme reset cannot flatten them. */
.bpt-s a.bpt-button,
.bpt-contact button.bpt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 30px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
}

.bpt-s a.bpt-button:hover,
.bpt-contact button.bpt-button:hover { transform: translateY( -2px ); text-decoration: none; }

.bpt-s a.bpt-button--primary,
.bpt-contact button.bpt-button--primary {
	background: var( --bpt-blue, #1F4495 );
	border-color: var( --bpt-blue, #1F4495 );
	color: #fff;
}

.bpt-s a.bpt-button--primary:hover,
.bpt-contact button.bpt-button--primary:hover { background: #16357A; border-color: #16357A; color: #fff; }

.bpt-s a.bpt-button--ghost {
	background: transparent;
	border-color: rgba( 255, 255, 255, .32 );
	color: #fff;
}

.bpt-s a.bpt-button--ghost:hover { border-color: #fff; background: rgba( 255, 255, 255, .08 ); color: #fff; }

.bpt-s a.bpt-button--light { background: #fff; border-color: #fff; color: var( --bpt-blue, #1F4495 ); }
.bpt-s a.bpt-button--light:hover { background: #EEF2FB; border-color: #EEF2FB; color: #16357A; }

.bpt-s a.bpt-button--ghost-light {
	background: transparent;
	border-color: rgba( 255, 255, 255, .4 );
	color: #fff;
}

.bpt-s a.bpt-button--ghost-light:hover { border-color: #fff; color: #fff; }

.bpt-ticks { margin: 22px 0 0; padding: 0; list-style: none; }

.bpt-ticks li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 11px;
	font-size: 15px;
}

.bpt-ticks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .45em;
	width: 16px;
	height: 9px;
	border-left: 2.5px solid #1F4495;
	border-bottom: 2.5px solid #1F4495;
	transform: rotate( -45deg );
	opacity: .85;
}

/* ------------------------------------------------------------------ */
/* Announcement strip                                                  */
/* ------------------------------------------------------------------ */

.bpt-topbar {
	background: var( --bpt-ink, #101114 );
	color: rgba( 255, 255, 255, .82 );
	font-size: 13px;
	letter-spacing: .02em;
}

.bpt-topbar__in {
	box-sizing: border-box;
	max-width: 1200px;
	margin: 0 auto;
	padding: 9px 24px;
	text-align: center;
}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */

.bpt-hero {
	padding: 0;
	background: var( --bpt-ink, #101114 );
	color: #fff;
	overflow: hidden;
}

/* The dot field is the same halftone motif as the product photography. */
.bpt-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient( rgba( 31, 68, 149, .55 ) 1.6px, transparent 1.7px );
	background-size: 22px 22px;
	opacity: .55;
	pointer-events: none;
}

.bpt-hero::after {
	content: "";
	position: absolute;
	right: -12%;
	top: -30%;
	width: 60vw;
	height: 120%;
	background: radial-gradient( closest-side, rgba( 31, 68, 149, .55 ), transparent );
	pointer-events: none;
}

.bpt-hero__in {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 84px 24px 0;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 40px;
	align-items: center;
}

.bpt-hero__copy { padding-bottom: 84px; }

.bpt-hero__title {
	font-size: clamp( 34px, 5vw, 60px );
	margin: 0 0 20px;
	color: #fff;
}

.bpt-hero__text {
	font-size: 17px;
	line-height: 1.65;
	color: rgba( 255, 255, 255, .76 );
	max-width: 34em;
	margin: 0 0 30px;
}

.bpt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 34px;
}

.bpt-hero__usps {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bpt-hero__usps li {
	position: relative;
	padding-left: 24px;
	font-size: 14px;
	color: rgba( 255, 255, 255, .78 );
}

.bpt-hero__usps li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .4em;
	width: 13px;
	height: 7px;
	border-left: 2px solid #6E93E0;
	border-bottom: 2px solid #6E93E0;
	transform: rotate( -45deg );
}

.bpt-hero__art { align-self: center; padding-bottom: 84px; }

.bpt-hero__art img {
	display: block;
	width: 100%;
	max-width: 470px;
	height: auto;
	margin: 0 auto;
}

/* ------------------------------------------------------------------ */
/* Category cards                                                      */
/* ------------------------------------------------------------------ */

.bpt-cats { background: #fff; }

.bpt-cats__grid {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 22px;
}

.bpt-s a.bpt-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var( --bpt-line, #DCE3F2 );
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.bpt-s a.bpt-card:hover {
	transform: translateY( -4px );
	border-color: var( --bpt-blue, #1F4495 );
	box-shadow: 0 16px 40px rgba( 16, 17, 20, .12 );
	text-decoration: none;
}

.bpt-card__img { position: relative; display: block; }

.bpt-card__img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.bpt-card__from {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 6px 13px;
	border-radius: 999px;
	background: rgba( 16, 17, 20, .82 );
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .03em;
	backdrop-filter: blur( 4px );
}

.bpt-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 22px 24px;
}

.bpt-card__title {
	display: block;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.01em;
	margin-bottom: 8px;
}

.bpt-card__text {
	display: block;
	flex: 1;
	font-size: 14.5px;
	line-height: 1.6;
	color: #4A5163;
	margin-bottom: 16px;
}

.bpt-card__go {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 700;
	color: var( --bpt-blue, #1F4495 );
}

.bpt-card__go::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate( 45deg );
	transition: transform .16s ease;
}

.bpt-s a.bpt-card:hover .bpt-card__go::after { transform: rotate( 45deg ) translate( 2px, -2px ); }

/* ------------------------------------------------------------------ */
/* Design tools                                                        */
/* ------------------------------------------------------------------ */

.bpt-tools {
	background: var( --bpt-blue, #1F4495 );
	color: #fff;
}

.bpt-tools::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient( rgba( 255, 255, 255, .13 ) 1.4px, transparent 1.5px );
	background-size: 20px 20px;
	pointer-events: none;
}

.bpt-tools .bpt-wrap { position: relative; z-index: 1; }
.bpt-tools h2 { color: #fff; }

.bpt-tools__grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 20px;
}

.bpt-tool {
	padding: 26px 24px 28px;
	border: 1px solid rgba( 255, 255, 255, .18 );
	border-radius: 14px;
	background: rgba( 255, 255, 255, .06 );
}

.bpt-tool h3 { font-size: 17px; margin: 0 0 8px; color: #fff; }

.bpt-tool p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba( 255, 255, 255, .74 );
}

.bpt-tool__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 16px;
	border-radius: 12px;
	background: rgba( 255, 255, 255, .12 );
	color: #fff;
}

.bpt-tool__icon svg { width: 23px; height: 23px; }

/* ------------------------------------------------------------------ */
/* How it works                                                        */
/* ------------------------------------------------------------------ */

.bpt-how { background: var( --bpt-blue-lt, #EEF2FB ); }

.bpt-how__list {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.bpt-how__step {
	position: relative;
	padding: 30px 28px 32px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid var( --bpt-line, #DCE3F2 );
}

.bpt-how__num {
	display: block;
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.03em;
	color: var( --bpt-blue, #1F4495 );
	opacity: .32;
	margin-bottom: 14px;
}

.bpt-how__step h3 { font-size: 19px; margin: 0 0 8px; }
.bpt-how__step p { margin: 0; font-size: 15px; color: #4A5163; }

/* ------------------------------------------------------------------ */
/* Recent work                                                         */
/* ------------------------------------------------------------------ */

.bpt-work { background: #fff; }

.bpt-work__grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 22px;
}

.bpt-work__item {
	margin: 0;
	border: 1px solid var( --bpt-line, #DCE3F2 );
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	transition: transform .16s ease, box-shadow .16s ease;
}

.bpt-work__item:hover {
	transform: translateY( -4px );
	box-shadow: 0 16px 40px rgba( 16, 17, 20, .12 );
}

.bpt-work__item img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.bpt-work__item figcaption {
	padding: 16px 18px 18px;
	font-size: 14.5px;
	line-height: 1.5;
	color: #4A5163;
}

/* ------------------------------------------------------------------ */
/* 300 DPI                                                             */
/* ------------------------------------------------------------------ */

.bpt-quality {
	background: var( --bpt-ink-2, #191A1F );
	color: #fff;
}

.bpt-quality__in {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 52px;
	align-items: center;
}

.bpt-quality h2 { font-size: clamp( 27px, 3.2vw, 38px ); color: #fff; }
.bpt-quality p { color: rgba( 255, 255, 255, .72 ); font-size: 16px; }
.bpt-quality .bpt-ticks li { color: rgba( 255, 255, 255, .86 ); }
.bpt-quality .bpt-ticks li::before { border-color: #6E93E0; }

.bpt-quality__fig { margin: 0; }

.bpt-quality__fig img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
	border: 1px solid rgba( 255, 255, 255, .14 );
}

.bpt-quality__fig figcaption {
	margin-top: 12px;
	font-size: 13px;
	color: rgba( 255, 255, 255, .5 );
}

/* ------------------------------------------------------------------ */
/* AI promo                                                            */
/* ------------------------------------------------------------------ */

.bpt-ai { background: #fff; }

.bpt-ai__in {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: center;
	padding-top: 0;
	padding-bottom: 0;
}

.bpt-ai h2 { font-size: clamp( 26px, 3vw, 36px ); }
.bpt-ai p { color: #4A5163; font-size: 16.5px; }
.bpt-ai__actions { margin-top: 26px; }

.bpt-ai__chips { display: grid; gap: 12px; }

.bpt-ai__chips span {
	padding: 16px 20px;
	border: 1px dashed var( --bpt-line, #DCE3F2 );
	border-radius: 12px;
	background: var( --bpt-blue-lt, #EEF2FB );
	font-size: 15px;
	color: #38405A;
}

/* ------------------------------------------------------------------ */
/* Reviews                                                             */
/* ------------------------------------------------------------------ */

.bpt-reviews { background: var( --bpt-blue-lt, #EEF2FB ); }

.bpt-reviews__grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 22px;
}

.bpt-review {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 28px 26px;
	background: #fff;
	border: 1px solid var( --bpt-line, #DCE3F2 );
	border-radius: 16px;
}

.bpt-review__stars { color: #F5A524; letter-spacing: 3px; margin-bottom: 14px; }

/*
 * Themes love to style blockquote - a beige panel, a big left rule, italics.
 * These are review cards, so all of that has to come back off, and the quote
 * flexes so every card's attribution lines up along the bottom.
 */
.bpt-s figure.bpt-review blockquote,
.bpt-review blockquote {
	flex: 1;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
	background: none;
	font-size: 16px;
	font-style: normal;
	line-height: 1.6;
	text-align: left;
	color: #23283A;
}

.bpt-s figure.bpt-review blockquote::before,
.bpt-s figure.bpt-review blockquote::after,
.bpt-review blockquote::before,
.bpt-review blockquote::after {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	background: none;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	opacity: 1;
}

.bpt-review blockquote::before { content: "\201C"; }
.bpt-review blockquote::after { content: "\201D"; }

.bpt-review figcaption { font-size: 14px; color: #4A5163; }
.bpt-review figcaption strong { display: block; color: var( --bpt-ink, #101114 ); }

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */

.bpt-faq { background: #fff; }
.bpt-faq__list { border-top: 1px solid var( --bpt-line, #DCE3F2 ); }

.bpt-faq__item { border-bottom: 1px solid var( --bpt-line, #DCE3F2 ); }

.bpt-faq__item summary {
	position: relative;
	list-style: none;
	cursor: pointer;
	padding: 22px 44px 22px 0;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.bpt-faq__item summary::-webkit-details-marker { display: none; }

.bpt-faq__item summary::after {
	content: "";
	position: absolute;
	right: 6px;
	top: 50%;
	width: 10px;
	height: 10px;
	margin-top: -8px;
	border-right: 2.5px solid var( --bpt-blue, #1F4495 );
	border-bottom: 2.5px solid var( --bpt-blue, #1F4495 );
	transform: rotate( 45deg );
	transition: transform .18s ease;
}

.bpt-faq__item[open] summary::after { transform: rotate( -135deg ); margin-top: -3px; }

.bpt-faq__answer { padding: 0 44px 24px 0; }
.bpt-faq__answer p { margin: 0; color: #4A5163; font-size: 15.5px; }

/* ------------------------------------------------------------------ */
/* Closing CTA                                                         */
/* ------------------------------------------------------------------ */

.bpt-cta { background: var( --bpt-blue, #1F4495 ); color: #fff; padding: 68px 0; }

.bpt-cta__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.bpt-cta h2 { font-size: clamp( 25px, 2.8vw, 34px ); color: #fff; margin-bottom: 8px; }
.bpt-cta p { margin: 0; color: rgba( 255, 255, 255, .8 ); }
.bpt-cta__in > div { flex: 1 1 440px; }
.bpt-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 0; flex: 0 0 auto; }

/* ------------------------------------------------------------------ */
/* Contact form                                                        */
/* ------------------------------------------------------------------ */

.bpt-contact { max-width: 640px; margin: 26px 0; }
.bpt-contact .bpt-form__row { display: block; margin: 0 0 18px; }

.bpt-contact label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 700;
}

.bpt-contact input[type="text"],
.bpt-contact input[type="email"],
.bpt-contact textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var( --bpt-line, #DCE3F2 );
	border-radius: 10px;
	font: inherit;
	font-size: 15px;
	background: #fff;
	color: var( --bpt-ink, #101114 );
}

.bpt-contact input:focus,
.bpt-contact textarea:focus {
	outline: none;
	border-color: var( --bpt-blue, #1F4495 );
	box-shadow: 0 0 0 3px rgba( 31, 68, 149, .14 );
}

.bpt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.bpt-notice {
	padding: 14px 18px;
	border-radius: 10px;
	margin-bottom: 22px;
	font-size: 15px;
}

.bpt-notice--ok { background: #E8F6EC; border: 1px solid #B7E2C4; color: #1B5E32; }
.bpt-notice--bad { background: #FDECEC; border: 1px solid #F3C2C2; color: #8A1F1F; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */

.bpt-footer {
	background: var( --bpt-ink, #101114 );
	color: rgba( 255, 255, 255, .68 );
	font-size: 14.5px;
	line-height: 1.7;
}

.bpt-footer *,
.bpt-footer *::before,
.bpt-footer *::after { box-sizing: border-box; }

.bpt-footer .bpt-wrap { max-width: 1200px; padding: 0 24px; }

.bpt-footer__grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
	gap: 40px;
	padding-top: 62px;
	padding-bottom: 54px;
}

.bpt-footer h3 {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: #fff;
}

.bpt-footer__h3-2 { margin-top: 26px; }

.bpt-footer ul { margin: 0; padding: 0; list-style: none; }
.bpt-footer li { margin-bottom: 9px; }

.bpt-footer a { color: rgba( 255, 255, 255, .68 ); text-decoration: none; }
.bpt-footer a:hover { color: #fff; text-decoration: underline; }

.bpt-footer__logo {
	display: block;
	width: 178px;
	height: auto;
	margin-bottom: 20px;
}

.bpt-footer__col--brand p { margin: 0 0 18px; max-width: 34em; }

.bpt-footer__social { display: flex; gap: 18px; flex-wrap: wrap; }
.bpt-footer__social a { font-weight: 600; }

.bpt-footer__bar {
	border-top: 1px solid rgba( 255, 255, 255, .1 );
	font-size: 13.5px;
}

.bpt-footer__bar-in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	padding-top: 20px;
	padding-bottom: 20px;
}

.bpt-footer__bar p { margin: 0; }
.bpt-footer__legal { display: flex; gap: 20px; }

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */

@media ( max-width: 1024px ) {
	.bpt-cats__grid { grid-template-columns: repeat( 2, 1fr ); }
	.bpt-tools__grid { grid-template-columns: repeat( 2, 1fr ); }
	.bpt-work__grid { grid-template-columns: repeat( 2, 1fr ); }
	.bpt-footer__grid { grid-template-columns: repeat( 2, 1fr ); gap: 34px; }
	.bpt-quality__in { grid-template-columns: 1fr; gap: 34px; }
	.bpt-ai__in { grid-template-columns: 1fr; gap: 30px; }
}

@media ( max-width: 860px ) {
	.bpt-s { padding: 56px 0; }
	.bpt-hero { padding: 0; }
	.bpt-hero__in { grid-template-columns: 1fr; padding-top: 52px; gap: 6px; }
	.bpt-hero__copy { padding-bottom: 34px; }
	.bpt-hero__art { padding-bottom: 52px; }
	.bpt-hero__art img { max-width: 340px; }
	.bpt-how__list { grid-template-columns: 1fr; }
	.bpt-reviews__grid { grid-template-columns: 1fr; }
	.bpt-head { margin-bottom: 32px; }
}

@media ( max-width: 560px ) {
	.bpt-cats__grid,
	.bpt-work__grid,
	.bpt-tools__grid { grid-template-columns: 1fr; }
	.bpt-footer__grid { grid-template-columns: 1fr; }
	.bpt-hero__actions .bpt-button { width: 100%; }
	.bpt-cta__in { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------------------------ */
/* Content pages                                                       */
/* ------------------------------------------------------------------ */

.post_content .wp-block-table table { border-collapse: collapse; }

.post_content .wp-block-table td,
.post_content .wp-block-table th { color: var( --bpt-ink, #101114 ); }

.post_content .wp-block-table tbody td:not( :first-child ) { font-variant-numeric: tabular-nums; font-weight: 600; }

/* ------------------------------------------------------------------ */
/* Bringing the product tools onto the brand                           */
/* ------------------------------------------------------------------ */

/*
 * The builders shipped in a black-and-yellow style. The tokens were already
 * indirected through --bp-*, so the palette swaps here rather than by editing
 * the tool stylesheet - which keeps the two files independent.
 *
 * The accent has to work in two opposite roles: as a panel background with dark
 * text, and as text on a near-black bar. White is the only value that does both
 * cleanly, so the call-to-action colour is applied to the buttons separately.
 */
:root {
	--bp-primary: #1F4495;
	--bp-secondary: #3F7AD6;
	--bp-accent: #FFFFFF;
	--bp-ink: #101114;
	--bp-line: 2px;
	--bp-radius: 14px;
}

button.bpt-btn,
button.bpt-btn:hover,
button.bpt-btn:focus,
button.bpt-btn:active {
	background: #1F4495;
	color: #fff;
}

button.bpt-btn--ghost,
button.bpt-btn--ghost:hover,
button.bpt-btn--ghost:focus,
button.bpt-btn--ghost:active { background: #fff; color: #101114; }

/* Was a white-on-white no-op once the accent changed. */
.bpt-drop:hover,
.bpt-drop:focus,
.bpt-drop.is-over { background: #EEF2FB; }

/* The live price panel now sits on white, so the olive caption has to go. */
.bpt-live { background: #EEF2FB; }
.bpt-live__meta { color: #4A5163; }

.bpt-gs__side { background: #F7F9FE; }
