/* ==================================================
   BOTONES DEL ARTÍCULO: INICIO
================================================== */

.article-socials{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:15px;
}

.article-social-link{
	width:34px;
	height:34px;
	flex:0 0 34px;
	padding:0;
	display:flex;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	border:0;
	border-radius:50%;
	appearance:none;
	cursor:pointer;
	text-decoration:none;
	background:var(--white);
	transition:transform .3s ease;
}

.article-social-link:hover{
	transform:translateY(-3px);
}

.article-social-link:focus{
	outline:none;
	box-shadow:none;
}

.article-social-icon{
	width:18px;
	height:18px;
	display:block;
	object-fit:contain;
}

.article-social-icon-linkedin{
	width:16px;
	height:16px;
}

.article-social-icon-print{
	width:16px;
	height:16px;
}

.article-social-icon-share{
	width:17px;
	height:17px;
}

.article-socials-closing{
	margin-top:0;
}

/* ==================================================
   MENÚ FLOTANTE: INICIO
================================================== */

.article-share-wrapper{
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
}

.article-share-menu{
	position:absolute;
	top:calc(100% + 12px);
	right:0;
	width:190px;
	padding:8px;
	box-sizing:border-box;
	border-radius:12px;
	background:var(--white);
	box-shadow:0 12px 30px rgba(0,0,0,.28);
	z-index:100;
}

.article-share-menu[hidden]{
	display:none;
}

.article-share-menu::before{
	content:'';
	position:absolute;
	top:-6px;
	right:11px;
	width:12px;
	height:12px;
	background:var(--white);
	transform:rotate(45deg);
}

.article-share-option{
	position:relative;
	z-index:1;
	width:100%;
	min-height:38px;
	padding:8px 12px;
	box-sizing:border-box;
	display:flex;
	align-items:center;
	border:0;
	border-radius:8px;
	cursor:pointer;
	font-family:var(--font-text);
	font-size:13px;
	line-height:18px;
	font-weight:var(--medium);
	text-align:left;
	color:#272727;
	background:transparent;
	transition:background .2s ease;
}

.article-share-option:hover{
	background:#EEEEEE;
}

.article-share-option:focus{
	outline:none;
	background:#EEEEEE;
}

/* ==================================================
   MENÚ FLOTANTE: FIN
================================================== */


/* ==================================================
   IMPRESIÓN
================================================== */

@media print{
	.article-socials,
	.article-share-menu{
		display:none!important;
	}
}

/* ==================================================
   BOTONES DEL ARTÍCULO: FIN
================================================== */


/* ==================================================
   IMPRESIÓN DEL ARTÍCULO: INICIO
================================================== */

@media print{
	html,
	body{
		background:#FFFFFF!important;
		color:#000000!important;
	}

	.article-hero,
	.article-content,
	.article-closing,
	.article-closing-container,
	.article-closing-copy,
	.article-closing-share{
		background-color:#FFFFFF!important;
		color:#000000!important;
	}

	.article-hero h1,
	.article-hero h2,
	.article-hero p,
	.article-content h1,
	.article-content h2,
	.article-content h3,
	.article-content p,
	.article-content span,
	.article-content strong,
	.article-closing h1,
	.article-closing h2,
	.article-closing p,
	.article-closing span,
	.article-closing strong{
		color:#000000!important;
		text-shadow:none!important;
	}

	.article-closing-line{
		background:#000000!important;
	}

	.article-socials,
	.article-share-menu{
		display:none!important;
	}
}

/* ==================================================
   IMPRESIÓN DEL ARTÍCULO: FIN
================================================== */