/* Privacy-conscious social profile links: local styles and inline icons only. */
.pua-social-profiles {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
}

.pua-social-profiles--hero {
	width: 100%;
	max-width: 560px;
	align-items: flex-start;
	flex-direction: column;
	gap: 7px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--pua-line);
}

.pua-social-profiles__label {
	color: var(--pua-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.035em;
	line-height: 1.4;
	text-transform: uppercase;
}

.pua-social-profiles__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pua-social-profiles__item {
	margin: 0;
	padding: 0;
}

body.pua-redesign .pua-social-profiles__link {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--pua-input);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(15, 36, 64, 0.06);
	color: var(--pua-navy);
	text-decoration: none;
	transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

body.pua-redesign .pua-social-profiles__link:hover,
body.pua-redesign .pua-social-profiles__link:focus-visible {
	border-color: var(--pua-navy);
	background: var(--pua-navy);
	box-shadow: 0 7px 18px rgba(15, 36, 64, 0.16);
	color: #fff;
}

body.pua-redesign .pua-social-profiles__link:focus-visible {
	outline: 3px solid var(--pua-gold);
	outline-offset: 3px;
}

.pua-social-profiles__icon {
	display: block;
	width: 21px;
	height: 21px;
}

body.pua-redesign .pua-social-profiles--hero .pua-social-profiles__link {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
}

body.pua-redesign .pua-social-profiles--hero .pua-social-profiles__icon {
	width: 24px;
	height: 24px;
}

body.pua-redesign .site-footer .pua-social-profiles--footer {
	max-width: 600px;
	margin-top: 22px;
}

body.pua-redesign .site-footer .pua-social-profiles--footer .pua-social-profiles__label {
	color: rgba(255, 255, 255, 0.72);
}

body.pua-redesign .site-footer .pua-social-profiles--footer .pua-social-profiles__link {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
	color: #fff;
}

body.pua-redesign .site-footer .pua-social-profiles--footer .pua-social-profiles__link:hover,
body.pua-redesign .site-footer .pua-social-profiles--footer .pua-social-profiles__link:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--pua-navy-dark);
}

@media (max-width: 600px) {
	.pua-social-profiles {
		align-items: flex-start;
		flex-direction: column;
	}

	.pua-social-profiles__links {
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.pua-redesign .pua-social-profiles__link {
		transition: none;
	}
}
