/* Heartland SportsWire - ESPN BottomLine-Style Ticker */

.hsw-ticker {
	border: none;
	position: relative;
	overflow: hidden;
	width: 100%;
	border-bottom: 3px solid var(--score-color, #00d4ff);
	font-family: 'Oswald', sans-serif;
	box-sizing: border-box;
	background-color: var(--bg-color, #000000);
	height: var(--ticker-height, 60px);
}

.hsw-sport-indicator {
	font-size: calc(20px + 1vw);
	font-weight: bold;
	width: 7%;
	min-width: 80px;
	color: white;
	position: absolute;
	background: linear-gradient(to bottom, #4c4c4c 0%, #2c2c2c 50%, #000000 100%);
	line-height: 1;
	vertical-align: middle;
	padding: 0 15px;
	text-align: center;
	height: 100%;
	box-sizing: border-box;
	z-index: 11;
	left: 0;
	font-style: italic;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
	border-right: 2px solid var(--score-color, #00d4ff);
}

.hsw-info-container {
	position: relative;
	margin-left: 7%;
	margin-right: 18%;
	height: 100%;
	overflow: hidden;
}

.hsw-score-container {
	color: white;
	padding: 0 15px;
	z-index: 10;
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	animation: hsw-scroll 30s linear forwards;
}

.hsw-team {
	height: 100%;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	font-size: calc(11px + 0.4vw);
	font-weight: 700;
	background: linear-gradient(to bottom, #550505 0%, #330303 50%, #1a0000 100%);
	border-right: 2px solid var(--score-color, #00d4ff);
	box-shadow: inset -3px 0px 12px #330303;
	gap: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	flex: 0 0 auto;
}

.hsw-score-value {
	font-weight: 900;
	font-size: calc(13px + 0.5vw);
	color: var(--score-color, #00d4ff);
	padding-left: 15px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hsw-status-container {
	width: auto;
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 100%;
	border-left: 2px solid var(--score-color, #00d4ff);
	box-shadow: inset 2px 0px 8px rgba(0, 0, 0, 0.5);
	background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
	padding: 0 12px;
	gap: 8px;
	flex: 0 0 auto;
}

.hsw-status-text {
	font-size: calc(9px + 0.3vw);
	font-weight: 700;
	color: var(--score-color, #00d4ff);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.hsw-logo-container {
	position: absolute;
	height: 100%;
	width: 18%;
	min-width: 130px;
	right: 0;
	z-index: 10;
	background: linear-gradient(to bottom, #4c4c4c 0%, #2c2c2c 50%, #000000 100%);
	border-left: 2px solid var(--score-color, #00d4ff);
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.hsw-logo {
	font-size: calc(12px + 0.5vw);
	font-weight: bold;
	color: var(--score-color, #00d4ff);
	text-align: center;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

@keyframes hsw-scroll {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}
