.bld-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--body);
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-soft);
	margin-bottom: 24px;
	transition: color .2s var(--ease), gap .2s var(--ease);
}
.bld-back svg {
	width: 16px;
	height: 16px;
}
.bld-back:hover {
	color: var(--brand-text);
	gap: 11px;
}
.bld-h1 {
	margin-top: 14px;
	font-size: clamp(30px, 4.2vw, 46px);
	line-height: 1.16;
	max-width: 780px;
}
.bld-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin-top: 18px;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-faint);
}
.bld-meta span {
	white-space: nowrap;
}
.bld-meta-dot {
	color: var(--line);
}
.bld-lede {
	margin-top: 18px;
}

.bld-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 21 / 8;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--brand-tint), var(--mist));
	color: var(--brand-btn);
}
.bld-banner svg {
	width: 56px;
	height: 56px;
}
@media (max-width: 640px) {
	.bld-banner {
		aspect-ratio: 4 / 3;
	}
}

.bld-article {
	max-width: 860px;
}
.bld-article p {
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--ink-soft);
	margin-bottom: 22px;
}
.bld-article h2 {
	font-size: clamp(21px, 2.4vw, 26px);
	line-height: 1.3;
	margin: 40px 0 18px;
}
.bld-list {
	margin: 0 0 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bld-list li {
	position: relative;
	padding-left: 24px;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--ink-soft);
}
.bld-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--brand-btn);
}
.bld-quote {
	margin: 32px 0;
	padding: 24px 28px;
	border-left: 3px solid var(--brand-btn);
	background: var(--mist);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-family: var(--display);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--ink);
}

.bld-author {
	display: flex;
	align-items: center;
	gap: 16px;
}
.bld-author-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--card);
	border: 1px solid var(--line);
	color: var(--brand-btn);
}
.bld-author-avatar svg {
	width: 24px;
	height: 24px;
}
.bld-author-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.bld-author-name {
	font-size: 15.5px;
	font-weight: 700;
	color: var(--ink);
}
.bld-author-role {
	font-size: 13.5px;
	color: var(--ink-soft);
}

.bld-cta {
	background: #e8e9eb;
	color: var(--ink);
}
.bld-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.bld-cta-text .h2 {
	color: var(--ink);
	font-size: clamp(24px, 2.6vw, 32px);
}
@media (max-width: 900px) {
	.bld-cta-inner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}
