[hidden] {
	display: none !important;
}

.arch-diagram {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0 auto;
	max-width: 680px;
}

.arch-layer {
	align-items: center;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
	min-height: 64px;
	padding: 14px 20px;
	text-align: center;
	width: 100%;
}

.arch-layer__name {
	font-size: 0.9375rem;
	font-weight: 620;
	line-height: 1.3;
}

.arch-layer__desc {
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.4;
}

.arch-layer__tag {
	background: rgb(255 255 255 / 0.9);
	border-radius: 4px;
	color: #173247;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 3px 8px;
}

.arch-layer--app {
	background: #173247;
	color: #ffffff;
}

.arch-layer--app .arch-layer__desc,
.arch-layer--wine .arch-layer__desc {
	color: #ffffff;
}

.arch-layer--wine {
	background: #1d6b8f;
	color: #ffffff;
}

.arch-layer--sys {
	background: #2f6f99;
	color: #ffffff;
	flex: 1;
}

.arch-layer--sys .arch-layer__desc {
	color: #ffffff;
}

.arch-layer--os {
	background: #c5dced;
	color: #173247;
}

.arch-layer--os .arch-layer__desc {
	color: #284f66;
}

.arch-arrow {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 28px;
	width: 0;
}

.arch-arrow::before {
	border-left: 2.5px solid #5a9bc7;
	content: "";
	flex: 1;
}

.arch-arrow::after {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 7px solid #5a9bc7;
	content: "";
	height: 0;
	width: 0;
}

.arch-split {
	display: flex;
	gap: 12px;
	width: 100%;
}

@media (max-width: 560px) {
	.arch-split {
		flex-direction: column;
		gap: 8px;
	}
}
