/*
 * DBM v6 — Blog archive + single post styles
 * Loaded only on /blog/ and single post pages.
 */

/* ─────────────────────────────────────────────
   Shared layout reset (OceanWP inner wrappers)
   ───────────────────────────────────────────── */

body.dbm-landing--v6-blog #content-wrap,
body.dbm-landing--v6-blog #primary,
body.dbm-landing--v6-blog #content,
body.dbm-landing--v6-post  #content-wrap,
body.dbm-landing--v6-post  #primary,
body.dbm-landing--v6-post  #content {
	all: unset;
	display: block;
}

body.dbm-landing--v6-blog .site-main,
body.dbm-landing--v6-post  .site-main {
	padding: 0;
	margin: 0;
}

/* ─────────────────────────────────────────────
   Blog archive — wrapper
   ───────────────────────────────────────────── */

.dbm-v6-blog-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 80px;
}

/* ─────────────────────────────────────────────
   Blog hero
   ───────────────────────────────────────────── */

.dbm-v6-blog-hero {
	padding: 72px 0 56px;
	border-bottom: 1px solid #f0f0f2;
	margin-bottom: 56px;
}

.dbm-v6-blog-hero__kicker {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7c3aed;
	background: rgba(124, 58, 237, 0.08);
	border: 1px solid rgba(124, 58, 237, 0.18);
	border-radius: 20px;
	padding: 4px 12px;
	margin-bottom: 20px;
}

.dbm-v6-blog-hero__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.04em;
	color: #09090b;
	margin: 0 0 16px;
	max-width: 760px;
}

.dbm-v6-blog-hero__sub {
	font-size: 17px;
	line-height: 1.6;
	color: #52525b;
	max-width: 620px;
	margin: 0;
}

/* ─────────────────────────────────────────────
   Blog card grid
   ───────────────────────────────────────────── */

.dbm-v6-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

@media (max-width: 900px) {
	.dbm-v6-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 580px) {
	.dbm-v6-blog-grid {
		grid-template-columns: 1fr;
	}
}

/* ─────────────────────────────────────────────
   Blog card
   ───────────────────────────────────────────── */

.dbm-v6-blog-card {
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	border: 1px solid #e4e4e7;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.dbm-v6-blog-card:hover {
	border-color: #d4d4d8;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
	transform: translateY(-2px);
}

.dbm-v6-blog-card__thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f4f4f5;
}

.dbm-v6-blog-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.dbm-v6-blog-card:hover .dbm-v6-blog-card__thumb img {
	transform: scale(1.03);
}

.dbm-v6-blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 22px 22px;
	gap: 8px;
}

.dbm-v6-blog-card__cat {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7c3aed;
	text-decoration: none;
}

.dbm-v6-blog-card__cat:hover {
	text-decoration: underline;
}

.dbm-v6-blog-card__title {
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.38;
	letter-spacing: -0.02em;
	color: #09090b;
	margin: 0;
}

.dbm-v6-blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.dbm-v6-blog-card__title a:hover {
	color: #7c3aed;
}

.dbm-v6-blog-card__excerpt {
	font-size: 13.5px;
	line-height: 1.55;
	color: #71717a;
	margin: 0;
	flex: 1;
}

.dbm-v6-blog-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 4px;
}

.dbm-v6-blog-card__date {
	font-size: 12px;
	color: #a1a1aa;
}

.dbm-v6-blog-card__read {
	font-size: 12.5px;
	font-weight: 600;
	color: #7c3aed;
	text-decoration: none;
	white-space: nowrap;
}

.dbm-v6-blog-card__read:hover {
	text-decoration: underline;
}

/* ─────────────────────────────────────────────
   Blog pagination
   ───────────────────────────────────────────── */

.dbm-v6-blog-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 56px;
	flex-wrap: wrap;
}

.dbm-v6-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #e4e4e7;
	background: #fff;
	font-size: 13px;
	font-weight: 500;
	color: #3f3f46;
	text-decoration: none;
	transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.dbm-v6-blog-pagination .page-numbers:hover {
	border-color: #7c3aed;
	color: #7c3aed;
}

.dbm-v6-blog-pagination .page-numbers.current {
	background: #7c3aed;
	border-color: #7c3aed;
	color: #fff;
}

.dbm-v6-blog-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	pointer-events: none;
}

/* ─────────────────────────────────────────────
   Blog empty + archive CTA strip
   ───────────────────────────────────────────── */

.dbm-v6-blog-empty {
	text-align: center;
	color: #71717a;
	font-size: 15px;
	padding: 48px 0;
}

.dbm-v6-blog-cta {
	margin-top: 80px;
	border-top: 1px solid #f0f0f2;
	padding-top: 56px;
}

.dbm-v6-blog-cta__inner {
	background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
	border: 1px solid rgba(124, 58, 237, 0.18);
	border-radius: 16px;
	padding: 40px 44px;
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

.dbm-v6-blog-cta__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7c3aed;
	margin: 0 0 6px;
}

.dbm-v6-blog-cta__h {
	font-size: 20px;
	font-weight: 600;
	color: #09090b;
	margin: 0;
	flex: 1;
	min-width: 240px;
}

@media (max-width: 640px) {
	.dbm-v6-blog-cta__inner {
		padding: 28px 24px;
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ─────────────────────────────────────────────
   Single post — wrapper
   ───────────────────────────────────────────── */

.dbm-v6-post-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 96px;
}

/* ─────────────────────────────────────────────
   Breadcrumb
   ───────────────────────────────────────────── */

.dbm-v6-post-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	padding: 28px 0 0;
	font-size: 12.5px;
	color: #a1a1aa;
}

.dbm-v6-post-breadcrumb a {
	color: #71717a;
	text-decoration: none;
}

.dbm-v6-post-breadcrumb a:hover {
	color: #7c3aed;
	text-decoration: underline;
}

/* ─────────────────────────────────────────────
   Post hero
   ───────────────────────────────────────────── */

.dbm-v6-post-hero {
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 0 32px;
	text-align: center;
}

.dbm-v6-post-hero__cat {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7c3aed;
	background: rgba(124, 58, 237, 0.08);
	border: 1px solid rgba(124, 58, 237, 0.18);
	border-radius: 20px;
	padding: 4px 12px;
	margin-bottom: 20px;
	text-decoration: none;
}

.dbm-v6-post-hero__cat:hover {
	background: rgba(124, 58, 237, 0.14);
}

.dbm-v6-post-hero__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	font-size: clamp(28px, 4.5vw, 48px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.04em;
	color: #09090b;
	margin: 0 0 20px;
}

.dbm-v6-post-hero__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 13px;
	color: #71717a;
}

.dbm-v6-post-hero__dot {
	color: #d4d4d8;
}

.dbm-v6-post-hero__date,
.dbm-v6-post-hero__read,
.dbm-v6-post-hero__author {
	color: #71717a;
}

/* ─────────────────────────────────────────────
   Post featured image
   ───────────────────────────────────────────── */

.dbm-v6-post-thumb {
	max-width: 900px;
	margin: 0 auto 48px;
	border-radius: 16px;
	overflow: hidden;
	background: #f4f4f5;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.dbm-v6-post-thumb__img {
	width: 100%;
	height: auto;
	display: block;
}

/* ─────────────────────────────────────────────
   Post body — article typography
   ───────────────────────────────────────────── */

.dbm-v6-post-body {
	max-width: 720px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.75;
	color: #27272a;
}

.dbm-v6-post-body h2 {
	font-family: var(--dbm-font, 'Inter', sans-serif);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: #09090b;
	margin: 2.2em 0 0.6em;
}

.dbm-v6-post-body h3 {
	font-family: var(--dbm-font, 'Inter', sans-serif);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.35;
	color: #09090b;
	margin: 2em 0 0.5em;
}

.dbm-v6-post-body h4 {
	font-size: 16px;
	font-weight: 600;
	color: #18181b;
	margin: 1.8em 0 0.4em;
}

.dbm-v6-post-body p {
	margin: 0 0 1.4em;
}

.dbm-v6-post-body a {
	color: #7c3aed;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.dbm-v6-post-body a:hover {
	color: #5b21b6;
}

.dbm-v6-post-body ul,
.dbm-v6-post-body ol {
	margin: 0 0 1.4em 1.4em;
	padding: 0;
}

.dbm-v6-post-body li {
	margin-bottom: 0.4em;
}

.dbm-v6-post-body blockquote {
	margin: 1.8em 0;
	padding: 20px 24px;
	border-left: 3px solid #7c3aed;
	background: rgba(124, 58, 237, 0.04);
	border-radius: 0 10px 10px 0;
	font-style: italic;
	color: #3f3f46;
}

.dbm-v6-post-body blockquote p:last-child {
	margin-bottom: 0;
}

.dbm-v6-post-body code {
	font-family: var(--dbm-font-mono, 'JetBrains Mono', monospace);
	font-size: 0.88em;
	background: #f4f4f5;
	border: 1px solid #e4e4e7;
	border-radius: 5px;
	padding: 2px 6px;
	color: #7c3aed;
}

.dbm-v6-post-body pre {
	background: #18181b;
	border-radius: 10px;
	padding: 20px 24px;
	overflow-x: auto;
	margin: 1.6em 0;
}

.dbm-v6-post-body pre code {
	background: none;
	border: none;
	padding: 0;
	color: #e4e4e7;
	font-size: 14px;
	line-height: 1.6;
}

.dbm-v6-post-body img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
	margin: 1.6em auto;
}

.dbm-v6-post-body hr {
	border: none;
	border-top: 1px solid #e4e4e7;
	margin: 2.4em 0;
}

.dbm-v6-post-body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14.5px;
	margin: 1.6em 0;
}

.dbm-v6-post-body th,
.dbm-v6-post-body td {
	padding: 10px 14px;
	border: 1px solid #e4e4e7;
	text-align: left;
}

.dbm-v6-post-body th {
	background: #f4f4f5;
	font-weight: 600;
	color: #09090b;
}

/* ─────────────────────────────────────────────
   Post tags
   ───────────────────────────────────────────── */

.dbm-v6-post-tags {
	max-width: 720px;
	margin: 32px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 28px;
	border-top: 1px solid #f0f0f2;
}

.dbm-v6-post-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	color: #52525b;
	background: #f4f4f5;
	border: 1px solid #e4e4e7;
	border-radius: 6px;
	padding: 4px 10px;
	text-decoration: none;
	transition: border-color 0.12s ease, color 0.12s ease;
}

.dbm-v6-post-tag:hover {
	border-color: #7c3aed;
	color: #7c3aed;
}

/* ─────────────────────────────────────────────
   Post navigation (prev / next)
   ───────────────────────────────────────────── */

.dbm-v6-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	max-width: 900px;
	margin: 56px auto 0;
}

@media (max-width: 540px) {
	.dbm-v6-post-nav {
		grid-template-columns: 1fr;
	}
}

.dbm-v6-post-nav__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px 22px;
	border: 1px solid #e4e4e7;
	border-radius: 12px;
	background: #fff;
	text-decoration: none;
	transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.dbm-v6-post-nav__link--next {
	text-align: right;
	margin-left: auto;
}

.dbm-v6-post-nav__link:hover {
	border-color: #7c3aed;
	box-shadow: 0 2px 12px rgba(124, 58, 237, 0.1);
}

.dbm-v6-post-nav__dir {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7c3aed;
}

.dbm-v6-post-nav__title {
	font-size: 14px;
	font-weight: 500;
	color: #27272a;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ─────────────────────────────────────────────
   Post bottom CTA
   ───────────────────────────────────────────── */

.dbm-v6-post-cta {
	max-width: 900px;
	margin: 56px auto 0;
}

.dbm-v6-post-cta__inner {
	background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 100%);
	border: 1px solid rgba(196, 181, 253, 0.2);
	border-radius: 18px;
	padding: 48px 52px;
	text-align: center;
	box-shadow: 0 12px 40px rgba(109, 40, 217, 0.3);
}

.dbm-v6-post-cta__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #a78bfa;
	margin: 0 0 14px;
}

.dbm-v6-post-cta__h {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	font-size: clamp(22px, 3.5vw, 32px);
	font-weight: 600;
	letter-spacing: -0.035em;
	color: #f5f3ff;
	margin: 0 0 12px;
	line-height: 1.15;
}

.dbm-v6-post-cta__sub {
	font-size: 15px;
	color: rgba(245, 243, 255, 0.65);
	margin: 0 0 28px;
}

.dbm-v6-post-cta__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 540px) {
	.dbm-v6-post-cta__inner {
		padding: 36px 24px;
	}

	.dbm-v6-post-cta__actions {
		flex-direction: column;
		align-items: center;
	}
}

/* ─────────────────────────────────────────────
   Related posts section
   ───────────────────────────────────────────── */

.dbm-v6-post-related {
	max-width: 1100px;
	margin: 72px auto 0;
}

.dbm-v6-post-related__h {
	font-size: 18px;
	font-weight: 700;
	color: #09090b;
	margin: 0 0 28px;
}

/* ─────────────────────────────────────────────
   Shared brand btn overrides for blog/post context
   ───────────────────────────────────────────── */

.dbm-v6-blog-wrap .dbm-brand-btn,
.dbm-v6-post-wrap .dbm-brand-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 22px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--dbm-font, 'Inter', sans-serif);
	text-decoration: none;
	cursor: pointer;
	transition: filter 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
	border: none;
}

.dbm-v6-blog-wrap .dbm-brand-btn--solid,
.dbm-v6-post-wrap .dbm-brand-btn--solid {
	background: #7c3aed;
	color: #fff;
}

.dbm-v6-blog-wrap .dbm-brand-btn--solid:hover,
.dbm-v6-post-wrap .dbm-brand-btn--solid:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.dbm-v6-blog-wrap .dbm-brand-btn--ghost,
.dbm-v6-post-wrap .dbm-brand-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #f5f3ff;
	border: 1px solid rgba(196, 181, 253, 0.35);
}

.dbm-v6-blog-wrap .dbm-brand-btn--ghost:hover,
.dbm-v6-post-wrap .dbm-brand-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   Reveal animation for blog cards
   ───────────────────────────────────────────── */

.dbm-v6-blog-grid .dbm-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.dbm-v6-blog-grid .dbm-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ═════════════════════════════════════════════════════════════════════
   Additional post-page CTA placements — lede strip (top), mid-article
   card (injected by `the_content` filter), service spotlight (below
   article), trust line (in bottom CTA). All exist to increase clickstream
   from blog posts to /free-ppc-audit/ and the relevant service page.
   ═════════════════════════════════════════════════════════════════════ */

/* ── Top lede strip — narrow horizontal banner under the hero meta ── */
.dbm-v6-post-lede {
	max-width: 760px;
	margin: 24px auto 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: linear-gradient(120deg, rgba(124, 58, 237, 0.06), rgba(13, 148, 136, 0.06));
	border: 1px solid rgba(124, 58, 237, 0.18);
	border-radius: 14px;
}
.dbm-v6-post-lede__badge {
	font-family: var(--dbm-font-mono, 'JetBrains Mono', ui-monospace, monospace);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6d28d9;
	background: #fff;
	border: 1px solid rgba(124, 58, 237, 0.25);
	border-radius: 999px;
	padding: 5px 10px;
	white-space: nowrap;
}
.dbm-v6-post-lede__copy {
	flex: 1 1 220px;
	font-size: 14px;
	color: #3f3f46;
	line-height: 1.4;
	margin: 0;
}
.dbm-v6-post-lede__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13.5px;
	font-weight: 600;
	color: #6d28d9;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(124, 58, 237, 0.3);
	border-radius: 8px;
	padding: 9px 14px;
	transition: color 0.14s ease, border-color 0.14s ease, transform 0.14s ease;
	white-space: nowrap;
}
.dbm-v6-post-lede__cta:hover {
	color: #5b21b6;
	border-color: rgba(124, 58, 237, 0.55);
	transform: translateY(-1px);
}

/* ── Mid-article CTA — injected after ~3rd paragraph via the_content ── */
.dbm-v6-post-body .dbm-v6-post-midcta {
	position: relative;
	margin: 2.6em -8px;
	padding: 28px 30px 26px;
	background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
	border: 1px solid rgba(124, 58, 237, 0.18);
	border-radius: 16px;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}
.dbm-v6-post-body .dbm-v6-post-midcta__bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #7c3aed 0%, #0d9488 100%);
}
.dbm-v6-post-body .dbm-v6-post-midcta__eyebrow {
	font-family: var(--dbm-font-mono, 'JetBrains Mono', ui-monospace, monospace);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6d28d9;
	margin: 0 0 10px;
}
.dbm-v6-post-body .dbm-v6-post-midcta__h {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #18181b;
	margin: 0 0 10px;
	line-height: 1.25;
}
.dbm-v6-post-body .dbm-v6-post-midcta__sub {
	font-size: 14.5px;
	color: #52525b;
	line-height: 1.55;
	margin: 0 0 18px;
}
.dbm-v6-post-body .dbm-v6-post-midcta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

/* ── Service spotlight — below the article body, deep-links to relevant
       service page based on the post's category/tags/title. ── */
.dbm-v6-post-spotlight {
	max-width: 900px;
	margin: 56px auto 0;
}
.dbm-v6-post-spotlight__inner {
	background: #fff;
	border: 1px solid #e4e4e7;
	border-radius: 18px;
	padding: 36px 42px;
	display: grid;
	gap: 10px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.dbm-v6-post-spotlight__eyebrow {
	font-family: var(--dbm-font-mono, 'JetBrains Mono', ui-monospace, monospace);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6d28d9;
	margin: 0;
}
.dbm-v6-post-spotlight__h {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 700;
	letter-spacing: -0.025em;
	color: #09090b;
	margin: 0;
	line-height: 1.2;
}
.dbm-v6-post-spotlight__sub {
	font-size: 15px;
	color: #52525b;
	line-height: 1.55;
	margin: 0;
}
.dbm-v6-post-spotlight__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

/* ── Trust line inside the dark bottom CTA ── */
.dbm-v6-post-cta__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 22px 0 0;
	font-size: 13px;
	color: rgba(245, 243, 255, 0.55);
}
.dbm-v6-post-cta__trust > span:first-child {
	color: #fde68a;
	letter-spacing: 0.12em;
}

/* ── Light-context ghost button override ──
   `.dbm-brand-btn--ghost` defaults to a dark-context style (white-on-dark)
   because the bottom CTA sits on a purple gradient. The mid-article CTA
   and service spotlight live on a light background, so we override the
   ghost variant only when it appears in those wrappers. */
.dbm-v6-post-midcta .dbm-brand-btn--ghost,
.dbm-v6-post-spotlight .dbm-brand-btn--ghost {
	background: #fff;
	color: #4b5563;
	border: 1px solid #d4d4d8;
}
.dbm-v6-post-midcta .dbm-brand-btn--ghost:hover,
.dbm-v6-post-spotlight .dbm-brand-btn--ghost:hover {
	color: #18181b;
	border-color: #7c3aed;
	background: #fff;
}

/* Small-screen polish */
@media (max-width: 540px) {
	.dbm-v6-post-lede {
		gap: 10px;
		padding: 12px 14px;
	}
	.dbm-v6-post-lede__copy { flex: 1 1 100%; }
	.dbm-v6-post-body .dbm-v6-post-midcta { padding: 22px 20px 20px; margin-inline: 0; }
	.dbm-v6-post-spotlight__inner { padding: 26px 22px; }
	.dbm-v6-post-spotlight__actions,
	.dbm-v6-post-body .dbm-v6-post-midcta__actions { flex-direction: column; align-items: stretch; }
	.dbm-v6-post-spotlight__actions .dbm-brand-btn,
	.dbm-v6-post-body .dbm-v6-post-midcta__actions .dbm-brand-btn { justify-content: center; }
}
