/* JD Share — barra de compartir sobria, hereda la tipografía del theme. */

.jd-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 28px 0 8px;
	padding-top: 14px;
	border-top: 1px solid #e2e2e2;
}
.jd-share__label {
	font-size: 14px;
	font-weight: 700;
	margin-right: 4px;
}
.jd-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	color: #1c1c1c;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
}
.jd-share__btn:hover,
.jd-share__btn:focus-visible {
	background: #1c1c1c;
	border-color: #1c1c1c;
	color: #fff;
	text-decoration: none;
}
.jd-share__btn svg {
	width: 16px;
	height: 16px;
	display: block;
	flex: none;
}
.jd-share__btn[hidden] { display: none; }

@media (max-width: 520px) {
	.jd-share__name { display: none; }
	.jd-share__btn { padding: 9px; }
	.jd-share__btn svg { width: 18px; height: 18px; }
}
