/**
 * Demo 18 — Headline: Editorial Split (افقی • تیتر سرمقاله)
 * A two-column horizontal headline, magazine-cover style.
 * Left rail: big ordinal index + serif italic kicker.
 * Right rail: large headline title + excerpt + price.
 * Generous vertical padding, double rule separators. No image.
 */
.jespw-demo-18-headline-editorial .jespw-card {
	background: #fbfaf7;
	border: none;
	border-block: 1px solid #1c1917;
	border-radius: 0;
	padding: 26px 10px;
	display: grid;
	grid-template-columns: 96px 1fr;
	align-items: start;
	gap: 28px;
	transition: background .35s ease;
}
.jespw-demo-18-headline-editorial .jespw-card:hover {
	background: #f5f1e8;
}
/* Text-only headline — kill the image area. */
.jespw-demo-18-headline-editorial .jespw-image,
.jespw-demo-18-headline-editorial .jespw-image-wrap {
	display: none !important;
}
.jespw-demo-18-headline-editorial .jespw-text-accent {
	display: none;
}
/* Left rail: the big ordinal index + kicker, stacked. */
.jespw-demo-18-headline-editorial .jespw-index {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 68px;
	font-weight: 900;
	line-height: 0.9;
	color: #1c1917;
	font-style: italic;
	transition: transform .4s ease, color .4s ease;
}
.jespw-demo-18-headline-editorial .jespw-card:hover .jespw-index {
	transform: scale(1.08) translateY(-2px);
	color: #be123c;
}
/* Right rail: content. */
.jespw-demo-18-headline-editorial .jespw-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.jespw-demo-18-headline-editorial .jespw-category {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 13px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.5px;
	color: #be123c;
	text-transform: none;
}
.jespw-demo-18-headline-editorial .jespw-title {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.18;
	color: #1c1917;
	margin: 0;
	transition: color .3s ease;
}
.jespw-demo-18-headline-editorial .jespw-card:hover .jespw-title {
	color: #be123c;
}
.jespw-demo-18-headline-editorial .jespw-title a {
	color: inherit;
	text-decoration: none;
}
.jespw-demo-18-headline-editorial .jespw-excerpt {
	font-size: 13px;
	line-height: 1.7;
	color: #57534e;
	margin: 0;
	max-width: 60ch;
}
/* Meta row: rating + price aligned to the end, inline. */
.jespw-demo-18-headline-editorial .jespw-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #78716c;
	margin-block-start: 4px;
}
.jespw-demo-18-headline-editorial .jespw-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-block-start: 6px;
}
.jespw-demo-18-headline-editorial .jespw-regular-price {
	font-size: 19px;
	font-weight: 800;
	color: #1c1917;
}
.jespw-demo-18-headline-editorial .jespw-regular-price del {
	color: #a8a29e;
	font-size: 13px;
	font-weight: 400;
	text-decoration: line-through;
}
.jespw-demo-18-headline-editorial .jespw-sale-price ins {
	font-size: 19px;
	font-weight: 800;
	color: #be123c;
	text-decoration: none;
}
.jespw-demo-18-headline-editorial .jespw-discount-percent {
	font-size: 11px;
	font-weight: 700;
	color: #be123c;
	border: 1px solid #be123c;
	padding: 1px 7px;
	border-radius: 3px;
}
/* Button: minimal underlined link. */
.jespw-demo-18-headline-editorial .jespw-button {
	padding: 0;
	font-size: 13px;
	font-weight: 700;
	color: #1c1917;
	background: transparent;
	border: none;
	border-bottom: 2px solid #be123c;
	border-radius: 0;
	padding-block-end: 2px;
	transition: color .25s ease, border-color .25s ease;
}
.jespw-demo-18-headline-editorial .jespw-button:hover {
	color: #be123c;
	border-bottom-color: #1c1917;
}
/* Badges as small serif caps. */
.jespw-demo-18-headline-editorial .jespw-badge {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 10px;
	font-weight: 700;
	font-style: italic;
	padding: 2px 8px;
	border-radius: 2px;
	background: #1c1917;
	color: #fbfaf7;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.jespw-demo-18-headline-editorial .jespw-badges {
	position: static;
	display: inline-flex;
	gap: 6px;
	margin-block-end: 4px;
}
/* Grid: stacked editorial rows. */
.jespw-demo-18-headline-editorial .jespw-grid {
	grid-template-columns: 1fr;
	gap: 0;
}
/* Slider: each slide is one editorial headline. */
.jespw-demo-18-headline-editorial.jespw-layout-slider .jespw-card {
	height: 100%;
}
/* Responsive: index shrinks, grid collapses. */
@media (max-width: 640px) {
	.jespw-demo-18-headline-editorial .jespw-card {
		grid-template-columns: 56px 1fr;
		gap: 16px;
		padding: 20px 6px;
	}
	.jespw-demo-18-headline-editorial .jespw-index {
		font-size: 44px;
	}
	.jespw-demo-18-headline-editorial .jespw-title {
		font-size: 21px;
	}
}
