.omarric-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 28px 0;
	padding: 18px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font: inherit;
}

.omarric-share__label {
	font-weight: 600;
	line-height: 1.4;
}

.omarric-share__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.omarric-share__button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 999px;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.omarric-share__button:hover {
	background: rgba(0, 0, 0, 0.045);
	border-color: rgba(0, 0, 0, 0.24);
	text-decoration: none;
	transform: translateY(-1px);
}

.omarric-share__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.omarric-share__copy.is-copied {
	font-weight: 600;
}

@media (max-width: 640px) {
	.omarric-share {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.omarric-share__actions {
		width: 100%;
	}

	.omarric-share__button {
		min-height: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.omarric-share__button {
		transition: none;
	}
}
