/* Jazi Site Suite — Listing Card */

.jss-lc-wrap { display: block; }

/* Layouts */
.jss-lc--grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jss-lc--list { display: grid; grid-template-columns: 1fr; }
.jss-lc--masonry { column-count: 3; column-gap: 24px; }
.jss-lc--masonry .jss-lc-card { break-inside: avoid; -webkit-column-break-inside: avoid; margin-bottom: 24px; display: block; }

/* Card */
.jss-lc-card {
	position: relative;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.jss-lc--list .jss-lc-card { flex-direction: row; align-items: stretch; }

/* Whole-card link overlay */
.jss-lc-cardlink { position: absolute; inset: 0; z-index: 3; text-indent: -9999px; overflow: hidden; }

/* Media */
.jss-lc-media { position: relative; overflow: hidden; }
.jss-lc-media--img { flex: 0 0 auto; }
.jss-lc--grid .jss-lc-media--img, .jss-lc--masonry .jss-lc-media--img { width: 100%; }
.jss-lc-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jss-lc--list .jss-lc-media { flex: 0 0 160px; width: 160px; }
.jss-lc-media--icon { display: flex; }
/* Icon sits just above the body; the negative margin pulls the title close to it. */
.jss-lc--grid .jss-lc-media--icon, .jss-lc--masonry .jss-lc-media--icon { padding: 24px 24px 0; margin-bottom: -14px; }
.jss-lc--list .jss-lc-media--icon { align-items: center; padding: 24px; }

.jss-lc-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	color: #6129d4;
}
.jss-lc-icon svg { width: 34px; height: 34px; }
.jss-lc-icon img { width: 1em; height: 1em; } /* uploaded SVG rendered as <img> */

/* Body */
.jss-lc-body { position: relative; z-index: 2; padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1 1 auto; }
.jss-lc-title { margin: 0; font-size: 19px; line-height: 1.3; transition: color .15s ease; }
.jss-lc-subtitle { font-size: 13px; font-weight: 600; color: #6129d4; }
.jss-lc-text { margin: 0; line-height: 1.6; color: #55505f; }

/* Badge */
.jss-lc-badge {
	display: inline-block;
	align-self: flex-start;
	background: #6129d4;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 6px;
	line-height: 1.4;
}
.jss-lc-media--img .jss-lc-badge { position: absolute; z-index: 2; top: 12px; left: 12px; }

/* Button */
.jss-lc-btn {
	position: relative;
	z-index: 4;
	display: inline-block;
	align-self: flex-start;
	margin-top: 4px;
	padding: 10px 18px;
	border-radius: 8px;
	background: transparent;
	color: #6129d4;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease;
}

.jss-lc-empty { padding: 20px; border: 1px dashed #c9ccd1; border-radius: 10px; color: #646970; }

/* Pagination */
.jss-lc-pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 28px; }
.jss-lc-page, .jss-lc-more {
	cursor: pointer;
	border: 1px solid #e2e4e7;
	background: #fff;
	color: inherit;
	border-radius: 8px;
	padding: 9px 16px;
	font-weight: 600;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.jss-lc-page.active, .jss-lc-page:hover, .jss-lc-more:hover { background: #6129d4; color: #fff; border-color: #6129d4; }
.jss-lc-more[disabled] { opacity: .6; cursor: default; }

@media (prefers-reduced-motion: reduce) {
	.jss-lc-card, .jss-lc-title, .jss-lc-btn, .jss-lc-page, .jss-lc-more { transition: none; }
}
