/*
Theme Name: Twenty Twenty-Five Child
Description: Burmetal — Twenty Twenty-Five child theme.
Author: zafworks
Template: twentytwentyfive
Version: 3.3.0
Text Domain: twentytwentyfive-child
*/

:root {
	--bm-red: #b5212a;
	--bm-red-dark: #9d1b25;
	--bm-dark: #1a1a1a;
	--bm-darker: #161616;
	--bm-text: #333;
	--bm-muted: #555;
	--bm-bg: #e6e5e2;
	--bm-cream: #e6e5e2;
	--bm-white: #fff;
	--bm-pad-left: 9.52%;
	--bm-pad-right: 4.76%;
	--bm-content: 1080px;
	--bm-font: "Noto Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html,
.bm-site,
.bm-site body,
body.bm-site {
	font-family: var(--bm-font);
	background: var(--bm-bg);
	color: var(--bm-text);
	margin: 0;
}

.wp-site-blocks {
	padding: 0 !important;
	margin: 0 !important;
}

.wp-site-blocks > * {
	margin-block: 0 !important;
}

.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):not(.bm-blog):not(.bm-single) {
	max-width: none !important;
	margin-inline: 0 !important;
}

body.bm-site .wp-block-group {
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Header */
.bm-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bm-white);
}

.bm-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem var(--bm-pad-right) 0.85rem var(--bm-pad-left);
	border-bottom: 1px solid #eee;
}

.bm-logo img {
	height: 28px;
	width: auto;
}

.bm-top-nav {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bm-top-nav a:hover,
.bm-product-nav a:hover {
	color: var(--bm-red);
}

.bm-lang {
	margin-left: 0.5rem;
}

.bm-lang .is-muted {
	color: #999;
}

.bm-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 8px;
}

.bm-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--bm-dark);
}

.bm-product-nav {
	background: var(--bm-white);
	border-bottom: 1px solid #eee;
}

.bm-product-nav-inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 0.7rem var(--bm-pad-right) 0.7rem var(--bm-pad-left);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bm-drop {
	position: relative;
}

.bm-drop-panel {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: var(--bm-white);
	border: 1px solid #eee;
	padding: 0.75rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: 0.2s;
	box-shadow: 0 12px 30px #00000014;
}

.bm-drop-panel a {
	display: block;
	padding: 0.45rem 1rem;
	letter-spacing: 0.04em;
	font-weight: 500;
	font-size: 0.85rem;
}

.bm-drop:hover .bm-drop-panel {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.bm-cta {
	margin-left: auto;
	background: var(--bm-red);
	color: #fff !important;
	padding: 0.7rem 1.15rem;
	border-radius: 2px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
}

.bm-cta:hover {
	background: var(--bm-red-dark);
	color: #fff !important;
}

.bm-mobile-nav,
.bm-nav-backdrop {
	display: none;
}

body.bm-nav-open .bm-nav-backdrop {
	display: block;
	position: fixed;
	inset: 0;
	background: #00000073;
	z-index: 80;
}

body.bm-nav-open .bm-mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: fixed;
	inset: 0 0 0 auto;
	width: min(360px, 88vw);
	background: #fff;
	z-index: 90;
	padding: 2.5rem 1.5rem;
	font-weight: 600;
}

.bm-mobile-close {
	align-self: flex-end;
	border: 0;
	background: none;
	font-size: 2rem;
	line-height: 1;
}

/* Hero */
.bm-hero {
	position: relative;
	height: 78vh;
	min-height: 520px;
	overflow: hidden;
	color: #fff;
}

.bm-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bm-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, #000000d9 0%, #0000004d 55%, transparent 100%);
}

.bm-hero h1 {
	position: absolute;
	left: 9.52%;
	bottom: 12%;
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 4.3rem);
	line-height: 1.12;
	font-weight: 700;
	text-shadow: 0 2px 12px #0000008c;
}

.bm-hero h1 em {
	font-style: normal;
	color: #fff;
}

/* Layout helpers */
.bm-section {
	padding: 4.5rem 4.76% 4.5rem 9.52%;
}

.bm-section-title {
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin: 0 0 2.8rem;
	font-weight: 700;
	color: var(--bm-red);
}

.bm-kicker {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--bm-red);
	margin: 0 0 0.75rem;
}

.bm-btn {
	display: inline-flex;
	align-items: center;
	background: var(--bm-red);
	color: #fff !important;
	padding: 0.9rem 1.35rem;
	font-weight: 600;
	margin-top: 1.25rem;
}

.bm-btn:hover {
	background: var(--bm-red-dark);
}

.bm-btn-light {
	background: #fff;
	color: var(--bm-dark) !important;
}

.bm-btn-light:hover {
	background: #f2f1f0;
}

/* Products */
.bm-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.bm-product-card {
	display: block;
	background: #fff;
	overflow: hidden;
}

.bm-product-card img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	transition: 0.4s;
}

.bm-product-card:hover img {
	transform: scale(1.05);
}

.bm-product-card-body {
	padding: 1rem 0.2rem 1.4rem;
}

.bm-product-card h3 {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
}

.bm-product-card span {
	font-size: 0.85rem;
	color: var(--bm-red);
	font-weight: 600;
}

/* Split */
.bm-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 520px;
}

.bm-split .bm-split-copy {
	background: var(--bm-bg);
	padding: 4rem 8% 4rem 18%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bm-split .bm-split-copy h2 {
	font-size: clamp(1.6rem, 2.6vw, 2.3rem);
	line-height: 1.2;
	margin: 0 0 1rem;
}

.bm-split .bm-split-copy p {
	color: var(--bm-muted);
	line-height: 1.65;
}

.bm-split .bm-split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Sectors */
.bm-sector-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.bm-sector-card {
	display: flex;
	flex-direction: column;
	background: #fff;
}

.bm-sector-card img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
}

.bm-sector-card div {
	padding: 1.2rem 0.1rem 1.5rem;
}

.bm-sector-card h3 {
	margin: 0 0 0.4rem;
}

.bm-sector-card p {
	color: var(--bm-muted);
	margin: 0 0 0.7rem;
	line-height: 1.5;
}

.bm-sector-card span {
	color: var(--bm-red);
	font-weight: 600;
	font-size: 0.85rem;
}

/* Why */
.bm-why {
	background: var(--bm-bg);
	color: var(--bm-text);
	padding: 5rem clamp(1.75rem, 8vw, 6.5rem) 7rem;
}

.bm-why-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 2.8rem;
}

.bm-why-head h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--bm-red);
}

.bm-why-head a {
	color: var(--bm-red);
	font-weight: 600;
}

.bm-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem 4rem;
}

.bm-why-grid span {
	display: block;
	color: #d5d3d0;
	font-weight: 700;
	margin-bottom: 0;
}

.bm-why-grid h3 {
	margin: 0 0 0.7rem;
	font-size: 1.15rem;
	line-height: 1.25;
	color: #2a2a2a;
}

.bm-why-grid p {
	color: #5c5c5c;
	line-height: 1.7;
	font-size: 0.95rem;
}

.bm-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 0;
	padding: 3.25rem 4.76% 3.25rem 9.52%;
	border-top: 0;
	background: #f3f2ef;
}

.bm-stats strong {
	display: block;
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 1.1;
	color: var(--bm-red);
}

.bm-unit {
	font-size: 0.9rem;
	margin-left: 0.35rem;
	font-weight: 600;
}

.bm-stats span {
	display: block;
	margin-top: 0.35rem;
	color: #7a7a7a;
}

/* Export */
.bm-export {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 4.5rem 4.76% 4.5rem 9.52%;
	gap: 3rem;
	background: #f3f3f3;
}

.bm-export h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.15;
	margin: 0 0 1rem;
}

.bm-export p {
	color: var(--bm-muted);
	line-height: 1.65;
}

/* CTA */
.bm-cta-banner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-height: 280px;
	background: #1a1a1a;
	color: #fff;
}

.bm-cta-banner img {
	position: static;
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
}

.bm-cta-banner .bm-cta-copy {
	position: static;
	padding: 2.25rem 10%;
	max-width: none;
	color: #fff;
}

.bm-cta-banner h2,
.bm-cta-banner p {
	color: #fff;
}

.bm-cta-banner h2 {
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	margin: 0 0 1rem;
	line-height: 1.2;
}

/* Footer */
.bm-footer {
	background: var(--bm-darker);
	color: #cfcfcf;
	padding: 4rem 4.76% 1.5rem 9.52%;
}

.bm-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2rem;
}

.bm-footer-brand img {
	height: 26px;
	width: auto;
	margin-bottom: 1.2rem;
}

.bm-footer a {
	display: block;
	margin: 0.35rem 0;
	color: #cfcfcf;
}

.bm-footer a:hover {
	color: #fff;
}

.bm-footer h4 {
	color: #fff;
	margin: 0 0 0.8rem;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bm-map-btn {
	display: inline-flex !important;
	margin-top: 1rem !important;
	border: 1px solid #ffffff4d;
	padding: 0.55rem 0.9rem;
}

.bm-footer-bottom {
	margin-top: 3rem;
	padding-top: 1.2rem;
	border-top: 1px solid #ffffff1a;
	font-size: 0.85rem;
}

/* Inner pages */
.bm-inner-hero {
	position: relative;
	height: 260px;
	overflow: hidden;
	background: #1a1a1a;
	color: #fff;
}

.bm-inner-hero .wp-block-post-featured-image,
.bm-inner-hero img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	margin: 0;
	display: block;
}

.bm-inner-hero .wp-block-post-title {
	position: absolute;
	left: var(--bm-pad-left);
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	color: #fff;
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
	font-weight: 700;
	text-transform: uppercase;
	text-shadow: 0 2px 10px #00000073;
	max-width: 48%;
}

.bm-page-shell {
	background: var(--bm-bg);
}

.bm-page-shell .entry-content {
	padding: 3.25rem var(--bm-pad-right) 5rem var(--bm-pad-left);
}

.bm-page {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.bm-page-shell .entry-content > .wp-block-group.is-layout-grid {
	display: block;
}

.wp-block-columns.bm-split-row,
.wp-block-columns.bm-split-row.is-layout-flex {
	display: grid !important;
	grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
	align-items: start !important;
	gap: 2.5rem !important;
	margin: 0 0 1rem !important;
	flex-wrap: nowrap !important;
}

.wp-block-columns.bm-split-row.bm-split-row-reverse {
	grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
}

.wp-block-columns.bm-split-row > .bm-split-copy,
.wp-block-columns.bm-split-row > .wp-block-column.bm-split-copy,
.wp-block-columns.bm-split-row > .bm-split-media,
.wp-block-columns.bm-split-row > .wp-block-column.bm-split-media {
	flex: none !important;
	flex-basis: auto !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0;
}

.wp-block-columns.bm-split-row > .bm-split-copy,
.wp-block-columns.bm-split-row > .wp-block-column.bm-split-copy {
	grid-column: 1;
}

.wp-block-columns.bm-split-row > .bm-split-media,
.wp-block-columns.bm-split-row > .wp-block-column.bm-split-media {
	grid-column: 2;
	display: flex !important;
	flex-direction: column !important;
	gap: 1rem;
	align-self: start;
}

.wp-block-columns.bm-split-row.bm-split-row-reverse > .bm-split-media {
	grid-column: 1;
}

.wp-block-columns.bm-split-row.bm-split-row-reverse > .bm-split-copy {
	grid-column: 2;
}

.bm-split-copy .bm-kicker {
	margin-bottom: 0.75rem;
}

.bm-page-shell .entry-content > .wp-block-heading:is(h2):first-child {
	color: #b53036;
	font-size: clamp(1.7rem, 2.6vw, 2.125rem);
	font-weight: 800;
	text-transform: none;
	margin: 0 0 0.75rem;
	line-height: 1.2;
	max-width: 65%;
}

.bm-page-shell .entry-content > .wp-block-heading:is(h3) {
	font-size: clamp(1.15rem, 1.8vw, 1.625rem);
	font-weight: 700;
	margin: 1.5rem 0 1.5rem;
	color: #111;
	max-width: 65%;
}

.bm-split-copy h1,
.bm-page-shell .bm-split-copy .wp-block-heading:is(h1) {
	font-size: clamp(1.7rem, 2.6vw, 2.2rem);
	line-height: 1.2;
	margin: 0 0 1rem;
	color: #b53036;
	text-transform: uppercase;
	font-weight: 800;
}

.bm-page-shell .bm-split-copy h3,
.bm-page-shell .bm-split-copy .wp-block-heading:is(h3) {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 1.5rem;
	color: #111;
}

.bm-page-shell .bm-split-copy > .wp-block-heading:first-child {
	margin-top: 0;
}

.bm-page-shell .bm-split-copy h2,
.bm-page-shell .bm-split-copy .wp-block-heading:is(h2) {
	color: #b53036;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	font-weight: 800;
	text-transform: uppercase;
	margin: 2.4rem 0 0.8rem;
	line-height: 1.25;
}

.bm-page-shell .bm-split-copy > .wp-block-heading:is(h2):first-child {
	margin-top: 0;
}

.bm-lead {
	font-size: 1.1rem;
	line-height: 1.55;
	color: #111;
	max-width: none;
	margin: 0 0 1.25rem;
	font-weight: 700;
}

.bm-split-copy p,
.bm-page-shell .bm-split-copy p {
	line-height: 1.7;
	color: #111;
	margin: 0 0 0.2rem;
	font-size: 1.02rem;
}

.bm-blocks {
	display: grid;
	gap: 0.25rem;
	margin-top: 0;
	background: transparent;
}

.bm-block {
	background: transparent;
	padding: 0;
	scroll-margin-top: 7.5rem;
}

.bm-block h2,
.bm-block .wp-block-heading {
	margin: 2.4rem 0 0.8rem;
	color: #b53036;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	letter-spacing: 0;
	text-transform: uppercase;
	font-weight: 800;
}

.bm-block p {
	margin: 0;
}

.bm-split-media .wp-block-image,
.bm-split-media figure,
.bm-split-photo {
	margin: 0 !important;
	height: auto;
	width: 100%;
}

.bm-split-media .wp-block-image + .wp-block-image {
	margin-top: 1rem !important;
}

.bm-split-media img,
.bm-split-photo img {
	width: 100%;
	height: auto;
	min-height: 0;
	object-fit: cover;
	display: block;
}

.bm-faq {
	margin-top: 3.5rem;
	padding-top: 0.5rem;
	max-width: 52rem;
}

.bm-faq > h2 {
	color: #b53036;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 1.5rem;
}

.bm-faq h4 {
	margin: 1.4rem 0 0.4rem;
	font-size: 0.95rem;
	font-weight: 800;
	text-transform: uppercase;
}

.bm-faq p {
	color: #111;
	line-height: 1.7;
	margin: 0;
}

.bm-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

.bm-form {
	display: grid;
	gap: 0.8rem;
}

.bm-form input,
.bm-form textarea,
.bm-form select {
	width: 100%;
	border: 1px solid #d5d5d5;
	padding: 0.8rem 0.9rem;
	background: #fff;
	font: inherit;
}

.bm-form button {
	justify-self: start;
	background: var(--bm-red);
	color: #fff;
	border: 0;
	padding: 0.9rem 1.3rem;
	font-weight: 600;
}

.bm-blog-hero {
	position: relative;
	height: 280px;
	overflow: hidden;
	color: #fff;
}

.bm-blog-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

.bm-blog-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 32%, rgba(26, 26, 26, 0.55) 52%, transparent 78%);
}

.bm-blog-hero h1 {
	position: absolute;
	left: var(--bm-pad-left);
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	font-size: clamp(2.8rem, 5vw, 4.2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.bm-blog-feed {
	padding: 3.5rem var(--bm-pad-right) 5rem var(--bm-pad-left);
	background: var(--bm-bg);
}

.bm-blog-feed-head {
	margin-bottom: 2.2rem;
}

.bm-blog-feed-head h2 {
	margin: 0 0 0.45rem;
	color: var(--bm-red);
	font-size: 1.7rem;
}

.bm-blog-feed-head p {
	margin: 0;
	color: var(--bm-text);
	max-width: 46rem;
	line-height: 1.55;
}

.bm-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem 1.25rem;
}

.bm-blog-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bm-blog-card-media {
	position: relative;
	display: block;
	overflow: hidden;
	background: #ddd;
}

.bm-blog-card-media img {
	width: 100%;
	aspect-ratio: 1735 / 906;
	object-fit: cover;
	display: block;
}

.bm-blog-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0.12) 62%, transparent 78%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.15rem 1.25rem;
	color: var(--bm-dark);
}

.bm-blog-card-overlay small {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.bm-blog-card-overlay strong {
	font-size: clamp(0.95rem, 1.1vw, 1.15rem);
	line-height: 1.2;
	max-width: 18ch;
	font-weight: 800;
}

.bm-blog-card h3 {
	margin: 1rem 0 0.45rem;
	font-size: 1.05rem;
	line-height: 1.25;
}

.bm-blog-card h3 a:hover {
	color: var(--bm-red);
}

.bm-blog-card p {
	margin: 0 0 0.9rem;
	color: var(--bm-muted);
	line-height: 1.55;
	font-size: 0.92rem;
}

.bm-readmore {
	margin-top: auto;
	color: var(--bm-red) !important;
	font-weight: 700;
	font-size: 0.92rem;
}

.bm-readmore:hover {
	text-decoration: underline;
}

.bm-pagination {
	margin-top: 2.5rem;
}

.bm-pagination ul {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 600;
}

body.bm-site .wp-block-group.bm-single {
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
	padding: 9.5rem 1.5rem 5rem;
}

.bm-single .wp-block-post-featured-image {
	margin: 0 0 1.6rem;
	border-radius: 14px;
	overflow: hidden;
	background: #d9dee6;
}

.bm-single .wp-block-post-featured-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	border-radius: 14px;
}

.bm-single .wp-block-post-date {
	display: inline-flex;
	padding: 0.28rem 0.75rem;
	border-radius: 999px;
	background: var(--bm-navy);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	margin: 0 0 0.85rem;
}

.bm-single .wp-block-post-title {
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	line-height: 1.15;
	margin: 0.2rem 0 1.4rem;
	color: var(--bm-navy);
	letter-spacing: -0.03em;
	font-weight: 700;
}

.bm-single .entry-content p,
.bm-single p {
	line-height: 1.7;
	color: #444;
}

.bm-back {
	display: inline-block;
	margin-top: 2rem;
	font-weight: 600;
	color: var(--bm-red);
}

@media (max-width: 1024px) {
	.bm-product-grid,
	.bm-sector-grid,
	.bm-why-grid,
	.bm-stats,
	.bm-split,
	.bm-export,
	.bm-cta-banner,
	.bm-footer-grid,
	.bm-contact-grid,
	.bm-blog-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bm-cta-banner .bm-cta-copy,
	.bm-split .bm-split-copy {
		max-width: none;
		padding: 3rem 1.5rem;
	}

	.bm-header-top,
	.bm-product-nav-inner,
	.bm-section,
	.bm-why,
	.bm-export,
	.bm-footer,
	.bm-page-shell .entry-content,
	.bm-blog-feed,
	.bm-cta-banner .bm-cta-copy {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.bm-hero h1,
	.bm-blog-hero h1,
	.bm-inner-hero .wp-block-post-title {
		left: 1.25rem;
		padding-left: 0;
		padding-right: 1.25rem;
	}
}

@media (max-width: 767px) {
	.bm-top-nav,
	.bm-product-nav {
		display: none;
	}

	.bm-burger {
		display: flex;
	}

	.bm-hero {
		min-height: 380px;
		height: 62vh;
	}

	.bm-product-grid,
	.bm-sector-grid,
	.bm-why-grid,
	.bm-stats,
	.bm-footer-grid,
	.bm-contact-grid,
	.bm-split,
	.bm-export,
	.bm-blog-grid,
	.wp-block-columns.bm-split-row,
	.wp-block-columns.bm-split-row.is-layout-flex,
	.wp-block-columns.bm-split-row.bm-split-row-reverse {
		grid-template-columns: minmax(0, 1fr) !important;
		flex-direction: column !important;
	}

	.wp-block-columns.bm-split-row > .wp-block-column,
	.wp-block-columns.bm-split-row > .bm-split-copy,
	.wp-block-columns.bm-split-row > .bm-split-media,
	.wp-block-columns.bm-split-row.bm-split-row-reverse > .bm-split-copy,
	.wp-block-columns.bm-split-row.bm-split-row-reverse > .bm-split-media {
		grid-column: 1 !important;
		flex: none !important;
		width: 100% !important;
		max-width: 100% !important;
		position: static;
	}

	.bm-page-shell .entry-content > .wp-block-heading:is(h2):first-child,
	.bm-page-shell .entry-content > .wp-block-heading:is(h3) {
		max-width: 100%;
	}

	.bm-split-media img,
	.bm-split-photo img {
		min-height: 0;
	}

	.bm-inner-hero {
		height: 180px;
	}

	.bm-inner-hero .wp-block-post-featured-image,
	.bm-inner-hero img {
		height: 180px;
	}

	.bm-inner-hero .wp-block-post-title {
		left: 1.25rem;
		max-width: 80%;
		font-size: 1.5rem;
	}
}
