.aspp-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 30px;
	width: 100%;
}

.aspp-item {
	min-width: 0;
	width: 100%;
}

.aspp-empty {
	font-size: 0.95em;
}

.aspp-notice {
	padding: 12px 16px;
	border: 1px dashed #c3c4c7;
	border-radius: 4px;
	background: #f6f7f7;
	color: #50575e;
	font-size: 13px;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.aspp-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.aspp-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
