.brand-logo-row {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 22px;
}
.brand-logo {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.brand-logo-img {
	width: 160px;
	height: 160px;
	border-radius: 16px;
	background: linear-gradient(135deg, oklch(0.42 0.04 175), oklch(0.3 0.04 175));
	color: #f6f2ea;
	display: grid;
	place-items: center;

	font-style: italic;
	font-weight: 500;
	font-size: 38px;
	letter-spacing: 0.02em;
	border: 1px solid var(--border);
}
.brand-logo-actions {
	display: flex;
	gap: 12px;
}
.link-btn {
	background: none;
	border: none;
	color: var(--accent);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	padding: 0;
	font-family: inherit;
}
.link-btn:hover {
	text-decoration: underline;
}
.link-btn.dim {
	color: var(--fg-mute);
}
.link-btn.dim:hover {
	color: oklch(0.55 0.16 25);
}
.brand-name-block {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
