.logo {
	display: flex;
	min-width: 160px;
	height: 220px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 5px;
}

.logo > .isotype {
	width: 160px;
	height: 160px;
	background-image: url("/images/logo/isotype-color.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.logo > .logotype {
	width: 130px;
	height: 40px;
	background-color: light-dark(#1f2937, #d5dce3);
	mask-image: url("/images/logo/logotype-line.svg");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

.logo.horizontal {
	height: 160px;
	flex-direction: row;
}

.logo.horizontal > .logotype {
	width: 220px;
	height: 60px;
}

.logo.horizontal.left {
	justify-content: left;
}

@media screen and (max-width: 767px) {

	.logo.horizontal {
		height: 220px;
		flex-direction: column;
	}

	.logo.horizontal > .logotype {
		width: 130px;
		height: 40px;
	}
}