/**
 * HS Athletics public directories — shared enterprise details.
 *
 * The template keeps its structural styles while this layer provides one
 * consistent presentation for normalized HS OS data on every sport site.
 */

.hs-template .hs-enterprise-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 10px;
}

.hs-template .hs-enterprise-facts span {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	min-height: 26px;
	padding: 5px 9px;
	border: 1px solid rgba(0, 37, 84, .10);
	border-radius: 999px;
	background: #f5f8fc;
	color: #687589;
	font-family: Arial, sans-serif;
	font-size: .68rem;
	line-height: 1;
	white-space: nowrap;
}

.hs-template .hs-enterprise-facts strong {
	color: #002554;
	font-family: "Oswald", Arial, sans-serif;
	font-size: .75rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.hs-template .hs-team-row,
.hs-template .hs-league-row,
.hs-template .hs-player-row {
	position: relative;
}

.hs-template .hs-team-row::before,
.hs-template .hs-league-row::before,
.hs-template .hs-player-row::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: #5e8ab4;
	opacity: 0;
	transform: scaleY(.4);
	transition: opacity .2s ease, transform .2s ease;
}

.hs-template .hs-team-row:hover::before,
.hs-template .hs-team-row:focus-visible::before,
.hs-template .hs-league-row:hover::before,
.hs-template .hs-league-row:focus-visible::before,
.hs-template .hs-player-row:hover::before,
.hs-template .hs-player-row:focus-visible::before {
	opacity: 1;
	transform: scaleY(1);
}

.hs-template .hs-coach-row {
	background: linear-gradient(90deg, rgba(216, 179, 90, .08), #fff 30%);
}

.hs-template .hs-coach-row .hs-player-number {
	background: #002554;
	color: #fff;
}

.hs-template .hs-player-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hs-template .hs-layout {
	grid-template-columns: minmax(0, 1fr) !important;
}

.hs-template .hs-main {
	min-width: 0;
	width: 100%;
}

.hs-template .hs-sidebar[hidden] {
	display: none !important;
}

@media (max-width: 767px) {
	.hs-template .hs-enterprise-facts {
		gap: 5px;
	}

	.hs-template .hs-enterprise-facts span {
		min-height: 23px;
		padding: 4px 7px;
		font-size: .62rem;
	}

	.hs-template .hs-enterprise-facts strong {
		font-size: .68rem;
	}

}
