/* =========================
	LOGO AREA
========================= */
.logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* =========================
	EMBLEM
========================= */
.emblem {
	width: 38px;
	height: 38px;
	position: relative;
	transform: rotate(45deg);

	background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
	border: 2px solid var(--border-2);

	box-shadow:
		inset 0 0 8px rgba(0, 0, 0, 0.8),
		0 0 10px rgba(0, 0, 0, 0.6);
}

.emblem::after {
	content: "";
	position: absolute;
	inset: 7px;
	background: var(--bg-1);
	border: 1px solid var(--border-2);
}

/* =========================
	WORDMARK
========================= */
.wordmark {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.wordmark .title {
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 3px;
	color: var(--text-1);
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.wordmark .title .accent {
	color: var(--accent-1);
}

.wordmark .sub {
	font-size: 11px;
	letter-spacing: 2px;
	color: var(--text-3);
	text-transform: uppercase;
}