/* Mobile footer navigation: 3 columns per screen width with horizontal scroll for the rest. */
@media (max-width: 990px) {
	.footer_navi {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		scrollbar-color: rgba(var(--savewave-rgb), 0.22) transparent;
		scroll-padding-inline: 14px;
		padding-left: 14px;
		padding-right: 14px;
		box-sizing: border-box;
	}

	.footer_navi::-webkit-scrollbar {
		height: 3px;
	}

	.footer_navi::-webkit-scrollbar-thumb {
		background: rgba(var(--savewave-rgb), 0.28);
		border-radius: 999px;
	}

	.footer_navi::-webkit-scrollbar-track {
		background: transparent;
	}

	.footer_navi_col {
		display: contents;
	}

	.footer_navi_col a,
	.footer_navi > .footer_unsubscribe {
		flex: 0 0 calc(100% / 3);
		min-width: 0;
		box-sizing: border-box;
		margin-left: 0;
		padding-left: 4px;
		padding-right: 4px;
		font-size: clamp(15px, 4.1vw, 22px);
		line-height: 1.25;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
