.cm-article-extra-tools {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	margin-top: 2px;
	padding-top: 12px;
}

.cm-article-extra-tools::before {
	position: absolute;
	top: 2px;
	left: 50%;
	width: 24px;
	height: 1px;
	background: var(--cm-border, #29445a);
	content: "";
	transform: translateX(-50%);
}

.cm-article-extra-action {
	position: relative;
	padding: 0;
	font: inherit;
}

.cm-article-extra-action::after {
	position: absolute;
	right: calc(100% + 10px);
	top: 50%;
	z-index: 6;
	width: max-content;
	max-width: 220px;
	padding: 7px 9px;
	border: 1px solid var(--cm-border, #29445a);
	border-radius: 8px;
	color: var(--cm-text, #eef7ff);
	background: var(--cm-surface, #0d1c2c);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
	content: attr(data-cm-label);
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 11px;
	font-weight: 750;
	line-height: 1.3;
	opacity: 0;
	pointer-events: none;
	transform: translate(5px, -50%);
	transition: opacity 160ms ease, transform 160ms ease;
}

.cm-article-extra-action:hover::after,
.cm-article-extra-action:focus-visible::after {
	opacity: 1;
	transform: translate(0, -50%);
}

.cm-article-pdf-action {
	color: var(--cm-primary, #20c4c8) !important;
}

.cm-article-pdf-action .cm-icon {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.65;
}

@media (max-width: 700px) {
	.cm-mobile-share-option.cm-article-pdf-action .cm-icon {
		width: 25px;
		height: 25px;
	}
}

@media print {
	.cm-article-extra-tools { display: none !important; }
}

