/**
 * Footer social links.
 *
 * Ported from `RenoCart Landing Page.dc.html`, the element the design marks
 * `data-dc-tpl="1056"` (line 1442).
 *
 * The design gives this row no `narrow` branch -- the whole footer's response
 * to width lives in its ancestors (`ftRowStyle`, `ftLinksStyle`), outside this
 * section. Here the icons simply wrap via `flex-wrap`, at every width, so
 * there is no breakpoint to port. No box-sizing reset, matching the design.
 *
 * All four anchors carry byte-identical `style` and `style-hover` in the
 * design, so one rule covers them.
 *
 * `text-decoration: none` is stated rather than inherited: the design relies
 * on a page-wide `a { text-decoration: none }`, which a theme will not
 * provide.
 */

.rcsl {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.rcsl__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	color: #6b7280;
	text-decoration: none;
	box-shadow: inset 0 0 0 1px #e8e8ed;
	transition: color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.rcsl__link:hover {
	color: #ffffff;
	text-decoration: none;
	background: #4f46e5;
	box-shadow: inset 0 0 0 1px #4f46e5;
}

@media (prefers-reduced-motion: reduce) {

	.rcsl__link {
		transition: none;
	}
}
