.page-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.page-header__back {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--border-radius-md);
	background: var(--color-background-secondary);
	color: var(--color-text-primary);
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--transition-fast);
	flex-shrink: 0;
}

.page-header__back:hover {
	background: var(--color-border-tertiary);
}

.page-header__title {
	font-size: 1.0625rem;
	font-weight: 600;
}
