/**********************************************************
// Footer >> Main
**********************************************************/
.Footer {
	padding: var(--40px) 0 0 0;
	background: var(--Color-Green);
	color: var(--Color-White);
	}

.Footer a {
	transition: 0.2s color ease-in-out;
	color: var(--Color-White);
	}

.Footer a:hover,
.Footer a:focus { color: var(--Color-Yellow); }

/**********************************************************
// Footer >> Top
**********************************************************/
.Footer-Top {
	margin: 0 auto var(--30px) auto;
	padding: 0 var(--20px);
	width: 100%;
	max-width: 82.5rem;
	display: flex;
	gap: var(--20px);
	}

.Footer-Top-Left {
	margin: 0;
	flex: 1;
	}

.Footer-Top-Right {
	margin-left: auto;
	width: 60%;
	display: flex;
	}

/**********************************************************
// Footer >> Logo
**********************************************************/
.Footer-Logo {
	line-height: 0;
	font-size: 0;
	}

.Footer-Logo img {
	width: auto;
	height: auto;
	max-height: var(--40px);
	}

/**********************************************************
// Footer >> Nav
**********************************************************/
.Footer-Nav ul {
	-webkit-columns: 2;
	   -moz-columns: 2;
			columns: 2;
	}

.Footer-Nav li {
	padding: var(--3px) 0;
	letter-spacing: 0.5px;
	line-height: 1.3em;
	font-weight: 500;
	}

/**********************************************************
// Footer >> Social
**********************************************************/
.Footer-Social { margin-left: var(--40px); }
.Footer-Social li {
	padding: var(--3px) 0;
	letter-spacing: 0.5px;
	line-height: 1.3em;
	font-weight: 500;
	}

.Footer-Social li i {
	margin-right: var(--5px);
	width: var(--22px);
	text-align: center;
	}

/**********************************************************
// Footer >> Feed
**********************************************************/
.Footer-Feed {
	padding-bottom: var(--10px);
	width: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	}

.Footer-Feed-Left {
	margin: 0;
	padding: var(--20px);
	width: 25%;
	}

.Footer-Feed-Main {
	margin-left: auto;
	flex: 1;
	}

.Footer-Feed-Placeholder {
	width: 100%;
	height: var(--200px);
	background: rgba(0, 0, 0, 0.05);
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: var(--1px);
	font-weight: 300;
	font-size: var(--10px);
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: center;
	}

.Footer-Feed-Left p {
	line-height: 1.5em;
	font-weight: 500;
	display: block;
	}

.Footer-Feed-Left a {
	margin-top: var(--15px);
	padding: var(--12px) var(--15px);
	border-radius: var(--5px);
	background: var(--Color-Yellow);
	color: var(--Color-Dark);
	text-transform: uppercase;
	letter-spacing: var(--1px);
	font-weight: 700;
	font-size: var(--16px);
	transition-property: color, background;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	display: inline-block;
	}

.Footer-Feed-Left a:hover,
.Footer-Feed-Left a:focus {
	background: var(--Color-Dark-Green);
	color: var(--Color-White);
	}

/**********************************************************
// Footer >> Meta
**********************************************************/
.Footer-Meta {
	padding: var(--20px);
	line-height: 1.5em;
	text-transform: uppercase;
	letter-spacing: var(--1px);
	font-family: var(--Font-Narrow);
	font-weight: 500;
	font-size: var(--10px);
	background: var(--Color-Light-Green);
	}

.Footer-Meta a:hover,
.Footer-Meta a:focus { color: var(--Color-Dark-Green); }

.Footer-Meta-Inner {
	margin: auto;
	width: 100%;
	max-width: var(--1280px);
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	}

.Footer-Meta-Left {
	flex: 1;
	}

.Footer-Meta-Right {
	margin-left: auto;
	}

.Footer-Meta-Nav li {
	margin: 0 var(--5px);
	display: inline-block;
	}

.Footer-Meta-Nav li:first-child { margin-left: 0; }
.Footer-Meta-Nav li:last-child { margin-right: 0; }

/**********************************************************
// Media Queries
**********************************************************/
@media /* 1150px */
all and (max-width: 71.875rem),
all and (max-device-width: 71.875rem)
{
	.Footer-Logo img { max-height: var(--30px); }
}

@media /* 1024px */
all and (max-width: 64rem),
all and (max-device-width: 64rem)
{
	.Footer-Top { display: block; }
	.Footer-Top-Left {
		margin: auto;
		width: 100%;
		text-align: center;
		}

	.Footer-Top-Right {
		margin: var(--30px) auto 0 auto;
		width: 100%;
		justify-content: center;
		}

	.Footer-Feed { display: block; }
	.Footer-Feed-Left {
		margin: auto;
		width: 100%;
		}

	.Footer-Feed-Main { margin: auto; }
}

@media /* 768px */
all and (max-width: 48rem),
all and (max-device-width: 48rem)
{
	.Footer-Top-Right { display: block; }
	.Footer-Nav {
		margin: auto;
		width: 100%;
		display: flex;
		justify-content: center;
		}

	.Footer-Social {
		margin: var(--30px) auto 0 auto;
		display: flex;
		justify-content: center;
		}

	.Footer-Meta-Inner {
		text-align: center;
		display: block;
		}

	.Footer-Meta-Left {
		margin-top: var(--15px);
		flex: 1;
		}

	.Footer-Meta-Right { margin: auto; }
}

@media /* 360px */
all and (max-width: 22.5rem),
all and (max-device-width: 22.5rem)
{
	.Footer-Nav ul {
		text-align: center;
		-webkit-columns: 1;
		   -moz-columns: 1;
				columns: 1;
		}
}
