/**
 * Gridowp — site footer.
 */

.gw-footer {
	position: relative;
	z-index: 901;
	background: var(--gw-bg);
	border-top: 1px solid var(--gw-line);
	padding: 60px 0 30px;
	color: var(--gw-ink);
	font-family: var(--gw-font);
}

.gw-footer-inner {
	max-width: var(--gw-content-width);
	margin: 0 auto;
	padding: 0 28px;
}

.gw-foot {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
	gap: 40px;
}

.gw-foot-logo-link {
	display: inline-block;
	line-height: 0;
}

.gw-foot-logo-link img {
	height: 38px;
	width: auto;
}

.gw-foot-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--gw-ink);
}

.gw-foot-brand p {
	color: var(--gw-ink-dim);
	font-size: 14px;
	margin-top: 14px;
	max-width: 300px;
	line-height: 1.7;
}

.gw-foot h5 {
	font-size: 13px;
	font-weight: 700;
	color: var(--gw-ink);
	margin: 0 0 16px;
	letter-spacing: .02em;
}

.gw-foot ul.gw-foot-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gw-foot a {
	color: var(--gw-ink-dim);
	font-size: 14px;
	text-decoration: none;
	transition: color .15s;
}

.gw-foot a:hover {
	color: var(--gw-primary-hover);
}

.gw-socials {
	display: flex;
	gap: 8px;
	margin-top: 18px;
}

.gw-socials a {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	display: grid;
	place-items: center;
	background: rgba(33, 37, 41, .04);
	border: 1px solid var(--gw-line);
	color: var(--gw-ink-dim);
	text-decoration: none;
	transition: background .15s, border-color .15s, color .15s;
}

.gw-socials a:hover {
	background: rgba(125, 194, 70, .1);
	border-color: rgba(125, 194, 70, .35);
	color: var(--gw-primary-hover);
}

.gw-foot-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--gw-line);
	font-size: 13px;
	color: var(--gw-ink-dim);
}

.gw-pay-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.gw-pay-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	border-radius: 7px;
	background: rgba(33, 37, 41, .04);
	border: 1px solid var(--gw-line);
	font-family: 'IBM Plex Mono', 'Courier New', monospace;
	font-size: 11.5px;
	color: var(--gw-ink-dim);
	font-weight: 600;
	letter-spacing: .02em;
}

.gw-pay-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	display: inline-block;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.gw-footer-inner {
		padding-inline: 18px;
	}

	.gw-foot {
		grid-template-columns: 1fr 1fr;
	}

	.gw-foot-brand {
		grid-column: 1 / -1;
	}

	.gw-foot-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.gw-foot {
		grid-template-columns: 1fr;
	}
}
