/**
 * Footer component.
 */

.site-footer {
	background-color: var(--theme-footer-bg, #fff);
	text-align: center;
}

.site-footer a:not(.btn) {
	color: inherit;
}

.site-footer__main {
	padding: 3rem 0;
}

.site-footer__main-row {
	row-gap: 2rem;
}

.site-footer__menus {
	display: none;
}

.site-footer__menus-row {
	row-gap: 2rem;
}

.site-footer__brand-link {
	display: inline-flex;
	align-items: center;
	color: inherit;
	line-height: 1;
	text-decoration: none;
}

.site-footer__logo {
	display: block;
	width: var(--theme-footer-logo-width, 130px);
	max-width: min(100%, 400px);
	height: auto;
	max-height: 72px;
}

.site-footer__site-name {
	font-family: var(--theme-font-heading, inherit);
	font-size: 1.25rem;
	font-weight: var(--theme-font-heading-weight, 700);
	line-height: 1.1;
}

.site-footer__description {
	max-width: 22rem;
	margin: 1rem auto 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.site-footer__actions {
	margin-top: 1.5rem;
}

.site-footer__cta {
	max-width: 100%;
	white-space: normal;
}

.site-footer__nav {
	font-size: 0.95rem;
}

.site-footer__menu,
.site-footer__legal-links {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__menu {
	display: grid;
	gap: 0.85rem;
}

.site-footer__menu a {
	text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus {
	text-decoration: underline;
}

.site-footer__bottom {
	padding: 1.25rem 0;
	font-size: 0.8125rem;
	background-color: var(--theme-footer-credits-bg, var(--theme-footer-bg, #fff));
}

.site-footer__bottom-row {
	row-gap: 1rem;
	align-items: center;
}

.site-footer__legal-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.site-footer__copyright {
	margin: 0;
}

.site-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1rem;
}

.site-footer__legal-links a,
.site-footer__credit a {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.site-footer__legal-links a:hover,
.site-footer__legal-links a:focus,
.site-footer__credit a:hover,
.site-footer__credit a:focus {
	text-decoration: none;
}

.site-footer__credit {
	line-height: 1.5;
}

@media screen and (min-width: 992px) {
	.site-footer {
		text-align: left;
	}

	.site-footer__main {
		padding: 4rem 0;
	}

	.site-footer__main-row {
		--bs-gutter-x: 7rem;
	}

	.site-footer__description {
		margin-right: 0;
		margin-left: 0;
	}

	.site-footer__menus {
		display: flex;
		align-items: center;
	}

	.site-footer__menus-row {
		--bs-gutter-x: 2rem;
		width: 100%;
	}

	.site-footer__legal-area {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.site-footer__legal-links {
		justify-content: flex-start;
	}

	.site-footer__credit {
		text-align: right;
	}
}
