/*
 * Combat Sports Fight Card widget styles (sc_ticket_fight_card).
 *
 * Ported from the inline <style> block in mockups/ticket_page_draft1.html
 * (fight card grid: lines 462-506; disclaimer callout: inline styles on the
 * fight-card notice block at lines 1150-1156). Scoped under
 * .sc-fight-card-widget so the .section / .section-label / h2 utilities do
 * not collide with other widgets.
 */

.sc-fight-card-widget {
	display: block;
	background: var(--bg);
}

.sc-fight-card-widget .section {
	max-width: 860px;
	margin: 0 auto;
	padding: 60px 24px;
}

.sc-fight-card-widget .section-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.sc-fight-card-widget h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(26px, 4vw, 38px);
	margin: 0 0 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
}

.sc-fight-card-widget .fight-card-intro {
	color: var(--muted);
	max-width: 720px;
	margin: 0;
}

.sc-fight-card-widget .fight-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--fight-min-width, 220px), 1fr));
	gap: 16px;
	margin-top: 28px;
}

.sc-fight-card-widget .fight-card-empty {
	margin-top: 28px;
	padding: 24px;
	background: var(--card);
	border: 1px dashed var(--border);
	border-radius: 8px;
	color: var(--muted);
	text-align: center;
	font-style: italic;
}

.sc-fight-card-widget .fight-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
}

.sc-fight-card-widget .fight-card .fighters {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: var(--text);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	line-height: 1.3;
}

.sc-fight-card-widget .fight-card .vs {
	color: var(--primary);
	font-weight: 700;
	margin: 0 6px;
}

.sc-fight-card-widget .fight-card .weight-class {
	margin-top: 8px;
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.sc-fight-card-widget .fight-card.title-fight {
	border-color: var(--primary);
}

.sc-fight-card-widget .fight-card .title-flag {
	display: inline-block;
	margin-top: 10px;
	padding: 2px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text);
	background: var(--primary);
	border-radius: 999px;
}

.sc-fight-card-widget .fight-card-notice {
	margin-top: 24px;
	padding: 16px 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.sc-fight-card-widget .fight-card-notice__icon {
	font-size: 22px;
	line-height: 1;
}

.sc-fight-card-widget .fight-card-notice__body {
	flex: 1 1 auto;
	min-width: 0;
}

.sc-fight-card-widget .fight-card-notice__title {
	font-weight: 700;
	font-size: 14px;
	color: var(--text);
}

.sc-fight-card-widget .fight-card-notice__text {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.4;
}

@media (max-width: 767px) {
	.sc-fight-card-widget .section {
		padding: 40px 16px;
	}
}
