/*
 * utilities.css — 単機能のユーティリティ。
 * 数は増やさない。3か所以上で使い回すものだけをここに置く。
 */

.pc-u-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip-path: inset(50%);
	white-space: nowrap;
}

.pc-u-center {
	text-align: center;
}

.pc-u-muted {
	color: var(--picico-color-text-muted);
}

.pc-u-nowrap {
	white-space: nowrap;
}

.pc-u-stack > * + * {
	margin-block-start: var(--picico-space-sm);
}

.pc-u-mt-lg {
	margin-block-start: var(--picico-space-lg);
}

.pc-u-mb-lg {
	margin-block-end: var(--picico-space-lg);
}
