/* ------ HOME PAGE RACES WIDGET ------- */

/* ---- New card-based race widget ---- */

.rw-container {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-family: 'Oswald', sans-serif;
	background: #111;
	border-radius: 6px;
	padding: 12px;
}

.rw-header {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	padding-bottom: 8px;
	margin-bottom: 4px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.rw-card {
	display: grid;
	grid-template-columns: 48px 1fr 40px auto;
	align-items: center;
	gap: 0 8px;
	background: #1a1a1a;
	border-radius: 4px;
	padding: 6px 10px;
	text-decoration: none;
	color: #fff;
	border-left: 3px solid #eb1a21;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	min-height: 38px;
}

.rw-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.rw-card:active {
	transform: translateY(0);
}

/* Series accent colors */
.rw-card.series-accent-sprint {
	border-left-color: #0c7abf;
}

.rw-card.series-accent-lm {
	border-left-color: #ffde00;
}

.rw-card.series-accent-woo {
	border-left-color: #eb1a21;
}

/* Postponed state */
.rw-card.rw-postponed {
	opacity: 0.6;
	border-left-style: dashed;
}

/* Date block */
.rw-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 3px;
	padding: 3px 2px;
	min-width: 42px;
}

.rw-date-month {
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999;
	line-height: 1;
}

.rw-date-day {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.series-accent-sprint .rw-date-day {
	color: #0c7abf;
}

.series-accent-lm .rw-date-day {
	color: #ffde00;
}

.series-accent-woo .rw-date-day {
	color: #eb1a21;
}

/* Info block */
.rw-info {
	overflow: hidden;
}

.rw-track {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.1;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rw-event {
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	color: #777;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 1px;
}

/* Series logo */
.rw-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rw-logo img {
	width: 32px;
	height: auto;
}

/* Action button */
.rw-action {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rw-btn {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 3px;
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	white-space: nowrap;
	transition: background 0.15s ease;
}

.rw-btn.racewidgetbutton {
	background: #eb1a21;
	color: #fff;
}

.rw-card:hover .rw-btn.racewidgetbutton {
	background: #ff2d34;
}

.rw-btn.sprintwidgetbutton {
	background: #0c7abf;
	color: #fff;
}

.rw-card:hover .rw-btn.sprintwidgetbutton {
	background: #ff6b1c;
}

.rw-btn.lmwidgetbutton {
	background: #ffde00;
	color: #000;
}

.rw-card:hover .rw-btn.lmwidgetbutton {
	background: #070808;
	color: #fff;
}

/* Footer link */
.rw-footer {
	margin-top: 6px;
}

.rw-footer a {
	display: block;
	text-align: center;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999 !important;
	text-decoration: none;
	padding: 8px 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.04);
	transition: all 0.15s ease;
}

.rw-footer a:hover {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

/* Empty / error states */
.rw-empty {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	color: #999;
	text-align: center;
	padding: 20px 0;
}

.rw-error {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	color: #eb1a21;
	text-align: center;
	padding: 20px 0;
}

/* Page-specific overrides */
.page-id-99489 .rw-footer a:hover {
	color: #ffde00 !important;
}

.page-id-99489 .rw-card {
	border-left-color: #ffde00;
}

.page-id-99507 .rw-card {
	border-left-color: #0c7abf;
}

/* Mobile */
@media only screen and (max-width: 600px) {
	.rw-card {
		grid-template-columns: 42px 1fr auto;
		gap: 0 6px;
		padding: 5px 8px;
	}

	.rw-logo {
		display: none;
	}

	.rw-track {
		font-size: 12px;
	}

	.rw-btn {
		font-size: 10px;
		padding: 4px 8px;
	}
}

/* ---- CTA Racing Stripe ---- */

.woo-cta-bar {
	position: relative;
	background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
	border-radius: 6px;
	overflow: hidden;
	display: flex;
}

.woo-cta-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 60%;
	width: 200px;
	height: 100%;
	background: repeating-linear-gradient(
		90deg,
		transparent,
		transparent 8px,
		rgba(227, 24, 55, 0.1) 8px,
		rgba(227, 24, 55, 0.1) 16px
	);
	transform: skewX(-15deg);
	pointer-events: none;
}

.woo-cta-panel {
	flex: 1;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	transition: background 0.3s ease;
}

.woo-cta-panel:hover {
	background: rgba(227, 24, 55, 0.05);
}

.woo-cta-stripe {
	width: 5px;
	height: 50px;
	background: linear-gradient(180deg, #e31837 0%, #8b0000 100%);
	flex-shrink: 0;
	border-radius: 2px;
}

.woo-cta-content {
	flex: 1;
}

.woo-cta-subtitle {
	color: #e31837;
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
	display: block;
	line-height: 1;
	margin-bottom: 4px;
}

.woo-cta-heading {
	font-family: 'Oswald', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: white !important;
	letter-spacing: 2px;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.woo-cta-btn {
	background: transparent;
	border: 2px solid #e31837;
	color: #fff !important;
	padding: 12px 24px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	flex-shrink: 0;
	white-space: nowrap;
}

.woo-cta-btn:hover {
	background: #e31837;
	gap: 14px;
}

.woo-cta-btn svg {
	width: 16px;
	height: 16px;
}

/* Sprint Cars variant */
.woo-cta-sprint::before {
	background: repeating-linear-gradient(
		90deg,
		transparent,
		transparent 8px,
		rgba(18, 123, 190, 0.1) 8px,
		rgba(18, 123, 190, 0.1) 16px
	);
}

.woo-cta-sprint .woo-cta-stripe {
	background: linear-gradient(180deg, #127bbe 0%, #0a4a73 100%);
}

.woo-cta-sprint .woo-cta-subtitle {
	color: #127bbe;
}

.woo-cta-sprint .woo-cta-btn {
	border-color: #127bbe;
}

.woo-cta-sprint .woo-cta-btn:hover {
	background: #127bbe;
}

.woo-cta-sprint .woo-cta-panel:hover {
	background: rgba(18, 123, 190, 0.05);
}

/* Late Models variant */
.woo-cta-lm {
	background: linear-gradient(135deg, #111 0%, #000 100%);
}

.woo-cta-lm::before {
	background: repeating-linear-gradient(
		90deg,
		transparent,
		transparent 8px,
		rgba(255, 222, 0, 0.08) 8px,
		rgba(255, 222, 0, 0.08) 16px
	);
}

.woo-cta-lm .woo-cta-stripe {
	background: linear-gradient(180deg, #ffde00 0%, #b89e00 100%);
}

.woo-cta-lm .woo-cta-subtitle {
	color: #ffde00;
}

.woo-cta-lm .woo-cta-btn {
	border-color: #ffde00;
	color: #ffde00 !important;
}

.woo-cta-lm .woo-cta-btn:hover {
	background: #ffde00;
	color: #000 !important;
}

.woo-cta-lm .woo-cta-panel:hover {
	background: rgba(255, 222, 0, 0.05);
}

@media only screen and (max-width: 600px) {
	.woo-cta-panel {
		flex-wrap: wrap;
		padding: 20px;
		gap: 12px;
	}

	.woo-cta-heading {
		font-size: 20px;
	}

	.woo-cta-btn {
		width: 100%;
		justify-content: center;
		padding: 10px 20px;
	}

	.woo-cta-stripe {
		height: 36px;
	}
}

/* ---- Legacy classes kept for compatibility ---- */

.raceswidget {
	display: grid;
	grid-auto-columns: 1fr;
	grid-template-columns: 0.5fr 1.5fr 0.5fr 0.7fr;
	grid-template-rows: 1fr;
	gap: 0px 0px;
	grid-template-areas:
	". . . .";
	background-color: white;
	text-align: center;
    margin-bottom: 4px;
    border-radius: 4px;
	align-items: center;
	font-family: Oswald;
	text-transform: uppercase;
	font-weight: 400;
	color: black;
	min-height: 38px;
}

.racewidgetdate {
	border-right: solid 1px red;
	font-size: 16px;
	line-height: 18px;
}

.racewidgetlogo {
	display: grid;
	padding: 2px;
	justify-content: center;
}

.racewidgetlogo img {
	width: 35px;
}

.racewidgetbutton {
	color: #fff;
	width: 81px;
    background-color: #eb1a21;
}

.sprintwidgetbutton {
	background: #0c7abf;
	color: white;
	width: 85px;
}

.sprintwidgetbutton:hover {
	background: #ff6b1c;
}

.racewidgetbutton:hover {
	background-color: grey;
}

.lmwidgetbutton {
	color: #000;
	width: 85px;
	background-color: #ffde00
}

.lmwidgetbutton:hover {
	background-color: #070808;
	color: #fff;
}

.racewidgetbuttoncontainer {
	display: grid;
	justify-content: center;
}

.widgetschedulelink {
	text-align: right;
	font-size: 14px;
	font-family: 'Oswald';
	font-weight: 600;
	line-height: 1.4em;
	text-transform: uppercase;
	letter-spacing: -.02em;
	color: #fff;
}

.widgetschedulelink a {
	text-align: right;
	font-size: 14px;
	font-family: 'Oswald';
	font-weight: 600;
	line-height: 1.4em;
	text-transform: uppercase;
	letter-spacing: -.02em;
	color: #fff !important;
}

.widgetschedulelink a:hover {
	color: #d20e1b
}

@media screen and (max-width: 1080px) {
	.nav-aligned-right .main-navigation {
		height: 93px;
	}
	.main-navigation .menu-toggle {
		display: none;
	}
	.trackboxlogo {
		max-width: 100%;
	}
	.trackboxtitle {
		max-width: 100%;
	}
	.trackboxaddress {
		max-width: 100%;
	}
	.trackbutton {
		margin-bottom: 10px;
	}
	.biggerdate {
		font-size: 24px;
	}
	.eventnewsboxes {
		text-align: center;
		margin-left: 1.2%;
		width: 48%;
		height: auto;
	}
	.driver_post_title {
		font-size: 16px;
	}
	.trackalign {
		display: block;
	}
	.trackinfotext2 {
		margin-top: 0;
		margin-left: 0;
	}
	.trackinfotext3 {
		margin-top: 0;
		margin-left: 0;
	}
	.driverinfobackground {
		background-image: url(../images/3c5aa6b5c949491fbc29efc68fd3ce60.gif) !important;
		margin-bottom: 0px;
	}

	.drivername {
		font-size: 36px;
		margin-left: 0px !important;
	}
	.playerdata {
		width: 99%;
		margin-left: 0px;
		margin-top: 0px;
	}
	.trackimage {
		width: 48% !important;
		float: left;
		margin-bottom: -6px;
	}
	.trackimage img {
		width: 100%;
		height: 110px;
	}
	.ubermenu-responsive-default.ubermenu-responsive.ubermenu .ubermenu-nav {
		background: black;	
	}
	.sprintdriverinfobackground {
		background-image: none !important;
	}
	.bothdriversocial, .lmdriversocial, .sprintdriversocial {
		margin-left: 0px;
		width: 100%;
		float: left;
	}
	.drivergallery {
		margin-top: -24px;
	}
}

@media only screen and (max-width: 480px) {

	.combinedmiddle {
		height: 100px;
	}
	.latemodelmiddle {
		height: 100px;
	}
	.sprintcarmiddle {
		height: 100px;
	}
	.dvtext {
       color: #000 !important;
    }
    .dvvideo {
       padding-top: 20px;
       padding-bottom: 20px;
    }
    .dvtext a {
        color: #000 !important;
    }
    .subscribebutton {
    	margin-top: -50px;
	}
	.sprintnewfooter {
		padding: 20px !important;
	}
	.second_headline {
		text-align: center;
		font-family: Oswald;
		font-size: 18px;
		line-height: 23px;
		margin-bottom: 20px;
		text-transform: uppercase;
	}
}

.page-id-99489 .racewidgetdate a {
	color: #000
}

.page-id-99489 .racewidgetdate a:hover {
	color: #ffde008f
}

.page-id-99507 .racewidgetdate a {
	color: #0c7abf
}

.page-id-99507 .racewidgetdate a:hover {
	color: #0c7abf8f
}

.page-id-99489 .widgetschedulelink a:hover {
	color: #ffde00;
}

/* ------ RESULTS PAGE HEADINGS ------- */

.dirtcar-results-headings {
	background: #1a1a1a;
	padding: 30px 35px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.dirtcar-results-headings::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: #eb1a21;
}

.dirtcar-results-headings.series-sprintcars::before {
	background: #0c7abf;
}

.dirtcar-results-headings.series-latemodels::before {
	background: #ffde00;
}

.dirtcar-results-headings-inner {
	display: flex;
	align-items: center;
	gap: 30px;
}

.dirtcar-results-date {
	flex-shrink: 0;
	text-align: center;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	min-width: 90px;
}

.dirtcar-results-date-month {
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
	line-height: 1;
	margin-bottom: 4px;
}

.dirtcar-results-date-day {
	font-family: 'Oswald', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
}

.dirtcar-results-date-year {
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #666;
	line-height: 1;
}

.series-sprintcars .dirtcar-results-date-day {
	color: #0c7abf;
}

.series-latemodels .dirtcar-results-date-day {
	color: #ffde00;
}

.dirtcar-results-info {
	flex: 1;
}

.dirtcar-pageheadings {
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 8px;
}

.dirtcar-subheadings {
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	color: #888;
	display: flex;
	align-items: center;
	gap: 8px;
}

.dirtcar-subheadings .track-name {
	color: #ccc;
}

.dirtcar-subheadings .location-divider {
	color: #444;
}

.dirtcar-results-actions {
	flex-shrink: 0;
	margin-left: auto;
	display: flex;
	gap: 10px;
}

.results-print-btn,
.results-media-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
}

.results-print-btn:hover,
.results-media-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
}

.results-print-btn i,
.results-media-btn i {
	font-size: 14px;
	line-height: 1;
}

/* Media Results Modal */
.media-results-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.media-results-modal-content {
	background: #fff;
	border-radius: 8px;
	width: 100%;
	max-width: 900px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.media-results-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 25px;
	border-bottom: 1px solid #eee;
}

.media-results-modal-header h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #1a1a1a;
	margin: 0;
}

.media-results-close {
	background: none;
	border: none;
	font-size: 28px;
	color: #999;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	transition: color 0.2s ease;
}

.media-results-close:hover {
	color: #333;
}

.media-results-modal-body {
	padding: 20px 25px;
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.media-results-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.media-copy-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #1a1a1a;
	border: none;
	border-radius: 4px;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.media-copy-btn:hover {
	background: #333;
}

.media-copy-status {
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	color: #28a745;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.media-copy-status.show {
	opacity: 1;
}

.media-results-textarea {
	flex: 1;
	width: 100%;
	min-height: 400px;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: 'Courier New', Courier, monospace;
	font-size: 13px;
	line-height: 1.6;
	color: #333;
	background: #f9f9f9;
	resize: none;
	box-sizing: border-box;
}

.media-results-textarea:focus {
	outline: none;
	border-color: #999;
}

@media (max-width: 768px) {
	.media-results-modal-content {
		max-height: 95vh;
	}

	.media-results-modal-header {
		padding: 15px 20px;
	}

	.media-results-modal-body {
		padding: 15px 20px;
	}

	.media-results-textarea {
		min-height: 300px;
		font-size: 12px;
	}
}

/* Print header - hidden on screen */
.print-header {
	display: none;
}

@media only screen and (max-width: 768px) {
	.dirtcar-results-headings {
		padding: 20px 20px 20px 26px;
	}

	.dirtcar-results-headings-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.dirtcar-results-date {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px 15px;
	}

	.dirtcar-results-date-month {
		margin-bottom: 0;
	}

	.dirtcar-results-date-day {
		font-size: 24px;
		margin-bottom: 0;
	}

	.dirtcar-results-date-year {
		display: none;
	}

	.dirtcar-pageheadings {
		font-size: 22px;
	}

	.dirtcar-subheadings {
		font-size: 13px;
		flex-wrap: wrap;
	}

	.dirtcar-results-actions {
		margin-left: 0;
		width: 100%;
	}

	.results-print-btn,
	.results-media-btn {
		flex: 1;
		justify-content: center;
	}
}

/* ------ DRIVER SPOTLIGHT ------- */

.woo-spotlight {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 480px;
	overflow: hidden;
	background: #111;
	font-family: 'Oswald', sans-serif;
	color: #fff;
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
}

.woo-spotlight-bg {
	position: relative;
	min-height: 100%;
}

.woo-spotlight-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.woo-spotlight-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 50%, #111 100%);
	pointer-events: none;
}

.woo-spotlight-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
	gap: 16px;
	z-index: 1;
}

.woo-spotlight-tag {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.woo-spotlight-tag-event {
	color: #e2222a;
	font-weight: 700;
}

.woo-spotlight-tag-label {
	background: #e2222a;
	color: #fff;
	padding: 2px 10px;
	border-radius: 3px;
	font-weight: 700;
	font-size: 11px;
}

.woo-spotlight h2.woo-spotlight-name {
	margin: 0;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}

.woo-spotlight-first {
	display: block;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 2px;
}

.woo-spotlight-last {
	display: block;
	font-size: 56px;
	font-weight: 700;
	letter-spacing: 3px;
}

.woo-spotlight-subtitle {
	margin: 0;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #aaa;
}

.woo-spotlight-body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #ccc;
}

.woo-spotlight-body p {
	margin: 0 0 8px;
}

.woo-spotlight-stats {
	display: flex;
	gap: 32px;
	margin-top: 8px;
	padding-top: 16px;
	border-top: 1px solid #333;
}

.woo-spotlight-stat {
	display: flex;
	flex-direction: column;
}

.woo-spotlight-stat-value {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #e2222a;
}

.woo-spotlight-stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #888;
	margin-top: 4px;
}

/* Series color variants */
.woo-spotlight-sprint .woo-spotlight-tag-event,
.woo-spotlight-sprint .woo-spotlight-stat-value {
	color: #0095ff;
}
.woo-spotlight-sprint .woo-spotlight-tag-label {
	background: #0095ff;
}

.woo-spotlight-lm .woo-spotlight-tag-event,
.woo-spotlight-lm .woo-spotlight-stat-value {
	color: #f5c518;
}
.woo-spotlight-lm .woo-spotlight-tag-label {
	background: #f5c518;
	color: #111;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.woo-spotlight {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.woo-spotlight-bg {
		height: 300px;
	}

	.woo-spotlight-gradient {
		background: linear-gradient(to bottom, transparent 40%, #111 100%);
	}

	.woo-spotlight-content {
		padding: 24px;
	}

	.woo-spotlight-last {
		font-size: 40px;
	}

	.woo-spotlight-stats {
		gap: 20px;
	}

	.woo-spotlight-stat-value {
		font-size: 24px;
	}
}