/**
 * Estilos para el botón de copia de enlace de los posts.
 */

.copy-post-link {
	position: relative;
	cursor: pointer;
}

.copy-post-link::after {
	content: 'Enlace copiado';
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	z-index: 10;
	padding: 6px 10px;
	background: #000;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	border-radius: 4px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 5px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;
	pointer-events: none;
}

.copy-post-link.is-copied::after {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}
