@charset "utf-8";

.cobo-ws-box {
	position: relative;
	overflow: hidden;
	width: 100%;
	background: #fff;
	border: 1px solid #e6e9ef;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(18, 24, 40, 0.04);
}

.cobo-ws-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
	padding: 0 18px;
	border-bottom: 1px solid #edf0f5;
}

.cobo-ws-title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 6px;
	margin: 0;
	min-width: 0;
	font-size: var(--cobo-ws-title-font-size, 17px);
	font-weight: var(--cobo-ws-title-font-weight, 800);
	line-height: 1.25;
	color: var(--cobo-ws-title-color, #111827);
}

.cobo-ws-title__subtitle {
	font-size: var(--cobo-ws-subtitle-font-size, 13px);
	font-weight: var(--cobo-ws-subtitle-font-weight, 700);
	color: var(--cobo-ws-subtitle-color, #8b95a5);
}

.cobo-ws-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #111827;
	text-decoration: none;
	background: #fff;
	border: 1px solid #dfe4ec;
	border-radius: 6px;
	transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}

.cobo-ws-more:hover,
.cobo-ws-more:focus {
	color: #ef233c;
	background: #fff5f6;
	border-color: #ffd1d7;
	text-decoration: none;
}

.cobo-ws-more i {
	font-size: 17px;
	line-height: 1;
}

.cobo-ws-body {
	padding: 18px;
}

.cobo-ws-box--compact .cobo-ws-header {
	min-height: 44px;
	padding: 0 14px;
	background: #f7f8fa;
}

.cobo-ws-box--compact .cobo-ws-title {
	font-size: var(--cobo-ws-title-font-size, 13px);
}

.cobo-ws-box--compact .cobo-ws-title__subtitle {
	font-size: var(--cobo-ws-subtitle-font-size, 11px);
}

.cobo-ws-box--compact .cobo-ws-body {
	padding: 14px;
}

@media (max-width: 640px) {
	.cobo-ws-header {
		min-height: 48px;
		padding: 0 14px;
	}

	.cobo-ws-title {
		font-size: var(--cobo-ws-title-font-size, 15px);
	}

	.cobo-ws-title__subtitle {
		font-size: var(--cobo-ws-subtitle-font-size, 12px);
	}

	.cobo-ws-body {
		padding: 14px;
	}
}
