/* SSATV StreamPro event listing styles.
   Horizontal card with circular icon on the left, title + date stacked
   on the right. Mirrors the legacy n-profile-card layout from naoca.css
   but self-contained, no external CDN. */

.ssatv-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin: 0 0 24px;
}

@media (min-width: 768px) {
	.ssatv-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

.ssatv-col {
	min-width: 0;
}

.ssatv-card {
	display: block;
	height: 100%;
	padding: 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ssatv-card:hover,
.ssatv-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	outline: none;
}

.ssatv-card-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	height: 100%;
}

@media (min-width: 992px) {
	.ssatv-card-inner {
		flex-direction: row;
		align-items: center;
		gap: 16px;
	}
}

.ssatv-card-picture {
	flex: 0 0 auto;
	width: 125px;
	height: 125px;
	border-radius: 50%;
	border: 2px solid #d1d5db;
	overflow: hidden;
	background: #fff;
	box-sizing: border-box;
}

.ssatv-card-picture img,
.ssatv-card-picture-placeholder {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.ssatv-card-meta {
	flex: 1 1 auto;
	min-width: 0;
	text-align: center;
}

@media (min-width: 992px) {
	.ssatv-card-meta {
		text-align: left;
	}
}

.ssatv-card-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.3;
	color: #111827;
	margin-bottom: 4px;
}

.ssatv-card-sport {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #4b863c;
	margin-bottom: 4px;
}

.ssatv-card-date {
	font-size: 13px;
	color: #6b7280;
}

.ssatv-empty {
	text-align: center;
	color: #6b7280;
	padding: 24px 0;
}

.ssatv-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
	border-radius: 6px;
	padding: 10px 14px;
	margin: 12px 0;
	font-size: 14px;
}

.ssatv-badge {
	display: inline-block;
	vertical-align: middle;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 3px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-left: 6px;
	line-height: 1.4;
}

.ssatv-badge-live {
	background: #e63946;
	color: #fff;
}

.ssatv-badge-upcoming {
	background: #2563eb;
	color: #fff;
}

/* Pagination for past-events sections. */
.ssatv-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 20px 0 24px;
	font-size: 14px;
}

.ssatv-pagination-link {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	background: #fff;
	color: #111827;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.ssatv-pagination-link:hover,
.ssatv-pagination-link:focus-visible {
	background: #f9fafb;
	border-color: #d1d5db;
	outline: none;
}

.ssatv-pagination-disabled 