/**
 * Aumaujaya Growth Suite — the share row readers see.
 * Deliberately quiet: it borrows the theme's own type and only carries colour
 * on hover, so it sits under devotional content without shouting.
 */

.ags-share {
	margin: 2.2em 0;
	padding: 1.1em 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ags-share__label {
	display: block;
	font-size: 0.72em;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.6;
	margin-bottom: 0.7em;
}

.ags-share__row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ags-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 0.82em;
	line-height: 1.2;
	text-decoration: none;
	border: 1px solid currentColor;
	border-radius: 999px;
	color: var(--ags-c, #555);
	background: transparent;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
	font-family: inherit;
}

.ags-share__btn:hover,
.ags-share__btn:focus-visible {
	background: var(--ags-c, #555);
	color: #fff;
}

.ags-share__btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.ags-share__btn.is-copied {
	background: var(--ags-c, #555);
	color: #fff;
}

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