:root {
	--bmt-black: #0b0b0b;
	--bmt-white: #ffffff;
	--bmt-acid: #c8f000;
	--bmt-acid-hover: #dcff2e;
	--bmt-ink: #111111;
	--bmt-muted: #5f625d;
	--bmt-soft: #f6f7f2;
	--bmt-line: rgba(11, 11, 11, 0.14);
	--bmt-line-strong: rgba(11, 11, 11, 0.28);
	--bmt-max: 1160px;
	--bmt-wide: 1320px;
	--bmt-reading: 750px;
	--bmt-gutter: clamp(20px, 4vw, 48px);
	--bmt-ease: cubic-bezier(.2, .8, .2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.bmt-site {
	margin: 0;
	color: var(--bmt-ink);
	background:
		linear-gradient(90deg, rgba(11, 11, 11, .025) 1px, transparent 1px) 0 0 / 104px 104px,
		var(--bmt-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.55;
	letter-spacing: 0;
}

body.bmt-menu-open {
	overflow: hidden;
}

.bmt-site a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
}

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

.bmt-site :focus-visible {
	outline: 3px solid var(--bmt-black);
	outline-offset: 3px;
}

.bmt-skip {
	position: absolute;
	top: 12px;
	left: 16px;
	z-index: 100;
	transform: translateY(-160%);
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--bmt-acid);
	color: var(--bmt-black);
	font-weight: 800;
	text-decoration: none;
}

.bmt-skip:focus {
	transform: translateY(0);
}

.bmt-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--bmt-line);
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(18px);
}

.bmt-header-inner {
	max-width: var(--bmt-wide);
	min-height: 74px;
	margin: 0 auto;
	padding: 0 var(--bmt-gutter);
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: clamp(16px, 2vw, 28px);
}

.bmt-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--bmt-black);
	font-weight: 840;
	text-decoration: none;
	white-space: nowrap;
}

.bmt-mark {
	width: 31px;
	height: 31px;
	flex: 0 0 31px;
	border-radius: 9px;
	background: var(--bmt-black);
	overflow: hidden;
}

.bmt-mark img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.bmt-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(13px, 1.45vw, 24px);
	font-size: 14px;
	font-weight: 700;
}

.bmt-nav a {
	color: #252525;
	text-decoration: none;
	white-space: nowrap;
}

.bmt-nav a:hover {
	color: #000000;
}

.bmt-button {
	min-height: 46px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--bmt-black);
	font-size: 14px;
	font-weight: 820;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 160ms var(--bmt-ease), background-color 160ms var(--bmt-ease), border-color 160ms var(--bmt-ease);
}

.bmt-button:hover {
	transform: translateY(-1px);
}

.bmt-button.primary {
	background: var(--bmt-acid);
}

.bmt-button.primary:hover {
	background: var(--bmt-acid-hover);
}

.bmt-button.secondary {
	border-color: var(--bmt-line-strong);
	background: var(--bmt-white);
}

.bmt-button.dark {
	background: var(--bmt-black);
	color: var(--bmt-white);
}

.bmt-reading .wp-block-button__link,
.bmt-reading .wp-element-button,
.bmt-reading a[class*="wp-block-button__link"] {
	min-height: 46px;
	padding: 14px 22px;
	border: 1px solid var(--bmt-black) !important;
	border-radius: 999px !important;
	background: var(--bmt-black) !important;
	color: var(--bmt-white) !important;
	font-size: 14px;
	font-weight: 820;
	line-height: 1;
	text-decoration: none;
	box-shadow: none !important;
}

.bmt-reading .wp-block-button__link:hover,
.bmt-reading .wp-element-button:hover,
.bmt-reading a[class*="wp-block-button__link"]:hover {
	background: var(--bmt-acid) !important;
	color: var(--bmt-black) !important;
}

.bmt-menu-toggle {
	display: none;
	width: 46px;
	min-width: 46px;
	max-width: 46px;
	height: 46px;
	min-height: 46px;
	max-height: 46px;
	padding: 0;
	border: 1px solid var(--bmt-line);
	border-radius: 999px;
	background: var(--bmt-white);
	color: var(--bmt-black);
	font-size: 0;
	line-height: 1;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	overflow: hidden;
	box-shadow: none;
	text-align: center;
	cursor: pointer;
}

.bmt-site .bmt-header .bmt-menu-toggle {
	width: 46px;
	min-width: 46px;
	max-width: 46px;
	height: 46px;
	min-height: 46px;
	max-height: 46px;
	padding: 0;
	border: 1px solid var(--bmt-line);
	border-radius: 999px;
	background: var(--bmt-white);
	color: var(--bmt-black);
	font-size: 0;
	line-height: 1;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	overflow: hidden;
	box-shadow: none;
	text-align: center;
}

.bmt-menu-toggle::before,
.bmt-menu-toggle::after {
	content: "";
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: var(--bmt-black);
	transition: transform 160ms var(--bmt-ease);
}

.bmt-menu-toggle::after {
	margin-top: 5px;
}

.bmt-menu-toggle[aria-expanded="true"]::before {
	transform: translateY(3.5px) rotate(45deg);
}

.bmt-menu-toggle[aria-expanded="true"]::after {
	transform: translateY(-3.5px) rotate(-45deg);
}

.bmt-mobile-panel {
	display: none;
	padding: 18px var(--bmt-gutter) 24px;
	border-top: 1px solid var(--bmt-line);
	background: var(--bmt-white);
}

.bmt-mobile-panel a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid var(--bmt-line);
	font-weight: 760;
	text-decoration: none;
}

.bmt-mobile-panel .bmt-button {
	width: 100%;
	margin-top: 18px;
	border-bottom: 0;
}

.bmt-main {
	min-height: 60vh;
	background:
		linear-gradient(90deg, rgba(11, 11, 11, .025) 1px, transparent 1px) 0 0 / 104px 104px,
		var(--bmt-white);
}

.bmt-section {
	padding: clamp(72px, 9vw, 128px) var(--bmt-gutter);
}

.bmt-section.compact {
	padding-top: clamp(48px, 6vw, 80px);
	padding-bottom: clamp(48px, 6vw, 80px);
}

.bmt-section[style*="background: var(--bmt-black)"],
.bmt-section[style*="background:var(--bmt-black)"],
.bmt-inverse {
	color: var(--bmt-white);
}

.bmt-section[style*="background: var(--bmt-black)"] h1,
.bmt-section[style*="background: var(--bmt-black)"] h2,
.bmt-section[style*="background: var(--bmt-black)"] h3,
.bmt-section[style*="background:var(--bmt-black)"] h1,
.bmt-section[style*="background:var(--bmt-black)"] h2,
.bmt-section[style*="background:var(--bmt-black)"] h3,
.bmt-inverse h1,
.bmt-inverse h2,
.bmt-inverse h3 {
	color: var(--bmt-white);
}

.bmt-section[style*="background: var(--bmt-black)"] p,
.bmt-section[style*="background: var(--bmt-black)"] li,
.bmt-section[style*="background: var(--bmt-black)"] .bmt-lead,
.bmt-section[style*="background: var(--bmt-black)"] .bmt-eyebrow,
.bmt-section[style*="background:var(--bmt-black)"] p,
.bmt-section[style*="background:var(--bmt-black)"] li,
.bmt-section[style*="background:var(--bmt-black)"] .bmt-lead,
.bmt-section[style*="background:var(--bmt-black)"] .bmt-eyebrow,
.bmt-inverse p,
.bmt-inverse li,
.bmt-inverse .bmt-lead,
.bmt-inverse .bmt-eyebrow {
	color: rgba(255, 255, 255, .76);
}

.bmt-inverse .bmt-table-region,
.bmt-section[style*="background: var(--bmt-black)"] .bmt-table-region,
.bmt-section[style*="background:var(--bmt-black)"] .bmt-table-region {
	border-color: rgba(255, 255, 255, .52);
	background: var(--bmt-white);
}

.bmt-inverse .bmt-table td,
.bmt-section[style*="background: var(--bmt-black)"] .bmt-table td,
.bmt-section[style*="background:var(--bmt-black)"] .bmt-table td {
	color: var(--bmt-ink);
}

.bmt-container {
	max-width: var(--bmt-max);
	margin: 0 auto;
}

.bmt-wide {
	max-width: var(--bmt-wide);
	margin: 0 auto;
}

.bmt-reading {
	max-width: var(--bmt-reading);
	margin: 0 auto;
}

.bmt-eyebrow {
	margin: 0 0 16px;
	color: var(--bmt-muted);
	font-size: 12px;
	font-weight: 860;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.bmt-site h1,
.bmt-site h2,
.bmt-site h3,
.bmt-site p {
	margin-top: 0;
}

.bmt-site h1 {
	max-width: 1000px;
	margin-bottom: 24px;
	font-size: clamp(44px, 6.4vw, 92px);
	line-height: .96;
	letter-spacing: 0;
}

.bmt-site h2 {
	max-width: 820px;
	margin-bottom: 22px;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.05;
	letter-spacing: 0;
}

.bmt-site h3 {
	margin-bottom: 12px;
	font-size: 22px;
	line-height: 1.18;
}

.bmt-lead {
	max-width: 760px;
	color: var(--bmt-muted);
	font-size: clamp(19px, 2vw, 23px);
	line-height: 1.56;
}

.bmt-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.bmt-grid {
	display: grid;
	gap: 18px;
}

.bmt-grid.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bmt-grid.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bmt-hero {
	min-height: min(760px, calc(100vh - 74px));
	display: grid;
	align-items: center;
	padding-top: clamp(82px, 8vw, 120px);
	padding-bottom: clamp(78px, 8vw, 116px);
}

.bmt-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
	gap: clamp(42px, 7vw, 96px);
	align-items: center;
}

.bmt-evidence-board {
	border: 1px solid var(--bmt-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 24px 70px rgba(11, 11, 11, .08);
	overflow: hidden;
}

.bmt-board-head {
	padding: 18px 20px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--bmt-line);
	color: var(--bmt-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.bmt-trace {
	display: grid;
	grid-template-columns: 1fr;
}

.bmt-trace-row {
	padding: 20px;
	display: grid;
	grid-template-columns: 95px 1fr;
	gap: 18px;
	border-bottom: 1px solid var(--bmt-line);
}

.bmt-trace-row:last-child {
	border-bottom: 0;
}

.bmt-trace-kicker {
	color: var(--bmt-muted);
	font-size: 12px;
	font-weight: 820;
	text-transform: uppercase;
}

.bmt-trace-row strong {
	display: block;
	margin-bottom: 6px;
}

.bmt-trace-row p {
	margin: 0;
	color: var(--bmt-muted);
	font-size: 14px;
	line-height: 1.48;
}

.bmt-soft-band {
	background: var(--bmt-soft);
}

.bmt-lane-choice {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--bmt-line);
	background: var(--bmt-white);
}

.bmt-lane {
	min-height: 320px;
	padding: clamp(28px, 5vw, 54px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bmt-lane + .bmt-lane {
	border-left: 1px solid var(--bmt-line);
}

.bmt-lane.business {
	background:
		linear-gradient(90deg, rgba(11, 11, 11, .06) 1px, transparent 1px) 0 0 / 28px 28px,
		var(--bmt-white);
}

.bmt-lane.author {
	background: linear-gradient(135deg, #ffffff 0%, #fbfbf8 100%);
}

.bmt-lane.author h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 500;
}

.bmt-micro-label {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	padding: 8px 12px;
	border: 1px solid var(--bmt-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .8);
	font-size: 13px;
	font-weight: 760;
}

.bmt-micro-label::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bmt-acid);
}

.bmt-method-grid {
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	gap: clamp(32px, 6vw, 88px);
	align-items: start;
}

.bmt-method-list {
	border-top: 1px solid var(--bmt-line);
}

.bmt-method-row {
	display: grid;
	grid-template-columns: minmax(120px, .38fr) 1fr;
	gap: 28px;
	padding: 24px 0;
	border-bottom: 1px solid var(--bmt-line);
}

.bmt-method-row strong {
	font-size: 14px;
}

.bmt-method-row p {
	margin: 0;
	color: var(--bmt-muted);
}

.bmt-offer-panel {
	padding: clamp(30px, 5vw, 56px);
	border: 1px solid var(--bmt-line);
	border-radius: 12px;
	background: var(--bmt-black);
	color: var(--bmt-white);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: end;
}

.bmt-offer-panel p,
.bmt-offer-panel .bmt-eyebrow {
	color: rgba(255, 255, 255, .76);
}

.bmt-offer-panel h2 {
	max-width: 760px;
	color: var(--bmt-white);
}

.bmt-offer-note {
	max-width: 300px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .22);
	color: rgba(255, 255, 255, .76);
	font-size: 15px;
	line-height: 1.5;
}

.bmt-card {
	padding: 28px;
	border: 1px solid var(--bmt-line);
	border-radius: 8px;
	background: var(--bmt-white);
}

.bmt-editorial-card {
	padding: 26px 0 0;
	border: 0;
	border-top: 1px solid var(--bmt-line);
	border-radius: 0;
	background: transparent;
}

.bmt-form-shell {
	padding: clamp(26px, 4vw, 40px);
	border: 1px solid var(--bmt-line);
	border-radius: 10px;
	background: var(--bmt-white);
}

.bmt-route-note {
	margin: 28px 0;
	padding: 18px 0;
	border-top: 1px solid var(--bmt-line);
	border-bottom: 1px solid var(--bmt-line);
}

.bmt-route-note strong,
.bmt-form-context {
	display: block;
	color: var(--bmt-black);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.bmt-route-note p {
	margin: 8px 0 0;
	color: var(--bmt-muted);
}

.bmt-form-context {
	margin: 0 0 16px;
}

.bmt-form-shell .ff-el-group,
.bmt-form label {
	margin-bottom: 16px;
}

.bmt-form input,
.bmt-form select,
.bmt-form textarea,
.bmt-form-shell input,
.bmt-form-shell select,
.bmt-form-shell textarea {
	width: 100%;
	min-height: 46px;
	padding: 12px 13px;
	border: 1px solid var(--bmt-line-strong);
	border-radius: 6px;
	background: var(--bmt-white);
	color: var(--bmt-ink);
	font: inherit;
}

.bmt-form input[type="hidden"],
.bmt-form-shell input[type="hidden"] {
	display: none;
	width: auto;
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.bmt-form-shell .ff-btn-submit,
.bmt-form-shell button[type="submit"],
.bmt-form-shell input[type="submit"] {
	min-height: 50px;
	padding: 13px 22px;
	border: 1px solid var(--bmt-black) !important;
	border-radius: 999px !important;
	background: var(--bmt-black) !important;
	color: var(--bmt-white) !important;
	font-weight: 820 !important;
}

.bmt-form-shell .ff-btn-submit:hover,
.bmt-form-shell button[type="submit"]:hover,
.bmt-form-shell input[type="submit"]:hover {
	background: var(--bmt-acid) !important;
	color: var(--bmt-black) !important;
}

.bmt-form textarea,
.bmt-form-shell textarea {
	min-height: 132px;
}

.bmt-form label {
	display: grid;
	gap: 7px;
	font-weight: 720;
}

.bmt-table-region {
	overflow-x: auto;
	margin-top: 24px;
	border: 1px solid var(--bmt-line);
	border-radius: 8px;
	background: var(--bmt-white);
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-inline: contain;
}

.bmt-table-region:focus-visible {
	outline: 3px solid var(--bmt-black);
	outline-offset: 3px;
}

.bmt-table {
	width: 100%;
	min-width: 830px;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 15px;
}

.bmt-table th,
.bmt-table td {
	padding: 16px;
	border-right: 1px solid var(--bmt-line);
	border-bottom: 1px solid var(--bmt-line);
	text-align: left;
	vertical-align: top;
}

.bmt-table th {
	background: var(--bmt-black);
	color: var(--bmt-white);
	font-weight: 800;
}

.bmt-reading > table.bmt-matrix {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	table-layout: fixed;
}

.bmt-reading > table.bmt-matrix th,
.bmt-reading > table.bmt-matrix td {
	overflow-wrap: anywhere;
}

.bmt-table tr > :first-child {
	position: sticky;
	left: 0;
	z-index: 2;
	width: 160px;
	min-width: 160px;
	max-width: 160px;
	font-weight: 800;
	background: var(--bmt-white);
	background-clip: padding-box;
	box-shadow: 1px 0 0 var(--bmt-line);
}

.bmt-table thead tr:first-child > :first-child {
	z-index: 3;
	background: var(--bmt-black);
}

.bmt-article {
	font-size: 19px;
	line-height: 1.78;
}

.bmt-article h1 {
	font-size: clamp(42px, 5vw, 72px);
}

.bmt-article p,
.bmt-article li {
	color: #252525;
}

.bmt-article a {
	overflow-wrap: anywhere;
}

.bmt-article h2 {
	margin-top: 58px;
}

.bmt-callout {
	margin: 42px 0;
	padding: 26px;
	border-left: 4px solid var(--bmt-black);
	background: var(--bmt-soft);
}

.bmt-post-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.bmt-post-card {
	min-height: 230px;
	padding: 24px;
	border: 1px solid var(--bmt-line);
	border-radius: 8px;
	background: var(--bmt-white);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bmt-post-card h2 {
	font-size: 22px;
	line-height: 1.16;
}

.bmt-post-card time {
	color: var(--bmt-muted);
	font-size: 13px;
	font-weight: 720;
}

.bmt-pagination {
	margin-top: 34px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.bmt-pagination .page-numbers {
	min-width: 42px;
	padding: 10px 13px;
	border: 1px solid var(--bmt-line);
	border-radius: 999px;
	background: var(--bmt-white);
	color: var(--bmt-black);
	text-align: center;
	font-size: 14px;
	font-weight: 780;
	text-decoration: none;
}

.bmt-pagination .current {
	background: var(--bmt-black);
	color: var(--bmt-white);
}

.bmt-footer {
	padding: 78px var(--bmt-gutter) 30px;
	background: var(--bmt-black);
	color: var(--bmt-white);
}

.bmt-footer-grid {
	max-width: var(--bmt-wide);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr .8fr;
	gap: clamp(28px, 5vw, 70px);
}

.bmt-footer h2 {
	margin-bottom: 16px;
	color: var(--bmt-white);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.bmt-footer p,
.bmt-footer a,
.bmt-footer-bottom {
	color: rgba(255, 255, 255, .76);
}

.bmt-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bmt-footer li + li {
	margin-top: 10px;
}

.bmt-footer a:hover {
	color: var(--bmt-white);
}

.bmt-footer-brand {
	margin-bottom: 18px;
	color: var(--bmt-white);
}

.bmt-footer .bmt-mark {
	background: var(--bmt-white);
}

.bmt-footer-note {
	max-width: 310px;
}

.bmt-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.bmt-social a {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 820;
	text-decoration: none;
}

.bmt-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.bmt-social a:hover {
	border-color: var(--bmt-acid);
	color: var(--bmt-acid);
}

.bmt-footer-bottom {
	max-width: var(--bmt-wide);
	margin: 54px auto 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	display: flex;
	justify-content: space-between;
	gap: 24px;
	font-size: 13px;
}

@media (max-width: 1140px) {
	.bmt-header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.bmt-nav {
		display: none;
	}

	.bmt-header-cta {
		display: none;
	}

	.bmt-menu-toggle {
		display: block;
	}

	.bmt-site .bmt-header .bmt-menu-toggle {
		display: block;
		grid-column: 3 / 4;
		justify-self: end;
	}

	.bmt-mobile-panel[data-open="true"] {
		display: block;
	}
}

@media (max-width: 960px) {
	.bmt-hero-grid,
	.bmt-method-grid,
	.bmt-grid.two,
	.bmt-grid.three,
	.bmt-lane-choice,
	.bmt-offer-panel,
	.bmt-footer-grid,
	.bmt-post-list {
		grid-template-columns: 1fr;
	}

	.bmt-lane + .bmt-lane {
		border-left: 0;
		border-top: 1px solid var(--bmt-line);
	}

}

@media (max-width: 760px) {
	.bmt-section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.bmt-method-row,
	.bmt-trace-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.bmt-footer-bottom {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	body.bmt-site {
		font-size: 16px;
	}

	.bmt-site h1 {
		font-size: clamp(39px, 12vw, 48px);
	}

	.bmt-article h1 {
		font-size: clamp(34px, 9.8vw, 40px);
		line-height: 1.02;
	}

	.bmt-button {
		width: 100%;
	}

	.bmt-actions {
		width: 100%;
	}

	.bmt-table {
		min-width: 820px;
	}

	.bmt-table tr > :first-child {
		width: 132px;
		min-width: 132px;
		max-width: 132px;
	}

	.bmt-table th,
	.bmt-table td {
		padding: 12px 13px;
	}

	.bmt-article .bmt-reading > table.bmt-matrix:not(.bmt-table) {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		table-layout: fixed !important;
	}

	.bmt-article .bmt-reading > table.bmt-matrix:not(.bmt-table) th,
	.bmt-article .bmt-reading > table.bmt-matrix:not(.bmt-table) td {
		overflow-wrap: anywhere;
		word-break: normal;
	}
}

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

	.bmt-button,
	.bmt-menu-toggle::before,
	.bmt-menu-toggle::after {
		transition: none;
	}
}
