.christph-share {
	--christph-ink: #18212f;
	--christph-muted: #64748b;
	--christph-line: rgba(15, 23, 42, 0.12);
	--christph-panel: #ffffff;
	clear: both;
	position: relative;
	margin: 2.25rem 0;
	padding: 1rem;
	border: 1px solid var(--christph-line);
	border-radius: 8px;
	background: var(--christph-panel);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
	font-family: inherit;
	color: var(--christph-ink);
	overflow: hidden;
}

.christph-share::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0284c7, #16a34a 38%, #f59e0b 70%, #7c3aed);
}

.christph-share__intro {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 0.85rem;
}

.christph-share__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2.35rem;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 8px;
	background: #eef6ff;
	color: #0284c7;
}

.christph-share__mark svg,
.christph-share__icon svg {
	width: 1.15rem;
	height: 1.15rem;
	fill: currentColor;
}

.christph-share__copy {
	min-width: 0;
}

.christph-share__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
	color: var(--christph-ink);
}

.christph-share__subtitle {
	margin: 0.15rem 0 0;
	font-size: 0.88rem;
	line-height: 1.35;
	color: var(--christph-muted);
}

.christph-share__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(8.4rem, 1fr));
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.christph-share__item {
	--platform-color: #334155;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.christph-share__item--messenger { --platform-color: #0084ff; }
.christph-share__item--facebook { --platform-color: #1877f2; }
.christph-share__item--whatsapp { --platform-color: #128c7e; }
.christph-share__item--telegram { --platform-color: #2481cc; }
.christph-share__item--viber { --platform-color: #7360f2; }
.christph-share__item--x { --platform-color: #111827; }
.christph-share__item--linkedin { --platform-color: #0a66c2; }
.christph-share__item--email { --platform-color: #475569; }
.christph-share__item--sms { --platform-color: #16a34a; }
.christph-share__item--copy { --platform-color: #7c3aed; }

.christph-share__button {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.55rem;
	width: 100%;
	min-height: 2.75rem;
	padding: 0.48rem 0.62rem;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.07);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	color: var(--christph-ink);
	text-decoration: none;
	cursor: pointer;
	transition: transform 130ms ease, box-shadow 130ms ease, border-color 130ms ease, background-color 130ms ease;
}

.christph-share__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 1.85rem;
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 7px;
	background: var(--platform-color);
	color: #ffffff;
}

.christph-share__label {
	min-width: 0;
	overflow-wrap: anywhere;
}

.christph-share__button:hover,
.christph-share__button:focus {
	border-color: rgba(15, 23, 42, 0.24);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.13);
	transform: translateY(-1px);
	text-decoration: none;
}

.christph-share__button:focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.35);
	outline-offset: 2px;
}

.christph-share__button--active .christph-share__icon {
	background: #16a34a;
}

.christph-share--quiet {
	box-shadow: none;
	background: #ffffff;
}

.christph-share--quiet::before {
	background: #cbd5e1;
}

.christph-share--quiet .christph-share__mark {
	background: #f1f5f9;
	color: #475569;
}

@media (max-width: 560px) {
	.christph-share {
		padding: 0.9rem;
	}

	.christph-share__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.christph-share__button {
		min-height: 4.2rem;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		gap: 0.38rem;
		padding: 0.6rem 0.45rem;
		text-align: center;
	}

	.christph-share__icon {
		flex-basis: 1.8rem;
	}
}

@media (max-width: 360px) {
	.christph-share__list {
		grid-template-columns: 1fr;
	}

	.christph-share__button {
		min-height: 2.9rem;
		align-items: center;
		justify-content: flex-start;
		flex-direction: row;
		text-align: left;
	}
}

@media print {
	.christph-share {
		display: none;
	}
}
