.article-comments-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	cursor: pointer;
}

.article-comments-link::before,
.article-comments-link::after {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 1000;
}

.article-comments-link::before {
	content: attr(data-tooltip);
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-5px);
	margin-bottom: 8px;
	padding: 8px 12px;
	background-color: var(--theme-color);
	color: #fff;
	font-size: 12px;
	line-height: 1.4;
	white-space: nowrap;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.article-comments-link::after {
	content: '';
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-5px);
	margin-bottom: -2px;
	border: 5px solid transparent;
	border-top-color: var(--theme-color);
}

.article-comments-link:hover::before,
.article-comments-link:hover::after,
.article-comments-link:focus::before,
.article-comments-link:focus::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
