/**
 * Demo 17 — Headline: News Ticker (افقی • تیتر خبری)
 * A horizontal headline row styled like a news-site headline list.
 * Kicker (category) · big title · price on the far edge. No image.
 * Warm amber accent, thin separators, hover lifts + arrow slides in.
 */
.jespw-demo-17-headline-news .jespw-card {
	background: #ffffff;
	border: none;
	border-block-end: 1px solid #ece9e2;
	border-radius: 0;
	padding: 18px 6px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 18px;
	transition: background .3s ease, padding-inline .3s ease, transform .3s ease;
}
.jespw-demo-17-headline-news .jespw-card:hover {
	background: #fffaf0;
	padding-inline: 20px;
	transform: translateX(-4px);
}
/* Headline = text only. Hide image area entirely. */
.jespw-demo-17-headline-news .jespw-image,
.jespw-demo-17-headline-news .jespw-image-wrap {
	display: none !important;
}
.jespw-demo-17-headline-news .jespw-text-accent {
	display: none;
}
.jespw-demo-17-headline-news .jespw-index {
	display: none;
}
/* The content row: kicker — title — meta, distributed horizontally. */
.jespw-demo-17-headline-news .jespw-content {
	flex: 1;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	width: 100%;
}
/* Category = the "kicker" — a small uppercase pill with a leading dot. */
.jespw-demo-17-headline-news .jespw-category {
	order: 1;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #b45309;
	background: #fef3c7;
	padding: 5px 12px;
	border-radius: 999px;
	white-space: nowrap;
}
/* Title = the headline. Bold, large, single-line clamp. */
.jespw-demo-17-headline-news .jespw-title {
	order: 2;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.3;
	color: #1c1917;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.jespw-demo-17-headline-news .jespw-title a {
	color: inherit;
	text-decoration: none;
	background-image: linear-gradient(#b45309, #b45309);
	background-size: 0% 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size .35s ease, color .25s ease;
}
.jespw-demo-17-headline-news .jespw-card:hover .jespw-title a {
	background-size: 100% 2px;
	color: #b45309;
}
/* Excerpt kept tiny, sits under title — only when present. */
.jespw-demo-17-headline-news .jespw-excerpt {
	order: 2;
	grid-column: 2 / 3;
	font-size: 12px;
	line-height: 1.55;
	color: #78716c;
	margin: 0;
}
/* Meta cluster on the far edge: rating + price. */
.jespw-demo-17-headline-news .jespw-rating {
	order: 3;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #a8a29e;
	white-space: nowrap;
}
.jespw-demo-17-headline-news .jespw-price {
	order: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	white-space: nowrap;
}
.jespw-demo-17-headline-news .jespw-regular-price {
	font-size: 17px;
	font-weight: 800;
	color: #1c1917;
}
.jespw-demo-17-headline-news .jespw-regular-price del {
	color: #a8a29e;
	font-size: 12px;
	font-weight: 400;
	text-decoration: line-through;
}
.jespw-demo-17-headline-news .jespw-sale-price ins {
	font-size: 17px;
	font-weight: 800;
	color: #b45309;
	text-decoration: none;
}
.jespw-demo-17-headline-news .jespw-discount-percent {
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: #b45309;
	padding: 2px 7px;
	border-radius: 999px;
}
/* Button = a compact text link with an arrow that nudges on hover. */
.jespw-demo-17-headline-news .jespw-buttons {
	order: 3;
	display: flex;
	gap: 8px;
}
.jespw-demo-17-headline-news .jespw-button {
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 700;
	color: #1c1917;
	background: transparent;
	border: 1.5px solid #1c1917;
	border-radius: 999px;
	transition: all .25s ease;
	white-space: nowrap;
}
.jespw-demo-17-headline-news .jespw-button:hover {
	background: #1c1917;
	color: #fff;
}
/* Badges render as tiny inline chips in headline mode. */
.jespw-demo-17-headline-news .jespw-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 999px;
}
.jespw-demo-17-headline-news .jespw-badge-sale {
	background: #b45309;
	color: #fff;
}
.jespw-demo-17-headline-news .jespw-badges {
	position: static;
	display: inline-flex;
	gap: 6px;
	margin-block-end: 4px;
}
/* Grid: a tight stack of headline rows. */
.jespw-demo-17-headline-news .jespw-grid {
	grid-template-columns: 1fr;
	gap: 0;
}
/* Slider: each slide is one self-contained headline row. */
.jespw-demo-17-headline-news.jespw-layout-slider .jespw-card {
	height: 100%;
	min-height: 96px;
}
/* Responsive: collapse the 3-column content grid on small screens. */
@media (max-width: 640px) {
	.jespw-demo-17-headline-news .jespw-content {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.jespw-demo-17-headline-news .jespw-title {
		white-space: normal;
	}
	.jespw-demo-17-headline-news .jespw-category,
	.jespw-demo-17-headline-news .jespw-price,
	.jespw-demo-17-headline-news .jespw-rating {
		order: 0;
	}
	.jespw-demo-17-headline-news .jespw-card:hover {
		transform: none;
	}
}
