/**
 * Social Links Extension CSS
 * Neutral, theme-friendly circular social links.
 */

 .aaff-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aaff-social-links__item {
	margin: 0;
	padding: 0;
}

.aaff-social-links__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 36px;
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid #dcdcde;
	border-radius: 999px;
	background: #fff;
	color: #1d2327;
	text-decoration: none;
	box-sizing: border-box;
}

.aaff-social-links__link:hover,
.aaff-social-links__link:focus {
	text-decoration: none;
	border-color: #bfc3c7;
}

.aaff-social-links__link:focus-visible {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

.aaff-social-links__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.aaff-social-links__icon-image {
	display: block;
	width: 16px;
	height: 16px;
	max-width: 16px;
	max-height: 16px;
}

.aaff-social-links__icon-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.aaff-social-links__label {
	font-size: 13px;
	line-height: 1.3;
	font-weight: 500;
	white-space: nowrap;
}