﻿.tabswire-footer {
	--tabswire-footer-bg: #233548;
	--tabswire-footer-text: #ffffff;
	--tabswire-footer-muted: #c4d4e4;
	--tabswire-footer-rule: #8299b1;
	background: var(--tabswire-footer-bg);
	color: var(--tabswire-footer-text);
	font-family: "Lexend Deca", sans-serif;
	margin-top: clamp(48px, 7vw, 96px);
}

.tabswire-footer *,
.tabswire-footer *::before,
.tabswire-footer *::after {
	box-sizing: border-box;
}

.tabswire-footer__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 1370px;
	min-height: 290px;
	padding: 66px 28px 48px;
	text-align: center;
	width: 100%;
}

.tabswire-footer__social-row {
	align-items: center;
	display: grid;
	gap: clamp(20px, 3vw, 44px);
	grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
	margin-bottom: 18px;
	width: 100%;
}

.tabswire-footer__rule {
	background: var(--tabswire-footer-rule);
	display: block;
	height: 1px;
	opacity: 0.9;
	width: 100%;
}

.tabswire-footer__social {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(18px, 2vw, 34px);
	justify-content: center;
	min-width: 0;
}

.tabswire-footer__social a {
	align-items: center;
	color: var(--tabswire-footer-muted);
	display: inline-flex;
	height: 34px;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	transition: color 160ms ease, transform 160ms ease;
	width: 34px;
}

.tabswire-footer__social svg {
	display: block;
	fill: currentColor;
	height: 22px;
	width: 22px;
}

.tabswire-footer__social a:hover,
.tabswire-footer__social a:focus-visible {
	color: var(--tabswire-footer-text);
	outline: 0;
	transform: translateY(-2px);
}

.tabswire-footer__social a:focus-visible,
.tabswire-footer__links a:focus-visible,
.tabswire-footer__brand:focus-visible {
	outline: 2px solid var(--tabswire-footer-muted);
	outline-offset: 4px;
}

.tabswire-footer__brand {
	align-items: center;
	color: var(--tabswire-footer-text);
	display: inline-flex;
	font-family: Satoshi, sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 8px;
	text-decoration: none;
}

.tabswire-footer__brand-mark {
	align-items: center;
	border: 2px solid currentColor;
	border-radius: 999px;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.68em;
	font-weight: 800;
	height: 1.12em;
	justify-content: center;
	line-height: 1;
	margin: 0 0.04em;
	padding-bottom: 0.03em;
	text-transform: lowercase;
	transform: translateY(0.015em);
	width: 1.12em;
}

.tabswire-footer__copyright {
	color: var(--tabswire-footer-muted);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 12px 0 4px;
}

.tabswire-footer__links {
	align-items: center;
	display: flex;
	justify-content: center;
}

.tabswire-footer__links-list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	line-height: 1.5;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tabswire-footer__links a {
	color: var(--tabswire-footer-text);
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	padding: 0 8px;
	position: relative;
	text-decoration: none;
}

.tabswire-footer__links-list li:not(:last-child) a::after {
	color: var(--tabswire-footer-muted);
	content: "|";
	position: absolute;
	right: -2px;
	top: 0;
}

.tabswire-footer__links a:hover,
.tabswire-footer__links a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

@media (max-width: 760px) {
	.tabswire-footer__inner {
		min-height: 260px;
		padding: 44px 20px 36px;
	}

	.tabswire-footer__social-row {
		display: flex;
		flex-direction: column;
		gap: 22px;
	}

	.tabswire-footer__rule {
		max-width: 260px;
	}

	.tabswire-footer__social {
		flex-wrap: wrap;
		gap: 18px 26px;
	}

	.tabswire-footer__links {
		max-width: 360px;
	}

	.tabswire-footer__links-list {
		gap: 6px 0;
	}
}

@media (max-width: 420px) {
	.tabswire-footer__social a {
		height: 30px;
		width: 30px;
	}

	.tabswire-footer__social svg {
		height: 20px;
		width: 20px;
	}

	.tabswire-footer__links a {
		font-size: 0.92rem;
		padding: 0 7px;
	}
}


