/*
 * page-community.css
 *
 * Stub community page. Just the header (title + "Back to All Books" link).
 * Re-uses the same .dbc-page-header pattern that leaderboards introduces;
 * if more sub-pages get this header shape we should promote it to a shared
 * file under assets/css/dbc-page-header.css.
 */

.dbc-page--community {
	background: var(--e-global-color-nvsitebg, #ffffff);
	padding: 46px 20px 35px;
	min-height: 50vh;
}

.dbc-page--community .dbc-page-header {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dbc-page--community .dbc-page-header__title {
	margin: 0;
	font-size: 32px;
	font-weight: 600;
	color: #111827;
}

.dbc-page--community .dbc-page-header__back {
	margin: 0;
	font-size: 14px;
}

.dbc-page--community .dbc-page-header__back a {
	color: #6b7280;
	text-decoration: none;
}

.dbc-page--community .dbc-page-header__back a:hover {
	color: #111827;
}
