/* ============================================================
   BONIMEDICS BLOGG – ARTIKELSIDA
   Scoped till #bm-post. Samma tokens som startsidan/samlingssidan.
============================================================ */
#bm-post {
	--teal:           #2a9d8f;
	--teal-dark:      #1f7a6e;
	--teal-deep:      #123e3a;
	--teal-light:     #e8f5f2;
	--teal-glow:      rgba(42, 157, 143, 0.12);
	--cream:          #faf8f5;
	--cream-warm:     #f5f0ea;
	--charcoal:       #2c2c2c;
	--charcoal-light: #555;
	--gold:           #c9a96e;
	--white:          #ffffff;
	--serif:          'Cormorant Garamond', Georgia, serif;
	--sans:           'Outfit', system-ui, sans-serif;
	--radius:         12px;
	--radius-lg:      20px;
	--shadow-soft:    0 4px 30px rgba(0, 0, 0, 0.06);
	--shadow-hover:   0 8px 40px rgba(42, 157, 143, 0.18);
	--ease-out:       cubic-bezier(0.23, 1, 0.32, 1);
	--transition:     200ms var(--ease-out);
	--measure:        760px;

	font-family: var(--sans);
	color: var(--charcoal);
	background: var(--white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

#bm-post, #bm-post *, #bm-post *::before, #bm-post *::after {
	box-sizing: border-box;
}
#bm-post > *, #bm-post h1, #bm-post h2, #bm-post h3, #bm-post p, #bm-post ol, #bm-post ul, #bm-post figure {
	margin: 0;
	padding: 0;
}
#bm-post h1, #bm-post h2, #bm-post h3 {
	font-family: var(--sans);
	font-weight: 500;
}
#bm-post img {
	display: block;
	max-width: 100%;
	height: auto;
}
#bm-post [hidden] {
	display: none !important;
}
#bm-post .bm-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
#bm-post .bm-post__inner {
	max-width: 1280px;
	margin: 0 auto;
}

/* Fade-up */
#bm-post .fu {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}
#bm-post .fu.visible {
	opacity: 1;
	transform: translateY(0);
}
#bm-post .d1 { transition-delay: 40ms; }
#bm-post .d2 { transition-delay: 80ms; }
#bm-post .d3 { transition-delay: 120ms; }
@media (prefers-reduced-motion: reduce) {
	#bm-post .fu { opacity: 1; transform: none; transition: none; }
}

/* Delade element */
#bm-post .section-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 14px;
}
#bm-post .section-label--light {
	color: rgba(255, 255, 255, 0.72);
}

#bm-post .btn-teal,
#bm-post .btn-white,
#bm-post .btn-ghost,
#bm-post .btn-outline-light {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	border-radius: 50px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out),
	            color 200ms var(--ease-out), box-shadow 200ms var(--ease-out), transform 160ms ease-out;
}
#bm-post .btn-teal:active, #bm-post .btn-white:active, #bm-post .btn-ghost:active, #bm-post .btn-outline-light:active {
	transform: scale(0.97);
}
#bm-post .btn-teal .bm-icon, #bm-post .btn-white .bm-icon, #bm-post .btn-ghost .bm-icon {
	width: 15px; height: 15px;
	transition: transform var(--transition);
}
#bm-post .btn-teal { background: var(--teal); color: var(--white) !important; padding: 13px 26px; }
#bm-post .btn-white { background: var(--white); color: var(--teal-dark) !important; padding: 15px 34px; font-size: 15px; }
#bm-post .btn-ghost { background: transparent; color: var(--charcoal) !important; border-color: rgba(0,0,0,0.12); padding: 13px 26px; }
#bm-post .btn-outline-light { background: transparent; color: var(--white) !important; border-color: rgba(255,255,255,0.32); padding: 15px 30px; font-size: 15px; }

@media (hover: hover) and (pointer: fine) {
	#bm-post .btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,157,143,0.32); }
	#bm-post .btn-white:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
	#bm-post .btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark) !important; background: var(--teal-light); }
	#bm-post .btn-ghost:hover .bm-icon { transform: translateX(3px); }
	#bm-post .btn-outline-light:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
}

/* ============================================================
   LÄSFRAMSTEG
============================================================ */
#bm-post .bm-post__progress {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 3px;
	background: var(--teal);
	transform-origin: 0 50%;
	transform: scaleX(0);
	z-index: 9999;
	pointer-events: none;
}

/* ============================================================
   1. HEADER
============================================================ */
#bm-post .bm-post__hero {
	position: relative;
	overflow: hidden;
	background: var(--cream);
	padding: 64px 40px 0;
}
#bm-post .bm-post__hero-glow {
	position: absolute;
	top: -280px; left: 50%;
	width: 900px; height: 620px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, rgba(42,157,143,0.16) 0%, rgba(42,157,143,0) 62%);
	pointer-events: none;
}
#bm-post .bm-post__hero-inner {
	position: relative;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}
#bm-post .bm-post__crumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--charcoal-light);
	margin-bottom: 26px;
}
#bm-post .bm-post__crumbs a {
	color: var(--charcoal-light);
	text-decoration: none;
	transition: color var(--transition);
}
#bm-post .bm-post__crumbs a:hover {
	color: var(--teal-dark);
}
#bm-post .bm-post__crumbs-sep {
	opacity: 0.4;
}
#bm-post .bm-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--charcoal-light);
	margin-bottom: 20px;
}
#bm-post .bm-post__meta > * {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
#bm-post .bm-post__meta .bm-icon {
	width: 14px; height: 14px;
	opacity: 0.7;
}
#bm-post .bm-post__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--teal);
}
#bm-post .bm-post__meta-sep {
	width: 4px; height: 4px;
	border-radius: 50%;
	background: var(--teal);
	opacity: 0.5;
}
#bm-post .bm-post__updated {
	color: var(--teal-dark);
}
#bm-post .bm-post__title {
	font-size: clamp(32px, 4.4vw, 56px);
	line-height: 1.12;
	letter-spacing: -0.8px;
	color: var(--charcoal);
	margin-bottom: 20px;
}
#bm-post .bm-post__lead {
	font-size: 17.5px;
	line-height: 1.7;
	color: var(--charcoal-light);
	max-width: 680px;
	margin: 0 auto;
}
#bm-post .bm-post__figure {
	position: relative;
	max-width: 1100px;
	margin: 44px auto -120px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(18, 62, 58, 0.14);
	background: var(--cream-warm);
	z-index: 1;
}
#bm-post .bm-post__figure img {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
}

/* ============================================================
   2. LAYOUT
============================================================ */
#bm-post .bm-post__layout {
	max-width: 1180px;
	margin: 0 auto;
	padding: 160px 40px 96px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 72px;
	align-items: start;
}
#bm-post .bm-post__hero:not(:has(.bm-post__figure)) + .bm-post__layout {
	padding-top: 64px;
}
#bm-post .bm-post__article {
	max-width: var(--measure);
	min-width: 0;
}
#bm-post .bm-post__aside {
	min-width: 0;
}
#bm-post .bm-post__sticky {
	position: sticky;
	top: 110px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* ============================================================
   2a. INNEHÅLLSTYPOGRAFI
   Måttlig specificitet: sätter grund för Gutenberg-innehåll och
   Elementor-widgets utan att slå ut medveten styling i inläggen.
============================================================ */
#bm-post .bm-post__content {
	font-size: 17px;
	line-height: 1.8;
	color: var(--charcoal);
}
#bm-post .bm-post__content > * + *,
#bm-post .bm-post__content .elementor-widget-container > * + * {
	margin-top: 1.25em;
}
#bm-post .bm-post__content p {
	margin: 0 0 1.25em;
}
#bm-post .bm-post__content h2,
#bm-post .bm-post__content h3,
#bm-post .bm-post__content h4 {
	font-family: var(--sans);
	font-weight: 500;
	color: var(--charcoal);
	line-height: 1.25;
	letter-spacing: -0.3px;
	scroll-margin-top: 110px;
	margin: 2.2em 0 0.7em;
}
#bm-post .bm-post__content h2 { font-size: clamp(26px, 2.6vw, 32px); }
#bm-post .bm-post__content h3 { font-size: clamp(21px, 2vw, 24px); }
#bm-post .bm-post__content h4 { font-size: 18px; font-weight: 600; }
#bm-post .bm-post__content h2:first-child,
#bm-post .bm-post__content h3:first-child {
	margin-top: 0;
}
#bm-post .bm-post__content .bm-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
#bm-post .bm-post__content .bm-products__grid > .bm-pcard {
	min-width: 0;
}
#bm-post .bm-post__content .bm-post__intro {
	margin: 0 0 54px;
	padding: clamp(24px, 5vw, 38px);
	background: var(--cream);
	border: 1px solid rgba(18, 62, 58, .10);
	border-radius: var(--radius-lg);
}
#bm-post .bm-post__content .bm-post__intro > :is(h2, h3, h4) {
	margin: 0 0 20px;
	color: var(--teal-deep);
	font-size: clamp(25px, 3vw, 31px);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -.02em;
}
#bm-post .bm-post__content .bm-post__intro > p {
	margin: 0;
	color: var(--charcoal);
	font-size: 17px;
	line-height: 1.8;
}
#bm-post .bm-post__content a:not(.btn-teal):not(.elementor-button) {
	color: var(--teal-dark);
	text-decoration: underline;
	text-decoration-color: rgba(31, 122, 110, 0.35);
	text-underline-offset: 3px;
	transition: text-decoration-color var(--transition), color var(--transition);
}
#bm-post .bm-post__content a:not(.btn-teal):not(.elementor-button):hover {
	color: var(--teal);
	text-decoration-color: var(--teal);
}
#bm-post .bm-post__content ul,
#bm-post .bm-post__content ol {
	padding-left: 1.4em;
	margin: 0 0 1.25em;
}
#bm-post .bm-post__content li + li {
	margin-top: 0.4em;
}
#bm-post .bm-post__content li::marker {
	color: var(--teal);
}
#bm-post .bm-post__content strong {
	font-weight: 600;
}
#bm-post .bm-post__content img {
	border-radius: var(--radius);
}
#bm-post .bm-post__content figure {
	margin: 2em 0;
}
#bm-post .bm-post__content figcaption,
#bm-post .bm-post__content .wp-element-caption {
	font-size: 13px;
	color: var(--charcoal-light);
	margin-top: 10px;
	text-align: center;
}
#bm-post .bm-post__content blockquote {
	margin: 2em 0;
	padding: 24px 28px;
	border-left: 3px solid var(--teal);
	background: var(--cream);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-family: var(--serif);
	font-size: 22px;
	font-style: italic;
	line-height: 1.5;
	color: var(--teal-deep);
}
#bm-post .bm-post__content blockquote p:last-child {
	margin-bottom: 0;
}
#bm-post .bm-post__content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	margin: 2em 0;
}
#bm-post .bm-post__content th,
#bm-post .bm-post__content td {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	text-align: left;
	vertical-align: top;
}
#bm-post .bm-post__content th {
	font-weight: 600;
	background: var(--cream);
}
#bm-post .bm-post__content hr {
	border: 0;
	height: 1px;
	background: rgba(0,0,0,0.08);
	margin: 2.5em 0;
}
#bm-post .bm-post__content .wp-block-button__link,
#bm-post .bm-post__content .elementor-button {
	border-radius: 50px;
}
/* Elementor-sektioner i inlägget: släpp sidopadding så texten linjerar */
#bm-post .bm-post__content .elementor-section .elementor-container,
#bm-post .bm-post__content .e-con {
	max-width: 100%;
}

/* ============================================================
   2b. INNEHÅLLSFÖRTECKNING
============================================================ */
#bm-post .bm-post__toc {
	background: var(--cream);
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: var(--radius-lg);
	padding: 22px 24px;
}
#bm-post .bm-post__toc-title,
#bm-post .bm-post__toc summary {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--teal-dark);
	margin-bottom: 14px;
}
#bm-post .bm-post__toc ol {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
}
#bm-post .bm-post__toc a {
	display: block;
	padding: 7px 10px 7px 14px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--charcoal-light);
	text-decoration: none;
	border-left: 2px solid transparent;
	border-radius: 0 8px 8px 0;
	transition: color var(--transition), border-color var(--transition), background var(--transition);
}
#bm-post .bm-post__toc li[data-level="3"] a {
	padding-left: 26px;
	font-size: 13.5px;
}
#bm-post .bm-post__toc a:hover {
	color: var(--teal-dark);
	background: rgba(42,157,143,0.06);
}
#bm-post .bm-post__toc a.is-active {
	color: var(--teal-dark);
	border-left-color: var(--teal);
	font-weight: 500;
}
#bm-post .bm-post__toc--mobile {
	display: none;
	margin-bottom: 32px;
	padding: 0;
}
#bm-post .bm-post__toc--mobile summary {
	list-style: none;
	cursor: pointer;
	padding: 16px 22px;
	margin: 0;
	user-select: none;
}
#bm-post .bm-post__toc--mobile summary::-webkit-details-marker {
	display: none;
}
#bm-post .bm-post__toc--mobile summary .bm-icon--chevron {
	margin-left: auto;
	transition: transform var(--transition);
}
#bm-post .bm-post__toc--mobile[open] summary .bm-icon--chevron {
	transform: rotate(180deg);
}
#bm-post .bm-post__toc--mobile ol {
	padding: 0 18px 16px;
}

/* ============================================================
   2c. CTA-KORT I SIDOKOLUMN
============================================================ */
#bm-post .bm-post__cta-card {
	background: var(--white);
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
#bm-post .bm-post__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--teal-light);
	color: var(--teal-dark);
	margin-bottom: 4px;
}
#bm-post .bm-post__cta-icon .bm-icon {
	width: 18px; height: 18px;
	color: var(--gold);
}
#bm-post .bm-post__cta-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--charcoal);
}
#bm-post .bm-post__cta-text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--charcoal-light);
	margin-bottom: 8px;
}
#bm-post .bm-post__cta-link {
	font-size: 13px;
	font-weight: 500;
	color: var(--charcoal-light);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(0,0,0,0.2);
}
#bm-post .bm-post__cta-link:hover {
	color: var(--teal-dark);
}

/* ============================================================
   2d. DELA + TILLBAKA
============================================================ */
#bm-post .bm-post__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid rgba(0,0,0,0.08);
}
#bm-post .bm-post__share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}
#bm-post .bm-post__share-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--charcoal-light);
}
#bm-post .bm-post__share-btns {
	display: flex;
	gap: 8px;
}
#bm-post .bm-post__share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 40px;
	padding: 0 16px;
	background: var(--white);
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 50px;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 600;
	color: var(--charcoal);
	text-decoration: none;
	cursor: pointer;
	transition: border-color var(--transition), color var(--transition), background var(--transition), transform 160ms ease-out;
}
#bm-post .bm-post__share-btn--icon {
	width: 40px;
	padding: 0;
}
#bm-post .bm-post__share-btn .bm-icon {
	width: 15px; height: 15px;
}
#bm-post .bm-post__share-btn:active {
	transform: scale(0.96);
}
#bm-post .bm-post__share-btn.is-copied {
	background: var(--teal-light);
	border-color: var(--teal);
	color: var(--teal-dark);
}
#bm-post .bm-post__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--teal-dark);
	text-decoration: none;
}
#bm-post .bm-post__back .bm-icon {
	width: 15px; height: 15px;
	transition: transform var(--transition);
}
@media (hover: hover) and (pointer: fine) {
	#bm-post .bm-post__share-btn:hover {
		border-color: var(--teal);
		color: var(--teal-dark);
		background: var(--teal-light);
	}
	#bm-post .bm-post__back:hover .bm-icon {
		transform: translateX(-3px);
	}
}

/* ============================================================
   2e. FÖREGÅENDE / NÄSTA
============================================================ */
#bm-post .bm-post__adjacent {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 40px;
}
#bm-post .bm-post__adj {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px 24px;
	background: var(--cream);
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--charcoal);
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
#bm-post .bm-post__adj--next {
	text-align: right;
	align-items: flex-end;
}
#bm-post .bm-post__adj--empty {
	background: transparent;
	border-color: transparent;
}
#bm-post .bm-post__adj-dir {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--teal-dark);
}
#bm-post .bm-post__adj-dir .bm-icon {
	width: 13px; height: 13px;
	transition: transform var(--transition);
}
#bm-post .bm-post__adj-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
	#bm-post a.bm-post__adj:hover {
		background: var(--white);
		transform: translateY(-3px);
		box-shadow: var(--shadow-hover);
	}
	#bm-post .bm-post__adj--prev:hover .bm-icon { transform: translateX(-3px); }
	#bm-post .bm-post__adj--next:hover .bm-icon { transform: translateX(3px); }
}

/* ============================================================
   3. RELATERADE ARTIKLAR
============================================================ */
#bm-post .bm-post__related {
	background: var(--cream);
	padding: 96px 40px;
}
#bm-post .bm-post__related-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 44px;
}
#bm-post .bm-post__h2 {
	font-size: clamp(30px, 3.4vw, 44px);
	line-height: 1.15;
	color: var(--charcoal);
}
#bm-post .bm-post__h2 em {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 500;
	font-size: 1.1em;
	color: var(--teal);
}

#bm-post .bm-articles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
#bm-post .bm-acard {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(0,0,0,0.05);
	box-shadow: var(--shadow-soft);
	text-decoration: none !important;
	color: var(--charcoal) !important;
	display: flex;
	flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition);
}
#bm-post .bm-acard__img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--cream);
}
#bm-post .bm-acard__img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#bm-post .bm-acard__img-fallback {
	width: 100%; height: 100%;
	background: radial-gradient(circle at 30% 30%, rgba(42,157,143,0.22), transparent 55%),
	            linear-gradient(135deg, var(--teal-light), var(--cream-warm));
}
#bm-post .bm-acard__body {
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
#bm-post .bm-acard__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--teal);
}
#bm-post .bm-acard__meta-sep {
	width: 4px; height: 4px;
	background: var(--teal);
	border-radius: 50%;
	opacity: 0.5;
	flex-shrink: 0;
}
#bm-post .bm-acard__meta-date {
	color: var(--charcoal-light);
	font-weight: 500;
}
#bm-post .bm-acard__title {
	font-size: 19px;
	line-height: 1.3;
	color: var(--charcoal);
}
#bm-post .bm-acard__excerpt {
	font-size: 14px;
	color: var(--charcoal-light);
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
#bm-post .bm-acard__footer {
	margin-top: auto;
	padding-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
#bm-post .bm-acard__readmore {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--teal-dark);
}
#bm-post .bm-acard__readmore .bm-icon {
	width: 14px; height: 14px;
	transition: transform var(--transition);
}
#bm-post .bm-acard__time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--charcoal-light);
}
#bm-post .bm-acard__time .bm-icon {
	width: 13px; height: 13px;
	opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
	#bm-post .bm-acard:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
	#bm-post .bm-acard:hover .bm-acard__img img { transform: scale(1.05); }
	#bm-post .bm-acard:hover .bm-acard__readmore .bm-icon { transform: translateX(4px); }
}

/* ============================================================
   4. CTA-BAND
============================================================ */
#bm-post .bm-post__band {
	position: relative;
	overflow: hidden;
	padding: 96px 40px;
	background: var(--teal-deep);
	color: var(--white);
}
#bm-post .bm-post__band-glow {
	position: absolute;
	right: -180px; top: -220px;
	width: 720px; height: 720px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(42,157,143,0.55) 0%, rgba(42,157,143,0) 65%);
	pointer-events: none;
}
#bm-post .bm-post__band-inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) auto;
	align-items: center;
	gap: 48px;
}
#bm-post .bm-post__band-h2 {
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.12;
	letter-spacing: -0.6px;
	color: var(--white);
	margin-bottom: 18px;
}
#bm-post .bm-post__band-h2 em {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 500;
	font-size: 1.1em;
	color: rgba(255,255,255,0.9);
}
#bm-post .bm-post__band-p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255,255,255,0.76);
	max-width: 560px;
}
#bm-post .bm-post__band-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

/* ============================================================
   RESPONSIVT
============================================================ */
@media (max-width: 1100px) {
	#bm-post .bm-post__layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 48px;
	}
	#bm-post .bm-articles__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	#bm-post .bm-post__band-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	#bm-post .bm-post__band-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 960px) {
	#bm-post .bm-post__layout {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 120px 28px 72px;
	}
	#bm-post .bm-post__hero:not(:has(.bm-post__figure)) + .bm-post__layout {
		padding-top: 48px;
	}
	#bm-post .bm-post__article {
		max-width: none;
	}
	#bm-post .bm-post__toc--desktop {
		display: none !important;
	}
	#bm-post .bm-post__toc--mobile:not([hidden]) {
		display: block;
	}
	#bm-post .bm-post__sticky {
		position: static;
	}
	#bm-post .bm-post__aside {
		max-width: 560px;
	}
	#bm-post .bm-post__hero {
		padding: 48px 28px 0;
	}
	#bm-post .bm-post__figure {
		margin-bottom: -90px;
	}
	#bm-post .bm-post__related {
		padding: 72px 28px;
	}
	#bm-post .bm-post__band {
		padding: 76px 28px;
	}
}

@media (max-width: 640px) {
	#bm-post .bm-post__content .bm-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
	#bm-post .bm-post__hero {
		padding: 36px 20px 0;
	}
	#bm-post .bm-post__crumbs {
		margin-bottom: 18px;
	}
	#bm-post .bm-post__meta {
		gap: 10px;
		font-size: 12px;
	}
	#bm-post .bm-post__lead {
		font-size: 16px;
	}
	#bm-post .bm-post__figure {
		margin: 28px auto -60px;
		border-radius: 16px;
	}
	#bm-post .bm-post__figure img {
		aspect-ratio: 16 / 10;
	}
	#bm-post .bm-post__layout {
		padding: 84px 20px 60px;
	}
	#bm-post .bm-post__content {
		font-size: 16px;
	}
	#bm-post .bm-post__content blockquote {
		font-size: 19px;
		padding: 18px 20px;
	}
	#bm-post .bm-post__foot {
		flex-direction: column;
		align-items: flex-start;
	}
	#bm-post .bm-post__adjacent {
		grid-template-columns: 1fr;
	}
	#bm-post .bm-post__adj--next {
		text-align: left;
		align-items: flex-start;
	}
	#bm-post .bm-post__adj--empty {
		display: none;
	}
	#bm-post .bm-articles__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	#bm-post .bm-post__related {
		padding: 60px 20px;
	}
	#bm-post .bm-post__band {
		padding: 64px 20px;
	}
	#bm-post .bm-post__band-actions {
		flex-direction: column;
		align-items: stretch;
	}
	#bm-post .bm-post__band-actions .btn-white,
	#bm-post .bm-post__band-actions .btn-outline-light {
		width: 100%;
	}
}
