/**
 * WellLeaf footer — novarapeptide-style wave + info boxes layout.
 */
.wl-footer {
	--wl-footer-bg: #0f766e;
	--wl-footer-text: #fff;
	--wl-footer-accent: #99f6e4;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	box-sizing: border-box;
	background: var(--wl-footer-bg);
	color: var(--wl-footer-text);
	font-family: "Space Grotesk", system-ui, sans-serif;
}

.wl-footer a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease, opacity 0.15s ease;
}

.wl-footer a:hover,
.wl-footer a:focus-visible {
	color: var(--wl-footer-accent);
}

/* Wave divider (page → footer) */
.wl-footer__wave {
	display: block;
	width: 100%;
	line-height: 0;
	color: var(--wl-footer-bg);
	margin-top: -1px;
}

.wl-footer__wave svg {
	display: block;
	width: 100%;
	height: 50px;
}

/* Main content */
.wl-footer__main {
	max-width: 1288px;
	margin: 0 auto;
	padding: 36px 24px 48px;
}

.wl-footer__infoboxes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.wl-infobox {
	text-align: center;
}

.wl-infobox__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	color: var(--wl-footer-accent);
}

.wl-infobox__icon svg {
	display: block;
	width: 64px;
	height: 64px;
}

.wl-infobox__title {
	margin: 0 0 12px;
	font-family: Adieu, "Space Grotesk", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wl-footer-text);
}

.wl-infobox__body {
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.wl-infobox__body p {
	margin: 0;
}

.wl-infobox__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wl-infobox__socials {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.wl-infobox__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--wl-footer-accent);
	color: var(--wl-primary-deep, #134e4a);
}

.wl-infobox__social:hover,
.wl-infobox__social:focus-visible {
	background: var(--wl-accent-hover, #2dd4bf);
	color: var(--wl-primary-deep, #134e4a);
	transform: translateY(-1px);
}

.wl-infobox__social svg {
	width: 19px;
	height: 19px;
}

/* Bottom bar */
.wl-footer__bottom {
	max-width: 1288px;
	margin: 0 auto;
	padding: 0 24px 40px;
	text-align: center;
}

.wl-footer__divider {
	border: 0;
	height: 1px;
	margin: 32px auto 18px;
	max-width: 100%;
	background: rgba(255, 255, 255, 0.18);
}

.wl-footer__credit {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
	color: var(--wl-footer-text);
}

.wl-footer__credit strong {
	font-weight: 700;
}

@media screen and (max-width: 989px) {
	.wl-footer__infoboxes {
		grid-template-columns: 1fr;
		gap: 36px;
		max-width: 420px;
		margin: 0 auto;
	}
}

@media screen and (min-width: 990px) and (max-width: 1279px) {
	.wl-footer__infoboxes {
		gap: 20px;
	}
}
