.pcl-changelog {
	max-width: 720px;
}

.pcl-release {
	position: relative;
	padding: 0 0 32px 28px;
	border-left: 2px solid #e2e8f0;
	margin-left: 8px;
}

.pcl-release:last-child {
	border-left-color: transparent;
	padding-bottom: 0;
}

.pcl-release::before {
	content: '';
	position: absolute;
	left: -6px;
	top: 6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #3b82f6;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px #3b82f6;
}

.pcl-release:first-child::before {
	width: 12px;
	height: 12px;
	left: -7px;
	top: 5px;
}

.pcl-release-header {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.pcl-version {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
}

.pcl-date {
	font-size: 13px;
	color: #94a3b8;
}

.pcl-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 2px 10px;
	border-radius: 20px;
}

.pcl-label--new {
	background: #dbeafe;
	color: #1e40af;
}

.pcl-label--improvement {
	background: #d1fae5;
	color: #065f46;
}

.pcl-label--fix {
	background: #fef3c7;
	color: #92400e;
}

.pcl-label--security {
	background: #fce7f3;
	color: #9d174d;
}

.pcl-changes {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pcl-change {
	padding: 6px 0;
	font-size: 14px;
	color: #334155;
	line-height: 1.5;
	border-bottom: 1px solid #f1f5f9;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.pcl-change:last-child {
	border-bottom: none;
}

.pcl-change-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}

.pcl-change--added .pcl-change-icon {
	background: #d1fae5;
	color: #065f46;
}

.pcl-change--changed .pcl-change-icon {
	background: #dbeafe;
	color: #1e40af;
}

.pcl-change--fixed .pcl-change-icon {
	background: #fef3c7;
	color: #92400e;
}

.pcl-change--important .pcl-change-icon {
	background: #fce7f3;
	color: #9d174d;
}

.pcl-change--default {
	padding-left: 28px;
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
	.pcl-version {
		color: #e2e8f0;
	}
	.pcl-change {
		color: #cbd5e1;
		border-bottom-color: #334155;
	}
	.pcl-release {
		border-left-color: #334155;
	}
}
