.tl-share-toggle {
	align-items: center;
	background: #fff;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(18, 42, 66, 0.2);
	color: #17283b;
	cursor: pointer;
	display: inline-flex;
	height: 46px;
	justify-content: center;
	padding: 0;
	transition: box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
	width: 46px;
}

.tl-share-toggle svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 22px;
}

.tl-share-toggle:hover,
.tl-share-toggle:focus-visible {
	box-shadow: 0 8px 22px rgba(18, 42, 66, 0.28);
	color: #1b74d6;
	transform: translateY(-2px);
}

.tl-detail-hero .tl-share-toggle--detail {
	position: absolute;
	right: max(24px, calc((100vw - 1140px) / 2));
	top: 170px;
	z-index: 9;
}

.tl-share-dialog {
	display: none;
	inset: 0;
	position: fixed;
	z-index: 10040;
}

.tl-share-dialog.is-open {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 20px;
}

.tl-share-dialog__backdrop {
	background: rgba(12, 24, 38, 0.68);
	inset: 0;
	position: absolute;
}

.tl-share-dialog__panel {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 24px 70px rgba(12, 24, 38, 0.3);
	max-width: 520px;
	padding: 28px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.tl-share-dialog__close {
	align-items: center;
	background: #f2f5f7;
	border: 0;
	border-radius: 50%;
	display: flex;
	font-size: 24px;
	height: 38px;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 38px;
}

.tl-share-dialog h2 {
	color: #25313f;
	font-size: 22px;
	margin: 0 48px 6px 0;
}

.tl-share-dialog p {
	color: #6f7d8c;
	font-size: 14px;
	margin-bottom: 20px;
}

.tl-share-dialog__options {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tl-share-option {
	align-items: center;
	background: #f7fafc;
	border: 1px solid #e0e8ef;
	border-radius: 8px;
	color: #25313f;
	display: flex;
	font-size: 13px;
	font-weight: 600;
	gap: 8px;
	justify-content: center;
	min-height: 48px;
	padding: 10px;
	text-align: center;
}

.tl-share-option:hover,
.tl-share-option:focus-visible {
	background: #edf6ff;
	border-color: #1b74d6;
	color: #0d5baa;
}

.tl-share-option svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 18px;
}

@media (max-width: 767px) {
	.tl-detail-hero .tl-share-toggle--detail {
		right: 18px;
		top: 142px;
	}

	.tl-share-toggle {
		height: 42px;
		width: 42px;
	}

	.tl-share-dialog__panel {
		padding: 24px 18px 18px;
	}

	.tl-share-dialog__options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
