.svv-filter {
	margin: 0 0 30px;
	width: min(90%, 760px);
}

.svv-search {
	width: 100%;
	padding: 14px 16px;
	font-size: 18px;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
}

.svv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

.svv-card {
	display: flex;
	min-height: 300px;
	max-height: 300px;
	overflow: hidden;
	background: #000;
	color: #fff;
	text-decoration: none;
}

.svv-card:hover {
	color: #fff;
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.svv-photo {
	width: 40%;
	min-width: 220px;
	background-color: #fff;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.svv-info {
	width: 60%;
	padding: 24px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.svv-info h3 {
	color: #e30613;
	font-size: 2.5rem;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.svv-info p {
	margin: 0 0 14px;
	line-height: 1.4;
	font-size: 1.6rem;
	font-family: 'FontinSans-Regular', sans-serif !important;
}

.svv-team-page {
	margin: 30px 0 60px;
}

.svv-team-title {
	color: #e30613;
	text-transform: uppercase;
	margin: 0 0 34px;
}

.svv-team-group {
	margin: 0 0 44px;
}

.svv-team-group h2 {
	color: #e30613;
	text-transform: uppercase;
	margin: 0 0 18px;
}

.svv-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 24px;
}

.svv-team-player {
	display: block;
	background: #000;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
}

a.svv-team-player:hover {
	color: #fff;
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.svv-team-photo {
	aspect-ratio: 4 / 5;
	background-color: #fff;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.svv-team-info {
	padding: 18px;
}

.svv-team-info h3 {
	color: #e30613;
	font-size: 1.9rem;
	line-height: 1;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.svv-team-info p {
	color: #fff;
	margin: 0;
	font-size: 1.15rem;
}

.svv-detail {
	margin: 30px 0 60px;
}

.svv-top {
	display: grid;
	grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
	background: #000;
	color: #fff;
}

.svv-detail-photo {
	min-height: 520px;
	background: #111;
	overflow: hidden;
}

.svv-detail-photo img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.svv-detail-info {
	padding: 42px;
}

.svv-detail-info h1 {
	color: #e30613;
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 1;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.svv-position {
	font-size: 1.4rem;
	margin-bottom: 24px;
}

.svv-meta-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.svv-meta-grid div {
	background: rgba(255,255,255,.08);
	padding: 16px;
}

.svv-meta-grid span {
	display: block;
	color: rgba(255,255,255,.68);
	font-size: .9rem;
	text-transform: uppercase;
}

.svv-meta-grid strong {
	display: block;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.35;
}

.svv-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	align-items: start;
	margin: 42px 0;
}

.svv-stats-section {
	min-width: 0;
	overflow-x: auto;
}

.svv-stats-section h2 {
	color: #e30613;
	text-transform: uppercase;
}

.svv-stats-table {
	width: 100%;
	border-collapse: collapse;
}

.svv-stats-table th,
.svv-stats-table td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(0,0,0,.12);
	text-align: left;
	white-space: nowrap;
}

.svv-stats-table th {
	color: #e30613;
	text-transform: uppercase;
}

.svv-stats-table tfoot th {
	border-top: 2px solid #e30613;
}

@media (max-width: 1280px) {
	.svv-stats-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.svv-grid {
		grid-template-columns: 1fr;
	}

	.svv-card {
		display: block;
		max-height: none;
	}

	.svv-photo,
	.svv-info {
		width: 100%;
	}

	.svv-photo {
		height: 62vw;
		min-width: 0;
	}

	.svv-top {
		grid-template-columns: 1fr;
	}

	.svv-detail-photo,
	.svv-detail-photo img {
		min-height: 360px;
	}

	.svv-detail-info {
		padding: 24px;
	}

	.svv-meta-grid {
		grid-template-columns: 1fr;
	}

	.svv-stats-table {
		table-layout: fixed;
	}

	.svv-stats-table th,
	.svv-stats-table td {
		padding: 7px 2px;
		font-size: 13px;
		line-height: 1.15;
	}
}
