/**
 * Demo 19 — Headline: Marquee Strip (افقی • تیتر نوار)
 * A compact horizontal strip — like a dashboard / ticker row.
 * Pill category · single-line title (ellipsis) · price at the far edge.
 * Alternating row tints, hover lifts with shadow + accent underline.
 */
.jespw-demo-19-headline-strip .jespw-card {
	background: #f8fafc;
	border: none;
	border-radius: 14px;
	padding: 14px 18px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
/* Alternating row tint for a "list" rhythm. */
.jespw-demo-19-headline-strip .jespw-card:nth-child(even) {
	background: #eef2f6;
}
.jespw-demo-19-headline-strip .jespw-card:hover {
	background: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.25);
}
/* Text-only strip — hide the image. */
.jespw-demo-19-headline-strip .jespw-image,
.jespw-demo-19-headline-strip .jespw-image-wrap {
	display: none !important;
}
.jespw-demo-19-headline-strip .jespw-text-accent {
	display: none;
}
.jespw-demo-19-headline-strip .jespw-index {
	display: none;
}
/* Content = horizontal flex: pill · title · spacer · meta. */
.jespw-demo-19-headline-strip .jespw-content {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	width: 100%;
	flex-wrap: nowrap;
}
/* Category as a soft pill. */
.jespw-demo-19-headline-strip .jespw-category {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: #0f766e;
	background: #ccfbf1;
	padding: 4px 11px;
	border-radius: 999px;
	white-space: nowrap;
	flex-shrink: 0;
}
/* Title: single line with ellipsis, grows to fill. */
.jespw-demo-19-headline-strip .jespw-title {
	flex: 1;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #0f172a;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}
.jespw-demo-19-headline-strip .jespw-title a {
	color: inherit;
	text-decoration: none;
	position: relative;
}
.jespw-demo-19-headline-strip .jespw-title a::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: -2px;
	height: 2px;
	background: #0f766e;
	transform: scaleX(0);
	transform-origin: inline-start;
	transition: transform .3s ease;
}
.jespw-demo-19-headline-strip .jespw-card:hover .jespw-title a::after {
	transform: scaleX(1);
}
/* Excerpt hidden — strips are single-line headlines. */
.jespw-demo-19-headline-strip .jespw-excerpt {
	display: none;
}
/* Rating compact. */
.jespw-demo-19-headline-strip .jespw-rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: #64748b;
	white-space: nowrap;
	flex-shrink: 0;
}
/* Price cluster at the far edge. */
.jespw-demo-19-headline-strip .jespw-price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1px;
	white-space: nowrap;
	flex-shrink: 0;
}
.jespw-demo-19-headline-strip .jespw-regular-price {
	font-size: 16px;
	font-weight: 800;
	color: #0f172a;
}
.jespw-demo-19-headline-strip .jespw-regular-price del {
	color: #94a3b8;
	font-size: 11px;
	font-weight: 400;
	text-decoration: line-through;
}
.jespw-demo-19-headline-strip .jespw-sale-price ins {
	font-size: 16px;
	font-weight: 800;
	color: #0f766e;
	text-decoration: none;
}
.jespw-demo-19-headline-strip .jespw-discount-percent {
	font-size: 10px;
	font-weight: 700;
	color: #0f766e;
}
/* Button: ghost pill. */
.jespw-demo-19-headline-strip .jespw-button {
	padding: 6px 13px;
	font-size: 12px;
	font-weight: 700;
	color: #0f766e;
	background: transparent;
	border: 1.5px solid #0f766e;
	border-radius: 999px;
	transition: all .25s ease;
	white-space: nowrap;
	flex-shrink: 0;
}
.jespw-demo-19-headline-strip .jespw-button:hover {
	background: #0f766e;
	color: #fff;
}
/* Badges as tiny chips. */
.jespw-demo-19-headline-strip .jespw-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	background: #0f766e;
	color: #fff;
}
.jespw-demo-19-headline-strip .jespw-badges {
	position: static;
	display: inline-flex;
	gap: 6px;
	flex-shrink: 0;
}
/* Grid: stacked strips. */
.jespw-demo-19-headline-strip .jespw-grid {
	grid-template-columns: 1fr;
	gap: 10px;
}
/* Slider: each slide is one strip, full height. */
.jespw-demo-19-headline-strip.jespw-layout-slider .jespw-card {
	height: 100%;
}
/* Two-column variant for grid mode at wider screens. */
@media (min-width: 900px) {
	.jespw-demo-19-headline-strip:not(.jespw-layout-slider) .jespw-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* Responsive: collapse to stacked on mobile. */
@media (max-width: 640px) {
	.jespw-demo-19-headline-strip .jespw-content {
		flex-wrap: wrap;
	}
	.jespw-demo-19-headline-strip .jespw-title {
		white-space: normal;
		flex-basis: 100%;
		order: -1;
	}
	.jespw-demo-19-headline-strip .jespw-card:hover {
		transform: none;
	}
}
