/**
 * Arvand Social Share widget layout.
 *
 * Functional layout and focus states only. Colors, typography, spacing,
 * borders and radii are driven by the Elementor style controls.
 */
.asoc-share {
	--asoc-share-status-color: inherit;
}

.asoc-share__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.asoc-share__item {
	margin: 0;
}

.asoc-share__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
}

.asoc-share__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}

.asoc-share__icon svg {
	display: block;
	inline-size: 1em;
	block-size: 1em;
	fill: currentColor;
}

.asoc-share__label {
	display: inline-flex;
	align-items: center;
}

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

/*
 * Clipboard/system-share status message. Hidden by default so it never
 * interrupts the layout; JS makes it visible and announces it via role=status.
 */
.asoc-share__status {
	position: absolute;
	inline-size: 1px;
	block-size: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.asoc-share__status.is-visible {
	position: static;
	inline-size: auto;
	block-size: auto;
	margin-block-start: 0.5rem;
	overflow: visible;
	clip: auto;
	white-space: normal;
	font-size: 0.875em;
	line-height: 1.4;
	color: var(--asoc-share-status-color, inherit);
}