/* Site footer widget */

.tsa-footer {
	--tsa-footer-bg: #061223;
	--tsa-footer-accent: #e5232e;
	position: relative;
	padding: 40px 24px 18px;
	border-radius: 28px 28px 0 0;
	color: rgba(255, 255, 255, 0.82);
	background:
		radial-gradient(circle at 8% 0%, rgba(22, 119, 255, 0.22), transparent 45%),
		linear-gradient(180deg, var(--tsa-footer-bg), #04101f);
	overflow: hidden;
}

.tsa-footer__glow {
	position: absolute;
	inset-inline-end: -80px;
	bottom: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, color-mix(in srgb, var(--tsa-footer-accent) 35%, transparent), transparent 65%);
	pointer-events: none;
}

.tsa-footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.4fr repeat(auto-fit, minmax(170px, 1fr));
	gap: 26px;
	max-width: 1180px;
	margin: 0 auto;
}

.tsa-footer__name {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
	color: #fff;
}

.tsa-footer__mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--tsa-footer-accent), #6c0a11);
	box-shadow: 0 10px 22px rgba(229, 35, 46, 0.32);
}

.tsa-footer__logo {
	max-height: 54px;
	width: auto;
}

.tsa-footer__about {
	margin: 14px 0 0;
	max-width: 46ch;
	font-size: 0.88rem;
	line-height: 2.1;
}

.tsa-footer__socials {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

.tsa-footer__social {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-decoration: none;
	transition: transform 0.25s var(--tsa-ease), background 0.25s var(--tsa-ease), border-color 0.25s var(--tsa-ease);
}

.tsa-footer__social:hover {
	transform: translateY(-3px);
	background: var(--tsa-footer-accent);
	border-color: transparent;
}

.tsa-footer__title {
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
	font-size: 0.95rem;
	font-weight: 800;
	color: #fff;
}

.tsa-footer__links,
.tsa-footer__contact {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.87rem;
}

.tsa-footer__links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s var(--tsa-ease), transform 0.2s var(--tsa-ease);
}

.tsa-footer__links .tsa-icon {
	width: 0.95em;
	height: 0.95em;
	color: var(--tsa-footer-accent);
}

.tsa-footer__links a:hover {
	color: #fff;
	transform: translateX(-5px);
}

.tsa-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.9;
}

.tsa-footer__contact .tsa-icon {
	margin-top: 4px;
	color: var(--tsa-footer-accent);
}

.tsa-footer__contact a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s var(--tsa-ease);
}

.tsa-footer__contact a:hover {
	color: #fff;
}

.tsa-footer__bar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	max-width: 1180px;
	margin: 28px auto 0;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.82rem;
}

.tsa-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tsa-footer__badges .tsa-chip {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
	.tsa-footer__grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}
