/**
 * Blog — Esmeralda Paper (child)
 * Índice: 4 colunas + margens da loja/home.
 * Leitor: mesmo ritmo tipográfico das páginas institucionais (Sobre, etc.).
 */

/* ── Chrome Ashe: mesmo contentor da loja/home ── */
body.ashe-wc-blog .sidebar-left,
body.ashe-wc-blog .sidebar-right,
body.ashe-wc-blog .sidebar-alt,
body.ashe-wc-blog #sidebar-left,
body.ashe-wc-blog #sidebar-right {
	display: none !important;
}

body.ashe-wc-blog .main-content,
body.ashe-wc-blog .main-container {
	float: none !important;
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* Igual brand.css: contentor 1320 + padding vertical do site */
body.ashe-wc-blog .main-container {
	width: 100% !important;
	max-width: var(--ashe-wc-max, 1320px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.ashe-wc-blog .main-content {
	width: 100% !important;
	max-width: var(--ashe-wc-max, 1320px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-top: 2.5rem !important;
	padding-bottom: 4.5rem !important;
	padding-left: 1.15rem !important;
	padding-right: 1.15rem !important;
	box-sizing: border-box !important;
}

@media screen and (min-width: 980px) {
	body.ashe-wc-blog .main-content {
		padding-left: 32px !important;
		padding-right: 32px !important;
		padding-top: 2.75rem !important;
		padding-bottom: 5rem !important;
	}
}

.ep-blog {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


/* ── Índice (4 colunas = loja) ── */
.ep-blog__hero {
	margin: 0 0 2.75rem;
	padding: 0 0 2rem;
	border-bottom: 1px solid var(--ashe-wc-line, #e5e1db);
	max-width: min(40rem, 100%);
	text-align: left;
}

.ep-blog__kicker {
	margin: 0 0 0.5rem;
	font-family: var(--ashe-wc-font-sans, "Open Sans", system-ui, sans-serif);
	font-size: var(--ashe-wc-fs-label, 0.68rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ashe-wc-moss, #455a51);
}

.ep-blog__title {
	margin: 0 0 0.65rem;
	font-family: var(--ashe-wc-font-serif, "Playfair Display", Georgia, serif);
	font-weight: 400;
	font-size: var(--ashe-wc-fs-h1, clamp(1.9rem, 3.2vw, 2.4rem));
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--ashe-wc-ink, #17191a);
}

.ep-blog__lead {
	margin: 0;
	font-size: var(--ashe-wc-fs-body, 0.95rem);
	line-height: 1.65;
	color: var(--ashe-wc-muted, #6a6e6c);
}

.ep-blog__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 1.1rem 0 0;
	padding: 0;
	list-style: none;
}

.ep-blog__nav a {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: var(--ashe-wc-radius-pill, 999px);
	border: 1px solid var(--ashe-wc-line, #e5e1db);
	background: var(--ashe-wc-white, #fff);
	color: var(--ashe-wc-moss-deep, #2c3a34);
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.3;
	transition: background var(--ashe-wc-dur) var(--ashe-wc-ease), color var(--ashe-wc-dur) var(--ashe-wc-ease), border-color var(--ashe-wc-dur) var(--ashe-wc-ease);
}

.ep-blog__nav a:hover,
.ep-blog__nav a.is-active {
	background: var(--ashe-wc-moss, #455a51);
	border-color: var(--ashe-wc-moss, #455a51);
	color: #fff;
}

.ep-blog__grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 1.5rem 1.35rem !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	width: 100% !important;
}

@media (max-width: 1200px) {
	.ep-blog__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 1.35rem 1.15rem !important;
	}
}
@media (max-width: 900px) {
	.ep-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 1.15rem 1rem !important;
	}
}
@media (max-width: 480px) {
	.ep-blog__grid {
		grid-template-columns: 1fr !important;
	}
}

.ep-blog-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	margin: 0;
	background: var(--ashe-wc-white, #fff);
	border: 1px solid var(--ashe-wc-line, #e5e1db);
	border-radius: var(--ashe-wc-radius-lg, 12px);
	box-shadow: var(--ashe-wc-shadow-soft);
	overflow: hidden;
	transition: box-shadow var(--ashe-wc-dur) var(--ashe-wc-ease), transform var(--ashe-wc-dur) var(--ashe-wc-ease), border-color var(--ashe-wc-dur) var(--ashe-wc-ease);
}

.ep-blog-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ashe-wc-shadow-hover);
	border-color: rgba(69, 90, 81, 0.22);
}

.ep-blog-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--ashe-wc-moss-soft, #eef2ef);
	overflow: hidden;
	text-decoration: none;
}

.ep-blog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	border: 0;
	transition: transform var(--ashe-wc-dur-slow) var(--ashe-wc-ease);
}

.ep-blog-card:hover .ep-blog-card__media img {
	transform: scale(1.04);
}

.ep-blog-card__media--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ashe-wc-moss-soft, #eef2ef);
	color: var(--ashe-wc-moss, #455a51);
	font-family: var(--ashe-wc-font-serif);
	font-size: 1.35rem;
	opacity: 0.55;
}

.ep-blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.15rem 1.2rem 1.25rem;
	min-width: 0;
	box-sizing: border-box;
}

.ep-blog-card__title {
	margin: 0 0 0.4rem;
	font-family: var(--ashe-wc-font-serif);
	font-weight: 400;
	font-size: 1.05rem;
	line-height: 1.35;
}

.ep-blog-card__title a {
	color: var(--ashe-wc-ink);
	text-decoration: none;
}

.ep-blog-card__title a:hover {
	color: var(--ashe-wc-moss);
}

.ep-blog-card__excerpt {
	margin: 0 0 0.85rem;
	flex: 1;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--ashe-wc-muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ep-blog-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 0.65rem;
	border-top: 1px solid var(--ashe-wc-line);
}

.ep-blog-card__more {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ashe-wc-moss);
	text-decoration: none;
}

.ep-blog-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	margin: 0 0 0.5rem;
	padding: 0;
	list-style: none;
}

.ep-blog-chip {
	display: inline-flex;
	padding: 0.2rem 0.55rem;
	border-radius: var(--ashe-wc-radius-pill);
	background: var(--ashe-wc-moss-soft);
	color: var(--ashe-wc-moss-deep);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.3;
}

.ep-blog-chip:hover {
	background: var(--ashe-wc-moss);
	color: #fff;
}

.ep-blog-meta {
	margin: 0;
	font-size: var(--ashe-wc-fs-small, 0.8rem);
	line-height: 1.45;
	color: var(--ashe-wc-muted);
}

.ep-blog-meta__sep {
	margin: 0 0.3rem;
	opacity: 0.45;
}

.ep-blog__pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem;
	margin: 2.25rem 0 0;
}

.ep-blog__pager .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.15rem;
	height: 2.15rem;
	padding: 0 0.5rem;
	border-radius: var(--ashe-wc-radius-pill);
	border: 1px solid var(--ashe-wc-line);
	background: var(--ashe-wc-white);
	color: var(--ashe-wc-ink);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
}

.ep-blog__pager .page-numbers.current,
.ep-blog__pager .page-numbers:hover {
	background: var(--ashe-wc-moss);
	border-color: var(--ashe-wc-moss);
	color: #fff;
}

.ep-blog__empty {
	margin: 2rem 0;
	color: var(--ashe-wc-muted);
}


/* ═══════════════════════════════════════════════════════════
   LEITOR — shell 1100px · coluna de leitura ~42rem · figuras compactas
   ═══════════════════════════════════════════════════════════ */

body.ashe-wc-blog-single .page-content {
	background: var(--ashe-wc-paper, #f7f4ef) !important;
}

body.ashe-wc-blog-single .ep-blog-single,
body.ashe-wc-blog-single article.ep-blog-single {
	display: block;
	width: 100%;
	/* Mesma largura da loja/site — sem coluna estreita a criar “vazio” lateral */
	max-width: min(1100px, 100%) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 0.35rem 0 0 !important;
	box-sizing: border-box;
}

@media (max-width: 979px) {
	body.ashe-wc-blog-single .main-content {
		padding-left: 1.35rem !important;
		padding-right: 1.35rem !important;
	}
}

/* ── Topo: título + lead | capa compacta ── */
body.ashe-wc-blog-single .ep-blog-single__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: start;
	margin: 0 0 2.25rem;
	padding: 0 0 1.75rem;
	border-bottom: 1px solid var(--ashe-wc-line, #e5e1db);
	width: 100%;
}

@media (min-width: 720px) {
	body.ashe-wc-blog-single .ep-blog-single.has-cover .ep-blog-single__top {
		grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
		gap: 1.5rem 2rem;
		align-items: center;
	}
}

body.ashe-wc-blog-single .ep-blog-single__header {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: left;
	max-width: none !important;
	min-width: 0;
	width: 100%;
}

body.ashe-wc-blog-single .ep-blog-single__crumb {
	margin: 0 0 0.55rem !important;
	font-family: var(--ashe-wc-font-sans);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ashe-wc-muted);
	line-height: 1.45;
}

body.ashe-wc-blog-single .ep-blog-single__crumb a {
	color: var(--ashe-wc-moss);
	text-decoration: none;
}
body.ashe-wc-blog-single .ep-blog-single__crumb a:hover {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

body.ashe-wc-blog-single .ep-blog-single__header .ep-blog-chips {
	margin: 0 0 0.65rem !important;
	gap: 0.3rem;
}

body.ashe-wc-blog-single .ep-blog-single__title,
body.ashe-wc-blog-single h1.page-title {
	display: block !important;
	margin: 0 0 0.55rem !important;
	padding: 0 !important;
	font-family: var(--ashe-wc-font-serif) !important;
	font-weight: 400 !important;
	font-size: clamp(1.65rem, 2.8vw, 2.2rem) !important;
	line-height: 1.18 !important;
	letter-spacing: -0.02em;
	color: var(--ashe-wc-ink) !important;
	text-align: left !important;
	border: 0 !important;
	max-width: none !important;
	text-wrap: pretty;
}

body.ashe-wc-blog-single .ep-blog-single__header .ep-blog-meta {
	margin: 0 0 0.85rem !important;
	font-size: 0.85rem;
	line-height: 1.45;
	color: var(--ashe-wc-muted);
}

/* Lead no bloco do título (ao lado da capa) */
body.ashe-wc-blog-single .ep-blog-single__lead {
	max-width: none !important;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

body.ashe-wc-blog-single .ep-blog-single__lead p {
	margin: 0 !important;
	font-family: var(--ashe-wc-font-sans) !important;
	font-size: 1.02rem !important;
	font-weight: 400 !important;
	line-height: 1.65 !important;
	color: var(--ashe-wc-ink) !important;
	max-width: none !important;
}

/* Capa compacta ao lado do título */
body.ashe-wc-blog-single .ep-blog-single__cover {
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--ashe-wc-line) !important;
	border-radius: 10px !important;
	overflow: hidden;
	background: var(--ashe-wc-moss-soft);
	line-height: 0;
	width: 100%;
	max-width: 240px;
	justify-self: end;
	box-shadow: 0 1px 3px rgba(23, 25, 26, 0.05);
}

@media (max-width: 719px) {
	body.ashe-wc-blog-single .ep-blog-single__cover {
		max-width: 200px;
		justify-self: start;
	}
}

body.ashe-wc-blog-single .ep-blog-single__cover img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
	margin: 0;
	border: 0;
}

body.ashe-wc-blog-single .ep-blog-single__cover-cap {
	display: block;
	padding: 0.4rem 0.65rem;
	font-size: 0.72rem;
	line-height: 1.35;
	color: var(--ashe-wc-muted);
	background: var(--ashe-wc-white);
	border-top: 1px solid var(--ashe-wc-line);
}

/* Sem capa: header ocupa tudo */
body.ashe-wc-blog-single .ep-blog-single:not(.has-cover) .ep-blog-single__top {
	grid-template-columns: 1fr;
	border-bottom: 1px solid var(--ashe-wc-line, #e5e1db);
}

/* ── Corpo: mesma largura do artigo (sem coluna “flutuante” ao centro) ── */
body.ashe-wc-blog-single.ashe-wc-no-blog-sidebars .post-content,
body.ashe-wc-blog-single .ep-blog-single__content.post-content,
body.ashe-wc-blog-single .ep-blog-single__content {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	font-family: var(--ashe-wc-font-sans) !important;
	font-size: 1.05rem !important;
	line-height: 1.75 !important;
	color: var(--ashe-wc-ink) !important;
	letter-spacing: 0.005em;
}

body.ashe-wc-blog-single .ep-blog-single__content > p,
body.ashe-wc-blog-single .ep-blog-single__content > h2,
body.ashe-wc-blog-single .ep-blog-single__content > h3,
body.ashe-wc-blog-single .ep-blog-single__content > .wp-block-heading,
body.ashe-wc-blog-single .ep-blog-single__content > ul,
body.ashe-wc-blog-single .ep-blog-single__content > ol,
body.ashe-wc-blog-single .ep-blog-single__content > .wp-block-list,
body.ashe-wc-blog-single .ep-blog-single__content > blockquote,
body.ashe-wc-blog-single .ep-blog-single__content > .wp-block-quote,
body.ashe-wc-blog-single .ep-blog-single__content > .wp-block-group,
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-sources,
body.ashe-wc-blog-single .ep-blog-single__content .ep-teach {
	max-width: none !important;
	width: 100%;
	box-sizing: border-box;
}

body.ashe-wc-blog-single .ep-blog-single__content > *:first-child {
	margin-top: 0 !important;
}

body.ashe-wc-blog-single .ep-blog-single__content h2,
body.ashe-wc-blog-single .ep-blog-single__content .wp-block-heading,
body.ashe-wc-blog-single .post-content > h2:first-child {
	display: block !important;
	margin: 2.4rem 0 0.85rem !important;
	padding: 0 !important;
	font-family: var(--ashe-wc-font-serif) !important;
	font-weight: 400 !important;
	font-size: 1.45rem !important;
	line-height: 1.28 !important;
	color: var(--ashe-wc-ink) !important;
	border: 0 !important;
	letter-spacing: -0.015em;
	max-width: none !important;
}

body.ashe-wc-blog-single .ep-blog-single__content > h2:first-child,
body.ashe-wc-blog-single .ep-blog-single__content > .wp-block-heading:first-child {
	margin-top: 0 !important;
}

body.ashe-wc-blog-single .ep-blog-single__content h3 {
	margin: 1.85rem 0 0.65rem !important;
	font-family: var(--ashe-wc-font-serif) !important;
	font-weight: 400 !important;
	font-size: 1.2rem !important;
	line-height: 1.35 !important;
	color: var(--ashe-wc-moss-deep) !important;
	border: 0 !important;
	max-width: none !important;
}

body.ashe-wc-blog-single .ep-blog-single__content p {
	margin: 0 0 1.15rem !important;
	max-width: none !important;
}

body.ashe-wc-blog-single .ep-blog-single__content strong {
	font-weight: 650;
	color: var(--ashe-wc-ink);
}

body.ashe-wc-blog-single .ep-blog-single__content ul,
body.ashe-wc-blog-single .ep-blog-single__content ol,
body.ashe-wc-blog-single .ep-blog-single__content .wp-block-list {
	margin: 0.15rem 0 1.35rem !important;
	padding: 0 0 0 1.25rem !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	max-width: none !important;
}

body.ashe-wc-blog-single .ep-blog-single__content li {
	margin: 0 0 0.4rem !important;
	padding: 0 !important;
	line-height: 1.65 !important;
}

body.ashe-wc-blog-single .ep-blog-single__content a {
	color: var(--ashe-wc-moss-deep);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-color: rgba(69, 90, 81, 0.32);
}
body.ashe-wc-blog-single .ep-blog-single__content a:hover {
	color: var(--ashe-wc-moss);
	text-decoration-color: var(--ashe-wc-moss);
}

body.ashe-wc-blog-single .ep-blog-single__content blockquote,
body.ashe-wc-blog-single .ep-blog-single__content .wp-block-quote {
	margin: 1.6rem 0 !important;
	padding: 0.15rem 0 0.15rem 1.15rem !important;
	border: 0 !important;
	border-left: 2.5px solid var(--ashe-wc-moss) !important;
	background: transparent !important;
	font-family: var(--ashe-wc-font-serif);
	font-size: 1.15rem;
	font-style: italic;
	line-height: 1.55;
	color: var(--ashe-wc-moss-deep);
	max-width: none !important;
}

/* ════════════════════════════════════════
   SPREADS — revista: texto | imagem
   ════════════════════════════════════════ */
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: start;
	width: 100% !important;
	max-width: none !important;
	margin: 2.1rem 0 2.4rem !important;
	padding: 0;
	box-sizing: border-box;
}

@media (min-width: 800px) {
	body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread {
		grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.85fr);
		gap: 1.75rem 2.25rem;
		margin: 2.5rem 0 2.75rem !important;
		align-items: start;
	}

	body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread.is-img-right .ep-blog-spread__text { order: 1; }
	body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread.is-img-right .ep-blog-spread__media { order: 2; }

	body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread.is-img-left {
		grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.2fr);
	}
	body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread.is-img-left .ep-blog-spread__media { order: 1; }
	body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread.is-img-left .ep-blog-spread__text { order: 2; }

	/* Imagem “cola” no topo da coluna enquanto o texto corre */
	body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__media {
		position: sticky;
		top: 5.5rem;
	}
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__text {
	min-width: 0;
	max-width: none !important;
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__text > *:first-child {
	margin-top: 0 !important;
}
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__text > *:last-child {
	margin-bottom: 0 !important;
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__text h2,
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__text h3 {
	margin-top: 0 !important;
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__media {
	min-width: 0;
	margin: 0;
}

/* Dentro do spread a figura preenche a coluna de mídia (proporção revista) */
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__media .wp-block-image,
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__media figure,
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__media figure.ep-blog-figure {
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--ashe-wc-line, #e5e1db) !important;
	border-radius: 12px !important;
	overflow: hidden;
	background: var(--ashe-wc-moss-soft);
	box-shadow: 0 1px 3px rgba(23, 25, 26, 0.06);
	line-height: 0;
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__media img {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: min(22rem, 52vh) !important; /* ~352px — encaixa, não banner */
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
	margin: 0 !important;
	border: 0;
}

/* Figuras solo (sem texto para emparelhar) — compactas, centradas */
body.ashe-wc-blog-single .ep-blog-single__content > .wp-block-image,
body.ashe-wc-blog-single .ep-blog-single__content > figure.wp-block-image,
body.ashe-wc-blog-single .ep-blog-single__content > .ep-blog-img-solo,
body.ashe-wc-blog-single .ep-blog-single__content > figure.ep-blog-img-solo {
	float: none !important;
	display: block;
	width: 100% !important;
	max-width: 28rem !important;
	margin: 1.5rem auto 1.75rem !important;
	padding: 0 !important;
	border: 1px solid var(--ashe-wc-line, #e5e1db) !important;
	border-radius: 10px !important;
	overflow: hidden;
	background: var(--ashe-wc-moss-soft);
	box-shadow: 0 1px 2px rgba(23, 25, 26, 0.05);
	line-height: 0;
	box-sizing: border-box;
}

body.ashe-wc-blog-single .ep-blog-single__content > .wp-block-image img,
body.ashe-wc-blog-single .ep-blog-single__content > figure.wp-block-image img,
body.ashe-wc-blog-single .ep-blog-single__content > .ep-blog-img-solo img,
body.ashe-wc-blog-single .ep-blog-single__content > figure.ep-blog-img-solo img {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: 240px !important;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	margin: 0 !important;
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-spread__media figcaption,
body.ashe-wc-blog-single .ep-blog-single__content figure.ep-blog-figure figcaption {
	line-height: 1.4;
}

/* Legado cuts/pairs */
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-cut,
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-pair {
	float: none !important;
	clear: both;
	display: block;
	width: 100% !important;
	max-width: none !important;
	margin: 2rem 0 !important;
}

body.ashe-wc-blog-single .ep-blog-single__content figcaption {
	margin: 0 !important;
	padding: 0.5rem 0.75rem !important;
	font-size: 0.75rem;
	line-height: 1.4;
	color: var(--ashe-wc-muted);
	background: var(--ashe-wc-white);
	border-top: 1px solid var(--ashe-wc-line);
	/* Legenda útil (crédito Commons) — não esmagar */
	max-height: none !important;
	white-space: normal;
	text-wrap: pretty;
}

/* Fontes — full width */
body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-sources,
body.ashe-wc-blog-single .ep-blog-single__content .wp-block-group.ep-blog-sources {
	max-width: none !important;
	width: 100%;
	margin: 2.5rem 0 0 !important;
	padding: 1.2rem 1.3rem !important;
	border: 1px solid var(--ashe-wc-line) !important;
	border-radius: 12px !important;
	background: var(--ashe-wc-white) !important;
	box-shadow: none;
	box-sizing: border-box;
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-sources h2 {
	margin: 0 0 0.7rem !important;
	font-family: var(--ashe-wc-font-sans) !important;
	font-size: 0.72rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ashe-wc-moss-deep) !important;
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-sources ul {
	margin: 0 !important;
	padding-left: 1.15rem !important;
}

body.ashe-wc-blog-single .ep-blog-single__content .ep-blog-sources li {
	margin-bottom: 0.35rem !important;
	font-size: 0.9rem !important;
	line-height: 1.5 !important;
}

body.ashe-wc-blog-single .ep-blog-single__content .wp-block-separator {
	max-width: none !important;
	margin: 2.1rem 0 !important;
	border: 0 !important;
	border-top: 1px solid var(--ashe-wc-line) !important;
}

/* Footer full width */
body.ashe-wc-blog-single .ep-blog-single__footer {
	margin: 2.75rem 0 0 !important;
	padding: 1.65rem 0 0 !important;
	border-top: 1px solid var(--ashe-wc-line) !important;
	max-width: none !important;
	width: 100%;
}

body.ashe-wc-blog-single .ep-blog-single__back {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1rem;
	border-radius: var(--ashe-wc-radius);
	border: 1px solid var(--ashe-wc-line);
	background: var(--ashe-wc-white);
	font-family: var(--ashe-wc-font-sans);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ashe-wc-moss-deep);
	text-decoration: none;
	transition: background var(--ashe-wc-dur) var(--ashe-wc-ease), border-color var(--ashe-wc-dur) var(--ashe-wc-ease);
}
body.ashe-wc-blog-single .ep-blog-single__back:hover {
	background: var(--ashe-wc-moss-soft);
	border-color: rgba(69, 90, 81, 0.28);
}

body.ashe-wc-blog-single .ep-blog-single__nav {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin: 1.2rem 0 0;
	width: 100%;
}
@media (min-width: 640px) {
	body.ashe-wc-blog-single .ep-blog-single__nav {
		grid-template-columns: 1fr 1fr;
	}
}

body.ashe-wc-blog-single .ep-blog-single__nav-link {
	display: block;
	padding: 1rem 1.1rem;
	border: 1px solid var(--ashe-wc-line);
	border-radius: 12px;
	background: var(--ashe-wc-white);
	text-decoration: none;
	color: var(--ashe-wc-ink);
	height: 100%;
	box-sizing: border-box;
	transition: border-color var(--ashe-wc-dur) var(--ashe-wc-ease), background var(--ashe-wc-dur) var(--ashe-wc-ease);
}
body.ashe-wc-blog-single .ep-blog-single__nav-link:hover {
	border-color: rgba(69, 90, 81, 0.28);
	background: var(--ashe-wc-moss-soft);
}
body.ashe-wc-blog-single .ep-blog-single__nav-label {
	display: block;
	margin-bottom: 0.25rem;
	font-size: var(--ashe-wc-fs-label);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ashe-wc-moss);
}
body.ashe-wc-blog-single .ep-blog-single__nav-title {
	font-family: var(--ashe-wc-font-serif);
	font-size: 1.02rem;
	line-height: 1.35;
}
body.ashe-wc-blog-single .ep-blog-single__nav-link.is-next { text-align: right; }
body.ashe-wc-blog-single .ep-blog-single__nav-spacer { display: none; }
@media (min-width: 640px) {
	body.ashe-wc-blog-single .ep-blog-single__nav-spacer { display: block; }
}

/* Dark */
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .page-content {
	background: var(--ashe-dm-bg, #121418) !important;
}

body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog__title,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__title,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-card__title a,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__content,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__content h2,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__content h3,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__content strong,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-blog-single__lead p {
	color: var(--ashe-dm-text, #eceae6) !important;
}

body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog__lead,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-card__excerpt,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-meta,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__crumb {
	color: var(--ashe-dm-text-3, #87837d) !important;
}

body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-card,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog__nav a,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog__pager .page-numbers,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__back,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__nav-link,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-sources {
	background: var(--ashe-dm-surface, #1c1f24) !important;
	border-color: var(--ashe-dm-border, #2e3238) !important;
	color: var(--ashe-dm-text-2, #b8b4ae);
}

body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-chip {
	background: rgba(203, 183, 156, 0.12);
	color: var(--ashe-dm-accent, #cbb79c);
}

body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-card__more,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog-single__nav-label,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog .ep-blog__kicker {
	color: var(--ashe-dm-accent, #cbb79c);
}

body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-blog-single__top,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-blog-single__footer {
	border-color: var(--ashe-dm-border, #2e3238) !important;
}

body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-blog-single__cover {
	border-color: var(--ashe-dm-border, #2e3238) !important;
}

body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-blog-single__content figcaption,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-blog-single__cover-cap {
	background: rgba(0, 0, 0, 0.25);
	border-top-color: var(--ashe-dm-border, #2e3238);
	color: var(--ashe-dm-text-3, #87837d);
}

/* ═══════════════════════════════════════════════════════════
   Blocos didáticos do blog (CSS — preenchem e ensinam)
   ═══════════════════════════════════════════════════════════ */

body.ashe-wc-blog-single .ep-teach {
	margin: 1.75rem 0 2rem !important;
	box-sizing: border-box;
	width: 100%;
	max-width: none !important;
}

body.ashe-wc-blog-single .ep-teach-tip,
body.ashe-wc-blog-single .ep-teach-note,
body.ashe-wc-blog-single .ep-teach-warn {
	padding: 1rem 1.15rem;
	border-radius: var(--ashe-wc-radius-lg, 12px);
	border: 1px solid var(--ashe-wc-line, #e5e1db);
	background: var(--ashe-wc-white, #fff);
}

body.ashe-wc-blog-single .ep-teach-tip {
	border-left: 3px solid var(--ashe-wc-moss, #455a51);
	background: var(--ashe-wc-moss-soft, #eef2ef);
}

body.ashe-wc-blog-single .ep-teach-warn {
	border-left: 3px solid #b54a4a;
	background: #fbf6f5;
}

body.ashe-wc-blog-single .ep-teach-note {
	border-left: 3px solid var(--ashe-wc-line, #e5e1db);
	background: var(--ashe-wc-paper, #f7f4ef);
}

body.ashe-wc-blog-single .ep-teach-tip__label,
body.ashe-wc-blog-single .ep-teach-warn__label,
body.ashe-wc-blog-single .ep-teach-note__label {
	display: block;
	margin: 0 0 0.35rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ashe-wc-moss-deep, #2c3a34);
}

body.ashe-wc-blog-single .ep-teach-warn__label { color: #8a3a3a; }

body.ashe-wc-blog-single .ep-teach-tip p,
body.ashe-wc-blog-single .ep-teach-warn p,
body.ashe-wc-blog-single .ep-teach-note p {
	margin: 0 !important;
	font-size: 0.98rem !important;
	line-height: 1.6 !important;
}

/* Comparação em 2 colunas */
body.ashe-wc-blog-single .ep-teach-compare {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}
@media (min-width: 700px) {
	body.ashe-wc-blog-single .ep-teach-compare {
		grid-template-columns: 1fr 1fr;
		gap: 1.15rem;
	}
}
body.ashe-wc-blog-single .ep-teach-compare__col {
	padding: 1.1rem 1.15rem;
	border: 1px solid var(--ashe-wc-line, #e5e1db);
	border-radius: var(--ashe-wc-radius-lg, 12px);
	background: var(--ashe-wc-white, #fff);
	min-height: 100%;
}
body.ashe-wc-blog-single .ep-teach-compare__col h3 {
	margin: 0 0 0.55rem !important;
	font-family: var(--ashe-wc-font-serif) !important;
	font-size: 1.15rem !important;
	font-weight: 400 !important;
	color: var(--ashe-wc-ink) !important;
}
body.ashe-wc-blog-single .ep-teach-compare__col p,
body.ashe-wc-blog-single .ep-teach-compare__col ul {
	margin: 0 !important;
	font-size: 0.95rem !important;
	line-height: 1.55 !important;
	max-width: none !important;
}
body.ashe-wc-blog-single .ep-teach-compare__col ul {
	padding-left: 1.1rem !important;
}
body.ashe-wc-blog-single .ep-teach-compare__col li {
	margin-bottom: 0.3rem !important;
}

/* Escala visual (gramatura, etc.) */
body.ashe-wc-blog-single .ep-teach-scale {
	padding: 1.15rem 1.2rem 1.25rem;
	border: 1px solid var(--ashe-wc-line, #e5e1db);
	border-radius: var(--ashe-wc-radius-lg, 12px);
	background: var(--ashe-wc-white, #fff);
}
body.ashe-wc-blog-single .ep-teach-scale__title {
	margin: 0 0 0.85rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ashe-wc-moss, #455a51);
}
body.ashe-wc-blog-single .ep-teach-scale__row {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
	gap: 0.65rem 0.85rem;
	align-items: center;
	margin-bottom: 0.55rem;
}
body.ashe-wc-blog-single .ep-teach-scale__row:last-child { margin-bottom: 0; }
body.ashe-wc-blog-single .ep-teach-scale__label {
	font-size: 0.82rem;
	font-weight: 650;
	color: var(--ashe-wc-ink);
	font-variant-numeric: tabular-nums;
}
body.ashe-wc-blog-single .ep-teach-scale__bar-wrap {
	height: 0.65rem;
	background: var(--ashe-wc-moss-soft, #eef2ef);
	border-radius: 999px;
	overflow: hidden;
}
body.ashe-wc-blog-single .ep-teach-scale__bar {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--ashe-wc-moss, #455a51);
}
body.ashe-wc-blog-single .ep-teach-scale__desc {
	grid-column: 2;
	margin: -0.25rem 0 0.35rem;
	font-size: 0.8rem;
	color: var(--ashe-wc-muted);
	line-height: 1.4;
}

/* Diagrama sangria / margem (CSS) */
body.ashe-wc-blog-single .ep-teach-bleed {
	padding: 1.25rem;
	border: 1px solid var(--ashe-wc-line, #e5e1db);
	border-radius: var(--ashe-wc-radius-lg, 12px);
	background: var(--ashe-wc-paper, #f7f4ef);
}
body.ashe-wc-blog-single .ep-teach-bleed__stage {
	position: relative;
	max-width: 280px;
	margin: 0 auto 0.85rem;
	aspect-ratio: 1 / 1.25;
	background:
		repeating-linear-gradient(
			-45deg,
			transparent,
			transparent 4px,
			rgba(69, 90, 81, 0.08) 4px,
			rgba(69, 90, 81, 0.08) 8px
		);
	border: 2px dashed rgba(69, 90, 81, 0.35);
	border-radius: 4px;
	box-sizing: border-box;
}
body.ashe-wc-blog-single .ep-teach-bleed__trim {
	position: absolute;
	inset: 10%;
	background: var(--ashe-wc-white, #fff);
	border: 1.5px solid var(--ashe-wc-moss-deep, #2c3a34);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.ashe-wc-blog-single .ep-teach-bleed__safe {
	width: 72%;
	height: 72%;
	border: 1.5px dashed rgba(69, 90, 81, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	font-weight: 650;
	color: var(--ashe-wc-moss-deep);
	text-align: center;
	padding: 0.35rem;
	box-sizing: border-box;
}
body.ashe-wc-blog-single .ep-teach-bleed__legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem 1.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.78rem;
	color: var(--ashe-wc-muted);
}
body.ashe-wc-blog-single .ep-teach-bleed__legend li {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0 !important;
}
body.ashe-wc-blog-single .ep-teach-bleed__dot {
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 2px;
	flex-shrink: 0;
}
body.ashe-wc-blog-single .ep-teach-bleed__dot.is-bleed { background: rgba(69, 90, 81, 0.25); border: 1px dashed rgba(69, 90, 81, 0.5); }
body.ashe-wc-blog-single .ep-teach-bleed__dot.is-trim { background: #fff; border: 1.5px solid var(--ashe-wc-moss-deep); }
body.ashe-wc-blog-single .ep-teach-bleed__dot.is-safe { background: transparent; border: 1.5px dashed rgba(69, 90, 81, 0.45); }

/* Swatches RGB / CMYK */
body.ashe-wc-blog-single .ep-teach-swatches {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 700px) {
	body.ashe-wc-blog-single .ep-teach-swatches {
		grid-template-columns: 1fr 1fr;
	}
}
body.ashe-wc-blog-single .ep-teach-swatches__group {
	padding: 1rem 1.1rem;
	border: 1px solid var(--ashe-wc-line);
	border-radius: var(--ashe-wc-radius-lg, 12px);
	background: var(--ashe-wc-white);
}
body.ashe-wc-blog-single .ep-teach-swatches__group h3 {
	margin: 0 0 0.75rem !important;
	font-size: 0.95rem !important;
	font-family: var(--ashe-wc-font-sans) !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ashe-wc-moss-deep) !important;
}
body.ashe-wc-blog-single .ep-teach-swatches__row {
	display: flex;
	gap: 0.45rem;
	margin-bottom: 0.65rem;
}
body.ashe-wc-blog-single .ep-teach-swatches__chip {
	flex: 1;
	aspect-ratio: 1;
	border-radius: 8px;
	border: 1px solid rgba(0,0,0,0.08);
	min-height: 2.5rem;
}
body.ashe-wc-blog-single .ep-teach-swatches__caption {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--ashe-wc-muted);
}

/* Passos didáticos */
body.ashe-wc-blog-single .ep-teach-steps {
	display: grid;
	gap: 0.75rem;
	margin: 1.75rem 0 2rem;
	padding: 0;
	list-style: none;
	counter-reset: ep-step;
}
body.ashe-wc-blog-single .ep-teach-steps > li {
	counter-increment: ep-step;
	display: grid;
	grid-template-columns: 2rem 1fr;
	gap: 0.75rem 0.9rem;
	align-items: start;
	margin: 0 !important;
	padding: 0.95rem 1.05rem;
	border: 1px solid var(--ashe-wc-line);
	border-radius: var(--ashe-wc-radius-lg, 12px);
	background: var(--ashe-wc-white);
}
body.ashe-wc-blog-single .ep-teach-steps > li::before {
	content: counter(ep-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: var(--ashe-wc-radius, 8px);
	background: var(--ashe-wc-moss-deep);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
}
body.ashe-wc-blog-single .ep-teach-steps strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.95rem;
	color: var(--ashe-wc-ink);
}
body.ashe-wc-blog-single .ep-teach-steps span {
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--ashe-wc-muted);
}

/* Tabela simples */
body.ashe-wc-blog-single .ep-teach-table-wrap {
	overflow-x: auto;
	margin: 1.75rem 0 2rem;
	border: 1px solid var(--ashe-wc-line);
	border-radius: var(--ashe-wc-radius-lg, 12px);
	background: var(--ashe-wc-white);
}
body.ashe-wc-blog-single .ep-teach-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}
body.ashe-wc-blog-single .ep-teach-table th,
body.ashe-wc-blog-single .ep-teach-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--ashe-wc-line);
	vertical-align: top;
	line-height: 1.45;
}
body.ashe-wc-blog-single .ep-teach-table th {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ashe-wc-moss-deep);
	background: var(--ashe-wc-moss-soft);
}
body.ashe-wc-blog-single .ep-teach-table tr:last-child td { border-bottom: 0; }

/* Dark */
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-tip,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-note,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-warn,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-compare__col,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-scale,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-swatches__group,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-steps > li,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-table-wrap,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-bleed {
	background: var(--ashe-dm-surface, #1c1f24);
	border-color: var(--ashe-dm-border, #2e3238);
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-tip {
	background: rgba(203, 183, 156, 0.08);
	border-left-color: var(--ashe-dm-accent, #cbb79c);
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-warn {
	background: rgba(181, 74, 74, 0.12);
	border-left-color: #c07070;
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-tip__label,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-scale__title,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-swatches__group h3,
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-table th {
	color: var(--ashe-dm-accent, #cbb79c);
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-table th {
	background: rgba(203, 183, 156, 0.1);
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-scale__bar-wrap {
	background: rgba(255,255,255,0.06);
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-scale__bar {
	background: var(--ashe-dm-accent, #cbb79c);
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-bleed__trim {
	background: var(--ashe-dm-elevated, #242830);
	border-color: var(--ashe-dm-accent, #cbb79c);
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-bleed__safe {
	color: var(--ashe-dm-accent, #cbb79c);
	border-color: rgba(203, 183, 156, 0.4);
}
body.ashe-woocommerce-child.ashe-dark-mode.ashe-wc-blog-single .ep-teach-steps > li::before {
	background: var(--ashe-dm-accent, #cbb79c);
	color: #141210;
}
