/**
 * Site-wide campaign chrome: promo nav, Vegas copy fade, qualifier badge.
 * Home hero locks stay in home-hero-presets.css (loaded on homepage only).
 */

.nav-list a.nav-link--promo,
.site-footer a.nav-link--promo {
	color: var(--promo-gold);
	font-weight: 700;
}

.nav-list a.nav-link--promo:hover,
.nav-list a.nav-link--promo.is-active,
.site-footer a.nav-link--promo:hover {
	color: var(--promo-gold-bright);
}

.nav-list a.nav-link--promo.is-active {
	box-shadow: inset 0 -2px 0 var(--promo-gold);
}

/* Shared Daly peel: keep ~398px clear on the right below ~1230px. */
.vegas-copy-fade.media-backdrop::after,
[data-theme="light"] .vegas-copy-fade.media-backdrop::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	right: auto;
	width: clamp(18rem, min(68%, calc(100% - 24.875rem)), 90rem);
	pointer-events: none;
	background: linear-gradient(
		to right,
		rgba(7, 8, 9, 0.62) 0%,
		rgba(7, 8, 9, 0.5) 70%,
		rgba(7, 8, 9, 0.16) 86%,
		transparent 100%
	);
	transition: none;
}

.shootout-elig-badge {
	display: block;
	width: auto;
	height: auto;
	max-width: 5.5rem;
	object-fit: contain;
}

.tournament-row__media,
.tournament-row__poster-wrap {
	position: relative;
}

.tournament-row__poster-wrap {
	display: block;
}

.tournament-row__shootout-badge {
	position: absolute;
	top: 0.45rem;
	right: 0.45rem;
	max-width: 4.25rem;
	width: 22%;
	min-width: 3.25rem;
	z-index: 2;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
	pointer-events: none;
}

.shootout-elig-callout {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem 1.15rem;
	align-items: center;
	margin-top: 1.15rem;
	padding: 0.95rem 1.1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg, 12px);
	background: var(--bg-panel, var(--bg-elevated, var(--bg)));
}

.shootout-elig-callout__badge .shootout-elig-badge {
	max-width: 4.75rem;
}

.shootout-elig-callout__title {
	margin: 0 0 0.25rem;
	font-family: var(--font-display, var(--font-body));
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: var(--text);
}

.shootout-elig-callout__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--text-muted);
	max-width: 46ch;
}

.shootout-elig-callout__link {
	margin: 0.45rem 0 0;
}

.shootout-elig-callout__link a {
	font-weight: 700;
	color: var(--promo-gold, var(--green));
	text-decoration: none;
}

.shootout-elig-callout__link a:hover {
	color: var(--promo-gold-bright, var(--green-bright));
	text-decoration: underline;
}

@media (max-width: 600px) {
	.shootout-elig-callout:not(.shootout-elig-callout--compact) {
		grid-template-columns: 1fr;
		justify-items: start;
		text-align: left;
	}

	.shootout-elig-callout--compact,
	.shootout-elig-callout--hero {
		grid-template-columns: auto 1fr;
		align-items: center;
	}

	.tournament-row__shootout-badge {
		max-width: 3.75rem;
	}
}
