/*
 * Venue highlights widget styles (sc_ticket_venue_highlights).
 *
 * Ported from the inline <style> block in mockups/ticket_page_draft1.html
 * (.venue-highlights / .venue-item / .venue-icon / .venue-text — lines
 * 640-663; venue section markup lines 1252-1305). Scoped under
 * .sc-venue-highlights-widget so the shared .section / h2 utilities in other
 * widgets are not disturbed.
 */

.sc-venue-highlights-widget {
	display: block;
	background: var(--bg);
}

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

.sc-venue-highlights-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-venue-highlights-widget h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(26px, 4vw, 38px);
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
}

.sc-venue-highlights-widget .venue-tagline {
	color: var(--accent);
	font-size: 0.75em;
}

.sc-venue-highlights-widget .venue-address {
	color: var(--muted);
	margin: 0 0 8px;
}

.sc-venue-highlights-widget .venue-address a {
	color: var(--accent);
	text-decoration: none;
}

.sc-venue-highlights-widget .venue-address a:hover,
.sc-venue-highlights-widget .venue-address a:focus {
	text-decoration: underline;
}

.sc-venue-highlights-widget .venue-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.sc-venue-highlights-widget .venue-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background: var(--card);
	border-radius: 6px;
	border: 1px solid var(--border);
}

.sc-venue-highlights-widget .venue-icon {
	font-size: 22px;
	flex-shrink: 0;
	color: var(--accent);
	line-height: 1.2;
}

.sc-venue-highlights-widget .venue-text h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 2px;
}

.sc-venue-highlights-widget .venue-text p {
	font-size: 13px;
	color: var(--muted);
	margin: 0;
}

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

	/* Force a single-column grid on mobile. The auto-fit minmax(180px, 1fr)
	 * flips to 2 columns exactly at viewport 408px (376px content area = two
	 * 180px tracks + 16px gap), which shortens the widget enough to leave a
	 * visible gap above the next widget on narrow viewports. */
	.sc-venue-highlights-widget .venue-highlights {
		grid-template-columns: 1fr;
	}
}
