/*--------------------------------------------------------------
# Footer 1 (Figma)
--------------------------------------------------------------*/

.site-footer {
	box-sizing: border-box;
	color: #000;
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer__inner {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 120px;
	width: 100%;
	max-width: 1280px;
	min-height: 160px;
	margin: 0 auto;
	padding: 64px;
}

.site-footer__text {
	display: flex;
	flex: 0 1 auto;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 32px;
	min-width: 0;
}

.site-footer__company {
	display: flex;
	flex: none;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.site-footer__logomark {
	display: block;
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	overflow: hidden;
}

.site-footer__logomark-image {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	object-fit: cover;
}

.site-footer__name {
	flex: none;
	color: #000;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.site-footer__nav {
	flex: none;
}

.site-footer__menu {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu a {
	display: inline-flex;
	align-items: center;
	color: rgba(0, 0, 0, 0.55);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.005em;
	text-decoration: none;
	white-space: nowrap;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus {
	color: #000;
}

.site-footer__social {
	flex: none;
}

.site-footer__social-list {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: rgba(0, 0, 0, 0.45);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus {
	color: #000;
}

.site-footer__social-link svg {
	display: block;
	width: 24px;
	height: 24px;
}

@media (max-width: 1279px) {
	.site-footer__inner {
		flex-direction: column;
		justify-content: center;
		gap: 56px;
		min-height: 365px;
		padding: 64px 24px;
	}

	.site-footer__text {
		flex-direction: column;
		align-items: center;
		gap: 24px;
		width: 100%;
		max-width: 327px;
	}

	.site-footer__name {
		font-size: 18px;
		letter-spacing: -0.36px;
	}

	.site-footer__menu {
		flex-direction: column;
		align-items: center;
		gap: 16px;
		width: 100%;
	}

	.site-footer__social-list {
		gap: 16px;
	}
}

@media print {
	.site-footer {
		display: none;
	}
}
