.sw-global-footer,
.sw-global-footer * {
	box-sizing: border-box;
}

.sw-global-footer {
	--sw-footer-accent: #c39160;
	padding: 72px 24px 28px;
	background: #387e80;
	color: #fff;
	font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	line-height: 1.65;
}

.sw-global-footer__container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}

.sw-global-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: clamp(56px, 7vw, 112px);
	align-items: start;
}

.sw-global-footer__brand,
.sw-global-footer__column {
	display: grid;
	grid-template-rows: 48px auto;
	align-content: start;
}

.sw-global-footer__logo {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	height: 48px;
	color: inherit;
	text-decoration: none;
}

.sw-global-footer__logo-image {
	display: block;
	width: 220px;
	max-width: 100%;
	height: auto;
	max-height: 44px;
	object-fit: contain;
	object-position: left center;
}

.sw-global-footer__logo-text {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.sw-global-footer__highlights,
.sw-global-footer__menu,
.sw-global-footer__contact-list {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.sw-global-footer__highlights {
	display: grid;
	gap: 9px;
}

.sw-global-footer__highlights li {
	position: relative;
	padding-left: 16px;
}

.sw-global-footer__highlights li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--sw-footer-accent);
	content: "";
	transform: translateY(-50%);
}

.sw-global-footer__heading {
	display: flex;
	align-items: center;
	height: 48px;
	margin: 0;
	color: var(--sw-footer-accent);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sw-global-footer__menu {
	display: grid;
	gap: 9px;
}

.sw-global-footer a {
	color: inherit;
	text-decoration: none;
}

.sw-global-footer__menu a,
.sw-global-footer__contact-list a {
	transition: color 0.25s ease, opacity 0.25s ease;
}

.sw-global-footer__menu a:hover,
.sw-global-footer__menu a:focus-visible,
.sw-global-footer__contact-list a:hover,
.sw-global-footer__contact-list a:focus-visible {
	color: #f5d7a6;
}

.sw-global-footer a:focus-visible {
	border-radius: 3px;
	outline: 2px solid #f5d7a6;
	outline-offset: 4px;
}

.sw-global-footer__contact-list {
	display: grid;
	gap: 12px;
}

.sw-global-footer__contact-list li {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 25px;
}

.sw-global-footer__icon {
	width: 17px;
	height: 17px;
	margin-top: 0;
	fill: none;
	stroke: var(--sw-footer-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.sw-global-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-top: 58px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.17);
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
}

.sw-global-footer__note {
	font-style: italic;
}

@media (max-width: 900px) {
	.sw-global-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px 64px;
	}

	.sw-global-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.sw-global-footer {
		padding: 56px 16px 24px;
	}

	.sw-global-footer__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sw-global-footer__brand {
		grid-column: auto;
	}

	.sw-global-footer__logo-image {
		width: 180px;
	}

	.sw-global-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		margin-top: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sw-global-footer__menu a,
	.sw-global-footer__contact-list a {
		transition: none;
	}
}
