/**
 * Demo 16 — Text: Magazine List (no image)
 * Numbered editorial list. Big index number + title + meta on a row.
 * Ideal as a horizontal slider of "top picks" or a vertical reading list.
 */
.jespw-demo-16-text-magazine .jespw-card {
	background: #fffdf7;
	border: none;
	border-block-end: 1px solid #e7e5dc;
	border-radius: 0;
	padding: 22px 8px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	transition: background .3s ease, padding-inline .3s ease;
}
.jespw-demo-16-text-magazine .jespw-card:hover {
	background: #fff8e6;
	padding-inline: 18px;
}
.jespw-demo-16-text-magazine .jespw-image,
.jespw-demo-16-text-magazine .jespw-image-wrap {
	display: none !important;
}
/* The big ordinal index — injected via .jespw-index or ::before on the badge */
.jespw-demo-16-text-magazine .jespw-index {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
	color: #d97706;
	font-style: italic;
	min-width: 56px;
}
.jespw-demo-16-text-magazine .jespw-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.jespw-demo-16-text-magazine .jespw-text-accent {
	display: none;
}
.jespw-demo-16-text-magazine .jespw-category {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #d97706;
}
.jespw-demo-16-text-magazine .jespw-title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	color: #1c1917;
	margin: 0;
}
.jespw-demo-16-text-magazine .jespw-excerpt {
	font-size: 12px;
	line-height: 1.6;
	color: #78716c;
}
.jespw-demo-16-text-magazine .jespw-rating {
	margin-block-start: 2px;
}
.jespw-demo-16-text-magazine .jespw-card-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}
.jespw-demo-16-text-magazine .jespw-price {
	font-size: 17px;
	font-weight: 800;
	color: #1c1917;
	white-space: nowrap;
}
.jespw-demo-16-text-magazine .jespw-price del {
	display: block;
	color: #a8a29e;
	font-size: 12px;
	font-weight: 400;
	text-align: end;
}
.jespw-demo-16-text-magazine .jespw-button {
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: #1c1917;
	border: none;
	border-radius: 999px;
	transition: all .25s ease;
	white-space: nowrap;
}
.jespw-demo-16-text-magazine .jespw-button:hover {
	background: #d97706;
}
.jespw-demo-16-text-magazine .jespw-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
	background: #fef3c7;
	color: #92400e;
}
/* Slider: each slide is a self-contained list item card */
.jespw-demo-16-text-magazine.jespw-layout-slider .jespw-card {
	grid-template-columns: auto 1fr;
	height: 100%;
}
.jespw-demo-16-text-magazine.jespw-layout-slider .jespw-card-meta {
	grid-column: 1 / -1;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-block-start: 1px dashed #e7e5dc;
	padding-block-start: 14px;
}
