.pcl-changelog {
	--pcl-text: #080808;
	--pcl-muted: #777;
	--pcl-timeline: #f2a21a;
	--pcl-dot: #7b7b7b;
	--pcl-border: #d0d0d0;
	width: min(100%, 760px);
	color: var(--pcl-text);
	font-family: "Trebuchet MS", "Avenir Next", Avenir, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.pcl-changelog *,
.pcl-changelog *::before,
.pcl-changelog *::after {
	box-sizing: border-box;
}

.pcl-heading {
	margin: 0 0 10px 30px;
	font-size: clamp(25px, 3vw, 31px);
	line-height: 1.05;
	font-weight: 500;
	letter-spacing: -0.035em;
	color: var(--pcl-text);
}

.pcl-timeline {
	position: relative;
	min-height: 170px;
	padding: 7px 0 15px 29px;
	border-left: 2px solid var(--pcl-timeline);
}

.pcl-update + .pcl-update {
	margin-top: 34px;
	padding-top: 29px;
	border-top: 1px solid #e7e7e7;
}

.pcl-update-title {
	margin: 0 0 15px;
	font-size: clamp(24px, 3vw, 31px);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--pcl-text);
}

.pcl-update-date {
	margin: -5px 0 20px;
	color: var(--pcl-muted);
	font-size: 14px;
	line-height: 1.3;
}

.pcl-items {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none !important;
}

.pcl-items li {
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	font-size: clamp(19px, 2.25vw, 23px);
	line-height: 1.08;
	letter-spacing: -0.018em;
	color: var(--pcl-text);
	list-style: none !important;
}

.pcl-items li::marker {
	content: "";
}

.pcl-items li::before {
	content: "";
	position: absolute;
	left: -23px;
	top: .56em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pcl-dot);
	transform: translateY(-50%);
}

.pcl-empty {
	position: relative;
	padding: 4px 0 18px;
	color: #555;
	font-size: 18px;
	line-height: 1.4;
}

.pcl-empty::before {
	content: "";
	position: absolute;
	left: -23px;
	top: 14px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pcl-dot);
}

.pcl-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 22px;
	padding-left: 30px;
}

.pcl-pagination[hidden] {
	display: none !important;
}

.pcl-page-status {
	color: var(--pcl-muted);
	font-size: 14px;
}

.pcl-page-buttons {
	display: flex;
	gap: 8px;
}

.pcl-page-button {
	min-width: 94px;
	min-height: 40px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid var(--pcl-border);
	border-radius: 4px;
	background: #fff;
	color: #111;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
}

.pcl-page-button:hover:not(:disabled),
.pcl-page-button:focus-visible:not(:disabled) {
	background: #f5f5f5;
	border-color: #aaa;
	color: #000;
}

.pcl-page-button:disabled {
	opacity: .38;
	cursor: default;
}

.pcl-changelog.is-loading .pcl-content {
	opacity: .45;
	pointer-events: none;
}

@media (max-width: 640px) {
	.pcl-heading {
		margin-left: 20px;
	}

	.pcl-timeline {
		padding-left: 20px;
	}

	.pcl-items li::before,
	.pcl-empty::before {
		left: -14px;
	}

	.pcl-pagination {
		padding-left: 20px;
		align-items: flex-start;
		flex-direction: column;
	}

	.pcl-page-buttons {
		width: 100%;
	}

	.pcl-page-button {
		flex: 1;
	}
}


/*
 * One-shot shine sweep for newly loaded rows.
 * Triggered only when the visitor clicks Next.
 */
.pcl-items li {
	overflow: visible;
	isolation: isolate;
}

.pcl-content.pcl-shine .pcl-items li::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: -30%;
	bottom: -30%;
	left: -55%;
	width: 42%;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.12) 24%,
		rgba(255, 255, 255, 0.72) 50%,
		rgba(255, 255, 255, 0.12) 76%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-18deg);
	opacity: 0;
	animation: pcl-row-shine 760ms cubic-bezier(.2,.7,.25,1) var(--pcl-shine-delay, 0ms) both;
}

@keyframes pcl-row-shine {
	0% {
		left: -55%;
		opacity: 0;
	}
	12% {
		opacity: 1;
	}
	88% {
		opacity: .9;
	}
	100% {
		left: 118%;
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pcl-content.pcl-shine .pcl-items li::after {
		animation: none !important;
		display: none !important;
	}
}


.pcl-pagination-top {
	margin-top: 0;
	margin-bottom: 18px;
}

.pcl-pagination-bottom {
	margin-top: 22px;
	margin-bottom: 0;
}


/* Restore and protect the changelog bullet dots. */
.pcl-changelog .pcl-items li::before {
	content: "" !important;
	display: block !important;
	position: absolute !important;
	left: -23px !important;
	top: .56em !important;
	width: 7px !important;
	height: 7px !important;
	border-radius: 50% !important;
	background: var(--pcl-dot) !important;
	transform: translateY(-50%) !important;
	opacity: 1 !important;
	visibility: visible !important;
	z-index: 3;
}

@media (max-width: 640px) {
	.pcl-changelog .pcl-items li::before {
		left: -14px !important;
	}
}
