/**
 * 文章 / 工具详情页顶部全宽海报.
 */

.leafs-detail-hero {
	position: relative;
	isolation: isolate;
	min-height: var(--leafs-hero-h, 400px);
	overflow: hidden;
	margin-bottom: 1.25rem;
	color: #fff;
}

.leafs-detail-hero__glow {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	opacity: 0.45;
	mix-blend-mode: screen;
	background: radial-gradient(
		420px 320px at var(--hx, 50%) var(--hy, 40%),
		rgba(255, 255, 255, 0.22),
		transparent 72%
	);
	transition: opacity 0.35s ease;
}

.leafs-detail-hero__glow[hidden] {
	display: none;
}

.leafs-detail-hero__parallax {
	position: absolute;
	inset: 0;
	z-index: 0;
	will-change: transform;
}

.leafs-detail-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.leafs-detail-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 0.55s ease, transform 0.6s ease;
}

.leafs-detail-hero--has-image.leafs-detail-hero--img-ready .leafs-detail-hero__img {
	opacity: 1;
	transform: scale(1);
}

.leafs-detail-hero[data-blur="1"] .leafs-detail-hero__img {
	filter: blur(4px);
	transform: scale(1.06);
}

.leafs-detail-hero[data-blur="1"].leafs-detail-hero--img-ready .leafs-detail-hero__img {
	transform: scale(1.08);
}

.leafs-detail-hero__media--mesh,
.leafs-detail-hero--gradient .leafs-detail-hero__media--mesh,
.leafs-detail-hero--img-error .leafs-detail-hero__media {
	background:
		radial-gradient(ellipse 120% 80% at 20% 20%, rgba(99, 102, 241, 0.45), transparent 55%),
		radial-gradient(ellipse 100% 70% at 80% 60%, rgba(168, 85, 247, 0.4), transparent 50%),
		linear-gradient(160deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
}

.leafs-detail-hero--img-error .leafs-detail-hero__img {
	display: none;
}

.leafs-detail-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: var(--leafs-hero-overlay, linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)));
}

/* 夜间模式：海报压暗一层，突出白字（覆盖主题设置里的渐变透明度） */
html[data-leafs-theme="dark"] .leafs-detail-hero .leafs-detail-hero__scrim {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.78) 0%,
		rgba(0, 0, 0, 0.5) 45%,
		rgba(0, 0, 0, 0.38) 100%
	);
}

.leafs-detail-hero__inner {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	min-height: var(--leafs-hero-h, 400px);
	padding: 0;
	box-sizing: border-box;
}

.leafs-detail-hero__stack {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	min-height: var(--leafs-hero-h, 400px);
	padding: 1.75rem 0 2rem;
	box-sizing: border-box;
}

.leafs-detail-hero--tool .leafs-detail-hero__stack {
	justify-content: flex-start;
	min-height: 0;
}

/*
 * 文章海报：禁止「面包屑 margin:auto + 内容区 flex-end」造成的中缝巨缝；
 * 自上而下自然排版，并收紧整体高度上限，减少上下无效留白。
 */
.leafs-detail-hero.leafs-detail-hero--post,
.leafs-detail-hero.leafs-detail-hero--post .leafs-detail-hero__inner,
.leafs-detail-hero.leafs-detail-hero--post .leafs-detail-hero__stack {
	min-height: clamp(260px, 42vh, var(--leafs-hero-h, 400px));
}

.leafs-detail-hero--post .leafs-detail-hero__stack {
	justify-content: flex-start;
	padding: 0.5rem 0 1.35rem;
}

.leafs-detail-hero--post .leafs-detail-hero__crumbs {
	margin-bottom: 0.45rem;
	padding-bottom: 0;
}

.leafs-detail-hero--post .leafs-detail-hero__title {
	margin-bottom: 1.05rem;
	/* 默认换行：先占满一行再断行，不用 balance 以免过早折行 */
	text-wrap: wrap;
	max-width: 100%;
}

.leafs-detail-hero--post .leafs-detail-hero__title-row .leafs-detail-hero__title {
	margin-bottom: 0;
}

.leafs-detail-hero--post .leafs-detail-hero__content {
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

.leafs-detail-hero--post .leafs-detail-hero__meta-row {
	margin-bottom: 0.85rem;
	justify-content: flex-start;
}

.leafs-detail-hero--post .leafs-detail-hero__secondary {
	margin-top: 0.15rem;
	max-width: 100%;
}

/* 作者信息条：更通透的玻璃质感 + 内边距，避免「挤成一团」 */
.leafs-detail-hero--post .leafs-detail-hero__meta-pill {
	padding: 0.5rem 1rem 0.5rem 0.45rem;
	gap: 0.65rem 0.85rem;
	border-radius: 999px;
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 6px 28px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
}

.leafs-detail-hero--post .leafs-detail-hero__meta-pill .leafs-detail-hero__avatar {
	width: 34px;
	height: 34px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.leafs-detail-hero--post .leafs-detail-hero__meta-text {
	gap: 0.2rem 0.35rem;
	line-height: 1.55;
	row-gap: 0.15rem;
}

/* 标签 + 直达：标签一行，「直达官网」在下一行左侧（与红框示意一致） */
.leafs-detail-hero--post .leafs-detail-hero__tax-cta {
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.65rem;
	text-align: left;
}

.leafs-detail-hero--post .leafs-detail-hero__tax-cta .leafs-detail-hero__tax {
	flex: none;
	width: 100%;
	min-width: 0;
	justify-content: flex-start;
}

.leafs-detail-hero--post .leafs-detail-hero__tax-cta .leafs-detail-hero__post-cta {
	margin-left: 0;
	align-self: flex-start;
}

.leafs-detail-hero--post .leafs-detail-hero__pill {
	padding: 0.32rem 0.82rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.leafs-detail-hero--post .leafs-detail-hero__excerpt {
	margin-top: 0.85rem;
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

.leafs-detail-hero__crumbs {
	align-self: flex-start;
	width: 100%;
	margin-bottom: auto;
	padding-bottom: 0.75rem;
}

.leafs-detail-hero--tool .leafs-detail-hero__crumbs {
	margin-bottom: 0.75rem;
}

.leafs-breadcrumb.leafs-breadcrumb--on-dark {
	font-size: 0.8125rem;
	line-height: 1.45;
}

.leafs-breadcrumb--on-dark a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.leafs-breadcrumb--on-dark a:hover {
	color: #fff;
}

.leafs-breadcrumb--on-dark .leafs-breadcrumb__sep {
	color: rgba(255, 255, 255, 0.45);
	margin: 0 0.2em;
}

.leafs-breadcrumb--on-dark .leafs-breadcrumb__current {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 500;
}

.leafs-detail-hero__content {
	width: 100%;
	max-width: 100%;
	text-align: left;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition:
		opacity 0.55s ease 0.08s,
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.leafs-detail-hero__tool-main {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.leafs-detail-hero--tool .leafs-tool-single__hero {
	align-items: flex-start;
}

.leafs-detail-hero--tool .leafs-tool-single__title {
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.leafs-detail-hero--tool .leafs-tool-single__excerpt {
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.leafs-detail-hero--tool .leafs-tool-single__meta-grid {
	color: rgba(255, 255, 255, 0.82) !important;
}

.leafs-detail-hero--tool .leafs-tool-single__meta-grid > span + span::before {
	color: rgba(255, 255, 255, 0.45);
}

.leafs-detail-hero--tool .leafs-tool-info-grid {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(10px);
}

.leafs-detail-hero--tool .leafs-tool-info-grid__label {
	color: rgba(255, 255, 255, 0.72);
}

.leafs-detail-hero--tool .leafs-tool-info-grid__value {
	color: rgba(255, 255, 255, 0.96);
}

.leafs-detail-hero--tool .leafs-tool-info-grid__value a {
	color: #a7f3d0;
}

.leafs-detail-hero--tool .leafs-tool-info-grid__value a:hover {
	color: #d1fae5;
}

@supports not (backdrop-filter: blur(1px)) {
	.leafs-detail-hero--tool .leafs-tool-info-grid {
		background: rgba(15, 23, 42, 0.55);
	}
}

.leafs-detail-hero--animate-in .leafs-detail-hero__content {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* 文章海报：可选徽章（热门 / 精选） */
.leafs-detail-hero__badge {
	display: inline-block;
	margin: 0 0 0.5rem;
	padding: 0.22rem 0.7rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #fff;
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.38);
	backdrop-filter: blur(8px);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.leafs-detail-hero__title {
	margin: 0 0 0.75rem;
	font-size: 2.625rem; /* 42px */
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.4),
		0 2px 20px rgba(0, 0, 0, 0.28);
	transition: transform 0.2s ease;
}

.leafs-detail-hero__title:hover {
	transform: translateY(-1px);
}

/* 有官网链接时：标题左侧小封面（文章 / 工具海报共用） */
.leafs-detail-hero__title-row {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin-bottom: 1.05rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.leafs-detail-hero__title-row .leafs-detail-hero__title {
	flex: 1 1 auto;
	min-width: 0;
	margin-bottom: 0;
}

.leafs-detail-hero__cover-link {
	display: block;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 12px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.24);
	box-shadow:
		0 2px 10px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
	line-height: 0;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.leafs-detail-hero__cover-link:hover {
	transform: translateY(-1px);
	box-shadow:
		0 4px 18px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.leafs-detail-hero__cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.leafs-detail-hero__cover-link .leafs-tool-thumb__img {
	object-fit: contain;
	padding: 5px;
	box-sizing: border-box;
	background: rgba(15, 23, 42, 0.35);
}

.leafs-detail-hero--tool .leafs-tool-single__title-row {
	align-items: center;
	gap: 0.75rem;
}

.leafs-detail-hero--tool .leafs-tool-single__title-row .leafs-tool-single__title {
	flex: 1 1 auto;
	min-width: 0;
}

/* 仅编辑器手写摘要：两行，白字 0.9 透明度 */
.leafs-detail-hero__excerpt {
	margin: 0.65rem 0 0;
	max-width: 52rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* 分类/标签 + 直达官网：同一行（宽屏左标签、右按钮），减少纵向堆叠 */
.leafs-detail-hero__secondary {
	margin-top: 0.45rem;
	width: 100%;
	max-width: min(100%, 56rem);
}

.leafs-detail-hero__tax-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	width: 100%;
}

.leafs-detail-hero__tax-cta .leafs-detail-hero__tax {
	flex: 1 1 12rem;
	min-width: 0;
	margin-top: 0;
}

.leafs-detail-hero__tax-cta .leafs-detail-hero__post-cta {
	flex: 0 0 auto;
	margin-top: 0;
	margin-left: auto;
	align-self: center;
}

.leafs-detail-hero__tax-cta .leafs-detail-hero__post-cta:only-child {
	margin-left: 0;
}

.leafs-detail-hero__post-cta .leafs-tool-cta {
	box-shadow:
		0 6px 24px rgba(0, 0, 0, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 文章海报「直达官网」：更大、更醒目 */
.leafs-detail-hero__cta-btn.leafs-tool-cta,
.leafs-detail-hero__post-cta .leafs-tool-cta {
	padding: 0.7rem 1.65rem;
	font-size: 1.05rem;
	font-weight: 650;
	border-radius: 999px;
	min-height: 0;
	line-height: 1.35;
	gap: 10px;
	letter-spacing: 0.02em;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		filter 0.18s ease;
}

.leafs-detail-hero__post-cta .leafs-tool-cta:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow:
		0 10px 28px rgba(0, 0, 0, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.leafs-detail-hero__post-cta .leafs-tool-cta .leafs-tool-cta__icon {
	font-size: 1.05em;
	opacity: 0.95;
}

.leafs-detail-hero__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	margin-bottom: 0.35rem;
}

/* 元数据胶囊：半透底 + 大圆角，内为头像 + 圆点分隔文案 */
.leafs-detail-hero__meta-pill {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem 0.55rem;
	max-width: 100%;
	min-width: 0;
	padding: 4px 12px;
	border-radius: 30px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
	flex: 0 1 auto;
}

.leafs-detail-hero__meta {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex: 1 1 240px;
	min-width: 0;
	font-size: 0.9rem;
}

.leafs-detail-hero__meta--tool {
	margin-bottom: 0.35rem;
}

.leafs-detail-hero__meta-pill .leafs-detail-hero__avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, 0.45);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.leafs-detail-hero__avatar {
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, 0.35);
}

.leafs-detail-hero__meta-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.15rem 0.25rem;
	min-width: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.leafs-detail-hero__author a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.leafs-detail-hero__author a:hover {
	color: #fff;
	opacity: 0.9;
}

.leafs-detail-hero__time,
.leafs-detail-hero__read,
.leafs-detail-hero__comments {
	color: rgba(255, 255, 255, 0.96);
}

.leafs-detail-hero__dot {
	opacity: 0.55;
	user-select: none;
}

/* 分类 + 标签胶囊（可与直达按钮同行） */
.leafs-detail-hero__tax {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.45rem;
	margin-top: 0;
	max-width: 100%;
}

.leafs-detail-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.5rem;
	margin-top: 0.35rem;
}

.leafs-detail-hero__pill {
	display: inline-flex;
	align-items: center;
	padding: 0.22rem 0.72rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-decoration: none;
	backdrop-filter: blur(6px);
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
}

.leafs-detail-hero__pill:hover {
	background: rgba(255, 255, 255, 0.28);
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}

.leafs-detail-hero__pill--tax:hover {
	background: var(--leafs-brand);
	border-color: var(--leafs-brand);
	color: var(--leafs-on-primary, #fff);
	box-shadow: 0 2px 12px color-mix(in srgb, var(--leafs-brand) 45%, transparent);
}

@supports not (color: color-mix(in srgb, black 50%, white)) {
	.leafs-detail-hero__pill--tax:hover {
		box-shadow: 0 2px 12px rgba(45, 106, 79, 0.35);
	}
}

@supports not (backdrop-filter: blur(1px)) {
	.leafs-detail-hero__pill {
		background: rgba(0, 0, 0, 0.35);
	}

	.leafs-detail-hero__meta-pill {
		background: rgba(15, 23, 42, 0.45);
	}

	.leafs-detail-hero--post .leafs-detail-hero__meta-pill {
		background: rgba(15, 23, 42, 0.58);
	}

	.leafs-detail-hero__badge {
		background: rgba(15, 23, 42, 0.5);
	}
}

@media (max-width: 768px) {
	.leafs-detail-hero {
		min-height: var(--leafs-hero-h-mobile, 250px);
		margin-bottom: 1rem;
	}

	.leafs-detail-hero__inner {
		min-height: var(--leafs-hero-h-mobile, 250px);
	}

	.leafs-detail-hero__stack {
		min-height: var(--leafs-hero-h-mobile, 250px);
		padding: 1.1rem 0 1.35rem;
	}

	.leafs-detail-hero.leafs-detail-hero--post,
	.leafs-detail-hero.leafs-detail-hero--post .leafs-detail-hero__inner,
	.leafs-detail-hero.leafs-detail-hero--post .leafs-detail-hero__stack {
		min-height: clamp(240px, 52vh, var(--leafs-hero-h-mobile, 250px));
	}

	.leafs-detail-hero--post .leafs-detail-hero__stack {
		padding: 0.35rem 0 1.1rem;
	}

	.leafs-detail-hero--tool .leafs-tool-single__hero {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.leafs-detail-hero--tool .leafs-tool-single__hero-main {
		align-items: center;
	}

	.leafs-detail-hero--tool .leafs-tool-single__meta-grid {
		justify-content: center;
	}

	.leafs-detail-hero--tool .leafs-tool-single__actions {
		justify-content: center;
	}

	.leafs-detail-hero__title {
		font-size: 1.75rem; /* 28px */
		line-height: 1.22;
	}

	.leafs-detail-hero__badge {
		font-size: 0.68rem;
		margin-bottom: 0.4rem;
	}

	.leafs-detail-hero__excerpt {
		font-size: 0.875rem;
		margin-top: 0.5rem;
	}

	.leafs-detail-hero__meta-pill {
		font-size: 0.8125rem;
		justify-content: center;
	}

	.leafs-detail-hero__meta,
	.leafs-detail-hero__meta-text {
		font-size: 0.75rem;
	}

	.leafs-detail-hero__content {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.leafs-detail-hero__meta-row {
		justify-content: center;
	}

	.leafs-detail-hero__meta {
		justify-content: center;
	}

	.leafs-detail-hero__meta-text {
		justify-content: center;
	}

	.leafs-detail-hero__pills,
	.leafs-detail-hero__tax {
		justify-content: center;
	}

	.leafs-detail-hero__tax-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 0.65rem;
	}

	.leafs-detail-hero__tax-cta .leafs-detail-hero__tax {
		justify-content: center;
	}

	.leafs-detail-hero__tax-cta .leafs-detail-hero__post-cta {
		margin-left: 0;
		display: flex;
		justify-content: center;
	}

	.leafs-detail-hero__tax-cta .leafs-detail-hero__cta-btn {
		width: 100%;
		max-width: 18rem;
		justify-content: center;
	}

	/* 文章海报：与桌面一致，左对齐 */
	.leafs-detail-hero--post .leafs-detail-hero__content {
		text-align: left;
		margin-left: 0;
		margin-right: 0;
	}

	.leafs-detail-hero--post .leafs-detail-hero__meta-row {
		justify-content: flex-start;
	}

	.leafs-detail-hero--post .leafs-detail-hero__meta-pill {
		justify-content: flex-start;
	}

	.leafs-detail-hero--post .leafs-detail-hero__meta {
		justify-content: flex-start;
	}

	.leafs-detail-hero--post .leafs-detail-hero__meta-text {
		justify-content: flex-start;
	}

	.leafs-detail-hero--post .leafs-detail-hero__pills,
	.leafs-detail-hero--post .leafs-detail-hero__tax {
		justify-content: flex-start;
	}

	.leafs-detail-hero--post .leafs-detail-hero__tax-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 0.65rem;
	}

	.leafs-detail-hero--post .leafs-detail-hero__tax-cta .leafs-detail-hero__tax {
		justify-content: flex-start;
	}

	.leafs-detail-hero--post .leafs-detail-hero__tax-cta .leafs-detail-hero__post-cta {
		margin-left: 0;
		display: flex;
		justify-content: flex-start;
		align-self: flex-start;
	}

	.leafs-detail-hero--post .leafs-detail-hero__tax-cta .leafs-detail-hero__cta-btn {
		width: auto;
		max-width: 18rem;
	}

	.leafs-detail-hero__img {
		object-position: center top;
	}
}
