/* =============================================================
 * /events/ — placeholder + (future) events surface styles.
 *
 * Placeholder phase (current): a single centered "Coming soon"
 * card on the standard platform-page wrap. The platform bar +
 * cream-strip provide the surface framing; the card itself is
 * minimal — eyebrow + heading + one body paragraph — and avoids
 * heavy chrome so it feels like a placeholder, not a finished
 * page.
 *
 * Future phase: as real events ship, additional .songreps-events__*
 * blocks land here. The placeholder rules tag-team with the wider
 * surface styles; nothing here is throwaway-named.
 * ============================================================= */

.songreps-events {
	min-height: calc(100vh - 200px); /* roughly: viewport minus chrome */
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 64px;
	padding-bottom: 64px;
}

.songreps-events__placeholder {
	max-width: 520px;
	width: 100%;
	text-align: center;
}

.songreps-events__eyebrow {
	font-family: var(--songreps-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--songreps-accent, #b58655);
	margin: 0 0 14px;
}

.songreps-events__headline {
	font-family: var(--songreps-font-display);
	font-weight: 700;
	font-size: 36px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--songreps-fg, #2a3744);
	margin: 0 0 18px;
}

.songreps-events__body {
	font-family: var(--songreps-font-body);
	font-size: 16px;
	line-height: 1.55;
	color: var(--songreps-primary, #2a3744);
	margin: 0;
}

@media (max-width: 767.98px) {
	.songreps-events {
		padding-top: 40px;
		padding-bottom: 40px;
		min-height: calc(100vh - 160px);
	}
	.songreps-events__headline {
		font-size: 28px;
	}
	.songreps-events__body {
		font-size: 15px;
	}
}
