.kkcr-card,
.kkcr-channel-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.kkcr-card__header,
.kkcr-report-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 18px;
}

.kkcr-card__title,
.kkcr-report-title,
.kkcr-section-title {
	margin: 0 0 8px;
}

.kkcr-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7280;
	margin-bottom: 6px;
}

.kkcr-muted {
	color: #6b7280;
	font-size: 14px;
}

.kkcr-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.kkcr-badge--draft {
	background: #f3f4f6;
	color: #374151;
}

.kkcr-badge--published {
	background: #dcfce7;
	color: #166534;
}

.kkcr-badge--archived {
	background: #e0e7ff;
	color: #3730a3;
}

.kkcr-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 14px;
	margin-bottom: 20px;
}

.kkcr-stat {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 14px;
}

.kkcr-stat__label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6b7280;
	margin-bottom: 8px;
}

.kkcr-stat__value {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
}

.kkcr-summary {
	margin-top: 14px;
}

.kkcr-actions,
.kkcr-table-actions,
.kkcr-pagination {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.kkcr-button,
.kkcr-link-button,
.kkcr-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 8px;
	padding: 10px 14px;
	font-weight: 600;
	border: 1px solid #0abfa3;
	background: #0abfa3;
	color: #ffffff;
}

.kkcr-link-button--disabled {
	opacity: 0.55;
	pointer-events: none;
}

.kkcr-page-link {
	background: #ffffff;
	color: #0f172a;
	border-color: #d1d5db;
}

.kkcr-page-link.is-current {
	background: #0abfa3;
	color: #ffffff;
	border-color: #0abfa3;
}

.kkcr-table-wrap {
	overflow-x: auto;
}

.kkcr-table {
	width: 100%;
	border-collapse: collapse;
}

.kkcr-table th,
.kkcr-table td {
	padding: 12px 10px;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
	vertical-align: top;
}

.kkcr-empty-state {
	padding: 18px;
	border: 1px dashed #d1d5db;
	border-radius: 12px;
	color: #6b7280;
	background: #f9fafb;
}

.kkcr-report-page {
	background: #f8fafc;
	margin: 0;
}

.kkcr-report-shell {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 20px 60px;
}

.kkcr-section-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
	margin-bottom: 20px;
}

.kkcr-channel-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 18px;
}

.kkcr-channel-list {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
}

.kkcr-channel-list li {
	margin-bottom: 8px;
}

.kkcr-channel-notes {
	padding-top: 10px;
	border-top: 1px solid #e5e7eb;
}

.kkcr-report-header__main {
	flex: 1 1 auto;
}

.kkcr-report-header__side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.kkcr-report-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.kkcr-meta-chip {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: #eef2ff;
	color: #3730a3;
	font-size: 13px;
	font-weight: 600;
}

.kkcr-actions--stacked {
	flex-direction: column;
	align-items: stretch;
}

.kkcr-stats-grid--large {
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.kkcr-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

@media (max-width: 767px) {
	.kkcr-report-header {
		flex-direction: column;
	}

	.kkcr-report-header__side {
		align-items: flex-start;
		width: 100%;
	}
}