.cc-shell {
	padding-bottom: 2rem;
}

.cc-card-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
}

.cc-summary {
	margin: 1rem 1rem 0;
	padding: 1rem;
	border: 1px solid #d8e0e7;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cc-summary p {
	display: inline-block;
	margin: 0 1.25rem 0.35rem 0;
	color: #435160;
}

.cc-card {
	display: flex;
	min-height: 360px;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid #d8e0e7;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cc-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.cc-card h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: #17212b;
}

.cc-count {
	display: inline-flex;
	min-width: 2.25rem;
	height: 2.25rem;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #17324d;
	color: #fff;
	font-weight: 700;
}

.cc-list {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.6rem;
}

.cc-item,
.cc-row {
	display: flex;
	text-decoration: none;
	color: #17212b;
}

.cc-item {
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.65rem;
	border: 1px solid #e7edf2;
	border-radius: 6px;
	background: #f8fafc;
}

.cc-item:hover,
.cc-row:hover {
	border-color: #7aa7d9;
	background: #eef6ff;
	color: #17212b;
}

.cc-item span,
.cc-row strong {
	font-weight: 700;
}

.cc-item small,
.cc-row span,
.cc-row small,
.cc-empty {
	color: #5d6b78;
	font-size: 0.86rem;
}

.cc-empty {
	padding: 0.8rem;
	border: 1px dashed #cfd8e3;
	border-radius: 6px;
	background: #fbfcfd;
}

.cc-action-list {
	display: grid;
	gap: 0.65rem;
}

.cc-row {
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 1rem;
	border: 1px solid #e2e8ef;
	border-radius: 8px;
	background: #fff;
}

.cc-row div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 0.1rem;
}

.cc-row span {
	overflow-wrap: anywhere;
}

.cc-list-panel {
	max-width: 1100px;
}

@media (max-width: 1400px) {
	.cc-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

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

@media (max-width: 640px) {
	.cc-card-grid {
		grid-template-columns: 1fr;
	}

	.cc-card {
		min-height: 0;
	}

	.cc-row {
		align-items: flex-start;
		flex-direction: column;
	}
}
