/* =========================================================================
   Voley PLT — footer
   ========================================================================= */

.voley-footer {
	background: var(--v-grey-50);
	border-top: 1px solid var(--v-line-soft);
}

/* Brand takes the slack so the link columns sit hard against the right edge. */
.voley-footer__main {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	gap: 40px 68px;
	padding-block: 60px 44px;
}

/* Brand column ------------------------------------------------------------ */
.voley-footer__logo {
	display: inline-flex;
	margin-bottom: 18px;
}

.voley-root .voley-footer__logo img {
	width: auto;
	height: 27px;
}

.voley-footer__wordmark {
	font-family: var(--v-font-display);
	font-size: 22px;
	font-style: italic;
	font-weight: 800;
	text-transform: uppercase;
}

.voley-footer__tagline {
	max-width: 32ch;
	font-size: var(--v-fs-sm);
	line-height: 1.65;
	color: var(--v-grey-600);
}

.voley-footer__address {
	margin-top: 14px;
	font-size: var(--v-fs-xs);
	letter-spacing: 0.02em;
	color: var(--v-grey-500);
}

.voley-socials {
	display: flex;
	gap: 8px;
	margin-top: 22px;
}

.voley-socials a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--v-line);
	border-radius: 50%;
	background: var(--v-white);
	color: var(--v-ink);
	transition: background-color 0.25s var(--v-ease), color 0.25s var(--v-ease), border-color 0.25s var(--v-ease);
}

.voley-socials a:hover {
	background: var(--v-ink);
	border-color: var(--v-ink);
	color: var(--v-white);
}

/* Link columns ------------------------------------------------------------ */
.voley-footer__title {
	margin-bottom: 16px;
	font-family: var(--v-font-body);
	font-size: var(--v-fs-xs);
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
	color: var(--v-ink);
}

.voley-footer__col ul {
	display: grid;
	gap: 11px;
}

.voley-footer__col a {
	font-size: var(--v-fs-sm);
	color: var(--v-grey-600);
	transition: color 0.2s var(--v-ease);
}

.voley-footer__col a:hover {
	color: var(--v-ink);
	text-decoration: underline;
	text-decoration-color: var(--v-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

/* Bottom bar -------------------------------------------------------------- */
.voley-footer__bar {
	background: var(--v-ink);
	border-top: 3px solid var(--v-accent);
	color: rgba(255, 255, 255, 0.62);
}

.voley-footer__barinner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 16px;
	font-size: var(--v-fs-xs);
}

.voley-footer__barinner ul {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

.voley-footer__barinner a:hover {
	color: var(--v-white);
}

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1080px) {
	.voley-footer__main {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 34px 30px;
	}

	.voley-footer__brand {
		grid-column: span 3;
	}
}

@media (max-width: 700px) {
	.voley-footer__main {
		grid-template-columns: 1fr 1fr;
		padding-block: 44px 34px;
	}

	.voley-footer__brand {
		grid-column: span 2;
	}

	.voley-footer__barinner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.voley-footer__barinner ul {
		gap: 16px;
	}
}
