/**
 * fanorate/tomorrow-preview — next-day look-ahead.
 *
 * Section head, then a fixtures list (match + meta line, red-ruled rows) and a
 * responsive grid of watch-item cards (red eyebrow label + text), plus an
 * optional closing note.
 */

.section-tomorrow-preview {
	padding-block: clamp(40px, 6vw, 72px);
}

/* ---------- Section head ---------- */
.section-tomorrow-preview .tomorrow-preview__kicker {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font: var(--eyebrow);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--color-primary);
}
.section-tomorrow-preview .tomorrow-preview__kicker::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 100px;
	background: currentColor;
	display: inline-block;
}
.section-tomorrow-preview .tomorrow-preview__title {
	color: var(--color-accent);
	margin: 12px 0 0;
}
.section-tomorrow-preview .tomorrow-preview__intro {
	margin: var(--space-md) 0 0;
	max-width: 70ch;
	font: var(--body-lg);
	font-family: var(--font-ui);
	color: var(--text-secondary);
}

/* ---------- Shared subhead ---------- */
.section-tomorrow-preview .tomorrow-preview__subhead {
	display: block;
	margin-bottom: var(--space-md);
	font: var(--eyebrow);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--text-tertiary);
}

/* ---------- Fixtures list ---------- */
.section-tomorrow-preview .tomorrow-preview__fixtures {
	margin-top: var(--space-xl);
}
.section-tomorrow-preview .tomorrow-preview__fixture-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 3px solid var(--color-primary);
}
.section-tomorrow-preview .tomorrow-preview__fixture {
	display: grid;
	grid-template-columns: minmax(180px, 240px) 1fr;
	gap: var(--space-md);
	align-items: baseline;
	padding: var(--space-md) 0;
	border-bottom: 1px solid var(--border-subtle);
}
.section-tomorrow-preview .tomorrow-preview__fixture-match {
	font-family: var(--font-ui);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: var(--color-accent);
}
.section-tomorrow-preview .tomorrow-preview__fixture-meta {
	font: var(--body);
	font-family: var(--font-ui);
	color: var(--text-secondary);
}
.section-tomorrow-preview .tomorrow-preview__fixture-meta strong { color: var(--color-accent); }
.section-tomorrow-preview .tomorrow-preview__fixture-meta em { font-style: italic; }

/* ---------- Watch-item grid ---------- */
.section-tomorrow-preview .tomorrow-preview__watch-grid {
	margin-top: var(--space-xl);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--space-md);
}
.section-tomorrow-preview .tomorrow-preview__watch {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: var(--space-lg);
	transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.section-tomorrow-preview .tomorrow-preview__watch:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.section-tomorrow-preview .tomorrow-preview__watch-label {
	display: block;
	margin-bottom: 8px;
	font: var(--eyebrow);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--color-primary);
}
.section-tomorrow-preview .tomorrow-preview__watch-text {
	margin: 0;
	font: var(--body);
	font-family: var(--font-ui);
	color: var(--text-secondary);
}
.section-tomorrow-preview .tomorrow-preview__watch-text strong { color: var(--color-accent); }
.section-tomorrow-preview .tomorrow-preview__watch-text em { font-style: italic; }

/* ---------- Note ---------- */
.section-tomorrow-preview .tomorrow-preview__note {
	margin: var(--space-lg) 0 0;
	font: var(--body);
	font-family: var(--font-ui);
	color: var(--text-tertiary);
}

/* ---------- Reveal-on-scroll (armed by view.js) ---------- */
.section-tomorrow-preview [data-reveal] {
	transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
	transition-delay: calc((var(--i, 0)) * 55ms);
}
.section-tomorrow-preview.is-reveal-armed [data-reveal]:not(.is-in) {
	opacity: 0;
	transform: translateY(18px);
}
@media (prefers-reduced-motion: reduce) {
	.section-tomorrow-preview.is-reveal-armed [data-reveal]:not(.is-in) {
		opacity: 1;
		transform: none;
	}
	.section-tomorrow-preview [data-reveal] { transition-delay: 0s; }
	.section-tomorrow-preview .tomorrow-preview__watch:hover { transform: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
	.section-tomorrow-preview .tomorrow-preview__fixture {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}
