/*
 * Base theme stylesheet entrypoint.
 */

:root {
	--bm-brand-primary: #0c7ba6;
	--bm-brand-primary-hover: #086485;
	--bm-brand-accent: #d62a1e;
	--bm-brand-ink: #101820;
	--bm-text-body: #24323b;
	--bm-text-muted: #687783;
	--bm-surface-base: #edf1f4;
	--bm-surface-elevated: #ffffff;
	--bm-surface-soft: #f7f8fa;
	--bm-border-subtle: #d8e0e6;
	--bm-shadow-soft: 0 14px 30px rgba(16, 24, 32, 0.08);
	--bm-shadow-card: 0 10px 24px rgba(19, 36, 46, 0.12);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.5;
	color: var(--bm-text-body);
	background:
		radial-gradient(circle at top left, rgba(12, 123, 166, 0.08), transparent 26%),
		linear-gradient(180deg, #edf2f5 0%, #e8eef2 100%);
}

a {
	color: inherit;
}

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

.l-container {
	width: min(100% - 2rem, 61rem);
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--bm-surface-elevated);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-header__utility {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(216, 224, 230, 0.9);
}

.site-header__utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 2.4rem;
	gap: 1rem;
}

.utility-nav,
.primary-nav,
.mobile-primary-nav,
.mobile-utility-nav-list,
.footer-nav,
.footer-utility-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.utility-nav,
.footer-utility-nav {
	gap: 1rem;
	flex-wrap: wrap;
}

.utility-nav a,
.utility-search-link {
	color: var(--bm-text-muted);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-header__main {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	column-gap: 1.75rem;
	min-height: 4.7rem;
	background: linear-gradient(90deg, #0b7aa7 0%, #0e87b5 100%);
}

.site-brand {
	display: inline-flex;
	flex-direction: column;
	text-decoration: none;
	color: #ffffff;
}

.site-brand__name {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3vw, 3.1rem);
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 0.95;
	text-transform: uppercase;
	text-shadow: 2px 2px 0 rgba(5, 33, 47, 0.34);
}

.site-brand__tagline {
	margin-top: 0.2rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.76);
}

.primary-nav {
	gap: 1.4rem;
	justify-content: center;
	flex-wrap: wrap;
}

.primary-nav a,
.desktop-search-link {
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.desktop-search-link,
.mobile-search-link {
	font-size: 0.9rem;
}

.mobile-nav-toggle {
	display: none;
	padding: 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 0.45rem;
	background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-toggle__line {
	display: block;
	width: 1.3rem;
	height: 0.12rem;
	margin: 0.18rem 0;
	background: #ffffff;
}

.mobile-menu-panel {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.85rem 0 1rem;
	background: #0f7ea9;
}

.mobile-primary-nav,
.mobile-utility-nav-list {
	flex-direction: column;
	gap: 0.3rem;
}

.mobile-primary-nav a,
.mobile-utility-nav-list a,
.mobile-search-link {
	display: block;
	padding: 0.55rem 0;
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bm-homepage {
	padding: 1.35rem 0 0;
}

.bm-homepage__ticker {
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid rgba(216, 224, 230, 0.9);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.bm-homepage__ticker-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	column-gap: 1rem;
	min-height: 3.25rem;
}

.bm-homepage__ticker-label {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: #111111;
}

.bm-homepage__ticker-items {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.25rem;
	color: #25333d;
	font-size: 0.95rem;
}

.bm-homepage__ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: #51606b;
}

.bm-homepage__ticker-item.is-active {
	color: #24323b;
}

.bm-homepage__ticker-time {
	font-weight: 700;
	color: var(--bm-text-muted);
}

.bm-homepage__hero-shell {
	margin-top: 1.6rem;
}

.bm-homepage__hero-topbar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(216, 224, 230, 0.95);
	border-bottom: 0;
	box-shadow: var(--bm-shadow-soft);
}

.bm-homepage__hero-city {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #132029;
	text-transform: uppercase;
}

.bm-homepage__hero-city-sep {
	color: var(--bm-text-muted);
}

.bm-homepage__hero-weather {
	color: var(--bm-brand-primary);
}

.bm-homepage__hero-tools,
.bm-homepage__hero-markets {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.88rem;
	color: #24323b;
}

.bm-homepage__hero-tools span + span,
.bm-homepage__hero-markets span + span {
	position: relative;
	padding-left: 0.85rem;
}

.bm-homepage__hero-tools span + span::before,
.bm-homepage__hero-markets span + span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2rem;
	width: 1px;
	height: 0.9rem;
	background: var(--bm-border-subtle);
}

.bm-homepage__hero-markets strong {
	font-size: 0.76rem;
	text-transform: uppercase;
	color: var(--bm-text-muted);
}

.bm-homepage__section {
	margin-bottom: 1.8rem;
}

.bm-homepage__section-title {
	margin: 0 0 0.9rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.75rem;
	line-height: 1.1;
	color: #12212b;
}

.bm-hero {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 251, 0.98) 100%);
	border: 1px solid rgba(216, 224, 230, 0.95);
	box-shadow: var(--bm-shadow-soft);
}

.bm-hero__lead {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
	min-height: 25rem;
}

.bm-hero__lead-copy {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.2rem 1.25rem 2.2rem 1.4rem;
	background:
		linear-gradient(90deg, rgba(203, 188, 154, 0.96) 0%, rgba(203, 188, 154, 0.91) 74%, rgba(203, 188, 154, 0.12) 100%),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.36), transparent 40%);
}

.bm-hero__label {
	position: absolute;
	top: 1.15rem;
	left: 1.4rem;
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.9rem;
	background: #c73327;
	border-radius: 999px;
	color: #ffffff;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 10px 18px rgba(199, 51, 39, 0.28);
}

.bm-hero__eyebrow {
	margin: 0 0 0.6rem;
	color: rgba(16, 24, 32, 0.65);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bm-hero__lead h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.55rem, 4vw, 4rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: #161616;
	text-wrap: balance;
}

.bm-hero__lead h2 a {
	text-decoration: none;
}

.bm-hero__lead p {
	max-width: 24rem;
	margin: 1rem 0 0;
	font-size: 1.03rem;
	color: rgba(16, 24, 32, 0.83);
}

.bm-hero__lead-media,
.bm-hero__support-media,
.bm-post-list__thumb {
	overflow: hidden;
}

.bm-hero__lead-media {
	position: relative;
	min-height: 100%;
	background:
		linear-gradient(180deg, rgba(6, 21, 29, 0.12), rgba(6, 21, 29, 0.04)),
		linear-gradient(120deg, #9ba4ab 0%, #bcc4ca 20%, #7d868f 20%, #899199 42%, #cfd3d7 42%, #d9dcdf 58%, #8b9299 58%, #b8c0c7 77%, #d7dbdf 77%, #a0a7ad 100%);
}

.bm-hero__lead-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(270deg, rgba(15, 126, 169, 0.02) 0%, rgba(203, 188, 154, 0.08) 100%),
		linear-gradient(0deg, rgba(22, 29, 34, 0.18) 0%, rgba(22, 29, 34, 0) 22%);
	pointer-events: none;
}

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

.bm-demo-tile {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.bm-demo-tile__glow,
.bm-demo-tile__grid {
	position: absolute;
	inset: 0;
}

.bm-demo-tile__glow {
	background:
		radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.12));
}

.bm-demo-tile__grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
	background-size: 3rem 3rem;
	mix-blend-mode: soft-light;
}

.bm-demo-tile--support {
	min-height: 6.4rem;
	background:
		linear-gradient(135deg, #11435b 0%, #1c7894 38%, #d1e0e7 38%, #f4f7f9 100%);
}

.bm-demo-tile--card {
	min-height: 100%;
	background:
		linear-gradient(135deg, #0f6e92 0%, #1f8cb2 45%, #f3f6f8 45%, #ced8df 100%);
}

.bm-hero__support {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(216, 224, 230, 0.95);
}

.bm-hero__support-item {
	background: #ffffff;
	border-right: 1px solid rgba(216, 224, 230, 0.95);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.bm-hero__support-item:last-child {
	border-right: 0;
}

.bm-hero__support-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--bm-shadow-card);
}

.bm-hero__support-item a {
	display: grid;
	grid-template-columns: 7rem 1fr;
	gap: 0.85rem;
	padding: 0.85rem;
	text-decoration: none;
}

.bm-hero__support-media img,
.bm-post-list__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bm-hero__support-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bm-hero__support-category {
	margin: 0 0 0.3rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bm-brand-primary);
}

.bm-hero__support-item h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	line-height: 1.25;
	color: #111111;
}

.bm-hero__pager {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	padding: 0.75rem 1rem 0.9rem;
	background: #f2f5f7;
	border-top: 1px solid rgba(216, 224, 230, 0.95);
}

.bm-hero__pager span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	min-height: 2rem;
	padding: 0.35rem 0.6rem;
	background: transparent;
	color: #465560;
	font-weight: 700;
}

.bm-hero__pager span.is-current,
.bm-hero__pager-badge {
	background: var(--bm-brand-primary);
	color: #ffffff;
}

.bm-hero__pager-badge {
	margin-left: auto;
	font-size: 0.82rem;
}

.bm-breaking-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
}

.bm-breaking-strip__item {
	display: grid;
	gap: 0.35rem;
	padding: 0.9rem 1rem;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(216, 224, 230, 0.95);
	border-left: 4px solid var(--bm-brand-accent);
	box-shadow: var(--bm-shadow-soft);
}

.bm-breaking-strip__item time {
	font-size: 0.77rem;
	font-weight: 800;
	color: var(--bm-brand-accent);
}

.bm-breaking-strip__item span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	line-height: 1.25;
	color: #17222b;
}

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

.bm-post-list__item,
.bm-category-block,
.bm-homepage__popular,
.bm-homepage__utilities,
.bm-listing-page__header,
.bm-unified-list__item,
.bm-unified-pagination,
.bm-unified-empty,
.bm-single__article {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(216, 224, 230, 0.95);
	box-shadow: var(--bm-shadow-soft);
}

.bm-post-list__item {
	display: grid;
	grid-template-columns: 10.5rem 1fr;
	gap: 0.9rem;
	padding: 0.85rem;
}

.bm-post-list__thumb {
	display: block;
	min-height: 8rem;
	background: #cad5dc;
}

.bm-post-list__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bm-post-list__item a {
	text-decoration: none;
}

.bm-post-list__item h3 {
	margin: 0.35rem 0 0.4rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.18rem;
	line-height: 1.22;
	color: #111111;
}

.bm-post-list__item p {
	margin: 0;
}

.bm-post-list__meta {
	font-size: 0.74rem;
	font-weight: 700;
	color: var(--bm-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

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

.bm-category-block {
	padding: 1rem;
}

.bm-category-block__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.8rem;
}

.bm-category-block__header h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.3rem;
}

.bm-category-block__header h3 a,
.bm-category-block__list a,
.bm-popular-list a {
	text-decoration: none;
}

.bm-category-block__link {
	color: var(--bm-brand-primary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.bm-category-block__list {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding-left: 1rem;
}

.bm-popular-list {
	display: grid;
	gap: 0.75rem;
	margin: 0;
	padding: 1rem 1rem 1rem 1.5rem;
}

.bm-popular-list li::marker {
	color: var(--bm-brand-primary);
	font-weight: 800;
}

.bm-homepage__placeholder-text,
.bm-homepage__empty {
	margin: 0;
	padding: 1rem 1.1rem;
	color: var(--bm-text-muted);
	font-size: 0.92rem;
}

.bm-homepage__ad {
	margin: 1rem 0;
}

.bm-listing-page,
.bm-single {
	padding: 1.5rem 0 0;
}

.bm-listing-page__inner {
	display: grid;
	gap: 1rem;
}

.bm-listing-page__header {
	padding: 1rem;
}

.bm-listing-page__title {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.5rem;
}

.bm-listing-page__intro {
	margin: 0.5rem 0 0;
	color: var(--bm-text-muted);
}

.bm-unified-list {
	display: grid;
	gap: 0.9rem;
}

.bm-unified-list__item {
	display: grid;
	grid-template-columns: 11rem 1fr;
	gap: 0.9rem;
	padding: 0.85rem;
}

.bm-unified-list__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bm-unified-list__meta {
	margin: 0;
	font-size: 0.8rem;
	color: var(--bm-text-muted);
}

.bm-unified-list__title {
	margin: 0.35rem 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	line-height: 1.28;
}

.bm-unified-list__title a {
	text-decoration: none;
}

.bm-unified-list__excerpt {
	margin: 0;
}

.bm-unified-pagination {
	margin-top: 0.25rem;
	padding: 0.75rem 1rem;
}

.bm-unified-empty {
	padding: 1rem;
}

.bm-unified-empty h2 {
	margin-top: 0;
	font-family: Georgia, "Times New Roman", serif;
}

.bm-search-form {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.85rem;
}

.bm-search-form__input {
	flex: 1;
	padding: 0.55rem 0.65rem;
	border: 1px solid var(--bm-border-subtle);
}

.bm-search-form__submit {
	padding: 0.55rem 0.9rem;
	border: 0;
	background: var(--bm-brand-primary);
	color: #ffffff;
	font-weight: 700;
	cursor: pointer;
}

.bm-single__article {
	padding: 1rem;
}

.bm-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0 0 0.8rem;
	padding: 0;
	list-style: none;
	font-size: 0.85rem;
	color: var(--bm-text-muted);
}

.bm-breadcrumb li:not(:last-child)::after {
	content: ">";
	margin-left: 0.4rem;
}

.bm-single__breaking {
	display: inline-block;
	margin: 0 0 0.5rem;
	padding: 0.25rem 0.5rem;
	background: var(--bm-brand-accent);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
}

.bm-single__title {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
	line-height: 1.2;
}

.bm-single__deck {
	margin: 0.7rem 0;
	font-size: 1.05rem;
	color: var(--bm-text-muted);
}

.bm-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 0.9rem;
	font-size: 0.85rem;
	color: var(--bm-text-muted);
}

.bm-single__media {
	margin: 0;
}

.bm-single__media figcaption {
	margin-top: 0.35rem;
	font-size: 0.8rem;
	color: var(--bm-text-muted);
}

.bm-single__update-note {
	margin: 0.95rem 0;
	padding: 0.6rem 0.8rem;
	border-left: 3px solid var(--bm-brand-accent);
	background: #fff2f0;
}

.bm-single__content {
	max-width: 46rem;
	margin-top: 1rem;
}

.bm-single__source,
.bm-single__share,
.bm-single__related {
	margin-top: 1.25rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--bm-border-subtle);
}

.bm-single__share ul,
.bm-single__related ul {
	margin: 0;
	padding-left: 1rem;
}

.site-footer {
	margin-top: 2.5rem;
	background: #112431;
	border-top: 4px solid var(--bm-brand-primary);
	color: rgba(255, 255, 255, 0.84);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2rem;
	padding: 2rem 0;
}

.site-footer__title {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.site-footer__tagline {
	margin: 0.25rem 0 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.62);
}

.site-footer__links {
	display: grid;
	gap: 0.75rem;
}

.footer-nav {
	gap: 1.25rem;
	flex-wrap: wrap;
}

.footer-nav a,
.footer-utility-nav a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.site-footer__meta {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__meta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.875rem 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.58);
}

.site-footer__meta-inner p {
	margin: 0;
}

@media (max-width: 78rem) {
	.bm-homepage__hero-topbar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 62rem) {
	.desktop-nav,
	.desktop-search-link {
		display: none;
	}

	.mobile-nav-toggle {
		display: inline-block;
		justify-self: end;
	}

	.site-header__main {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.bm-hero__lead {
		grid-template-columns: 1fr;
	}

	.bm-hero__lead-copy {
		min-height: 18rem;
	}

	.bm-hero__lead-media {
		min-height: 19rem;
	}

	.bm-hero__support {
		grid-template-columns: 1fr;
	}

	.bm-hero__support-item {
		border-right: 0;
		border-top: 1px solid rgba(216, 224, 230, 0.95);
	}

	.bm-breaking-strip,
	.bm-post-list,
	.bm-category-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 48rem) {
	.l-container {
		width: min(100% - 1rem, 61rem);
	}

	.site-header__utility {
		display: none;
	}

	.site-brand__name {
		font-size: 2.2rem;
	}

	.bm-homepage__ticker-inner {
		grid-template-columns: 1fr;
		padding: 0.7rem 0;
	}

	.bm-homepage__ticker-items {
		font-size: 0.88rem;
	}

	.bm-homepage__hero-topbar {
		padding: 0.85rem;
	}

	.bm-homepage__hero-tools,
	.bm-homepage__hero-markets {
		gap: 0.55rem;
		font-size: 0.8rem;
	}

	.bm-homepage__hero-tools span + span,
	.bm-homepage__hero-markets span + span {
		padding-left: 0.55rem;
	}

	.bm-hero__lead-copy {
		padding: 1.25rem 1rem 1.4rem;
	}

	.bm-hero__label {
		position: static;
		align-self: flex-start;
		margin-bottom: 1rem;
	}

	.bm-hero__lead h2 {
		font-size: 2.2rem;
	}

	.bm-hero__lead p {
		font-size: 0.95rem;
	}

	.bm-hero__support-item a,
	.bm-post-list__item,
	.bm-unified-list__item {
		grid-template-columns: 1fr;
	}

	.bm-post-list__thumb {
		min-height: 12rem;
	}

	.bm-hero__pager-badge {
		margin-left: 0;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding: 1.5rem 0;
	}

	.bm-single__title {
		font-size: 1.5rem;
	}

	.bm-search-form {
		flex-direction: column;
	}
}
