/*
Theme Name: Bright Parcel Journal
Author: Mara Field Studio
Description: A classic PHP WordPress theme for airy shopping guides, visual comparison cards, and mobile-first editorial publishing.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: sys-theme
*/

:root {
	--sys-black: #1d1d1d;
	--sys-ink: #2f363c;
	--sys-muted: #4d585f;
	--sys-soft: #edf1f4;
	--sys-soft-strong: #dde5ed;
	--sys-white: #ffffff;
	--sys-blue: #3b82f6;
	--sys-blue-deep: #2563eb;
	--sys-lime: #b8ef3d;
	--sys-lime-soft: #effbd1;
	--sys-green: #10b981;
	--sys-shadow: 0 24px 70px rgba(29, 29, 29, 0.14);
	--sys-shadow-soft: 0 18px 45px rgba(77, 88, 95, 0.13);
	--sys-radius-large: 28px;
	--sys-radius-card: 22px;
	--sys-radius-pill: 999px;
	--sys-font: "Inter", "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

.sys-site {
	margin: 0;
	overflow-x: hidden;
	color: var(--sys-muted);
	background: var(--sys-white);
	font-family: var(--sys-font);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

.sys-site img {
	display: block;
	max-width: 100%;
	height: auto;
}

.sys-site a {
	color: inherit;
	text-decoration: none;
}

.sys-screen-reader-text,
.sys-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sys-skip-link:focus {
	z-index: 99999;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	color: var(--sys-white);
	background: var(--sys-black);
	border-radius: 12px;
}

.sys-header {
	position: fixed;
	z-index: 1000;
	top: 10px;
	left: 0;
	right: 0;
	padding: 0 18px;
	pointer-events: none;
}

.sys-nav-shell {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	width: min(100%, 980px);
	min-height: 60px;
	margin: 0 auto;
	padding: 7px 12px 7px 16px;
	pointer-events: auto;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(221, 229, 237, 0.95);
	border-radius: 18px;
	box-shadow: 0 14px 40px rgba(29, 29, 29, 0.18);
	backdrop-filter: blur(20px);
}

.sys-brand,
.sys-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	color: var(--sys-black);
	font-weight: 800;
}

.sys-brand-text {
	max-width: 300px;
	overflow: hidden;
	font-size: 1.38rem;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sys-brand-mark {
	position: relative;
	display: inline-grid;
	place-items: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	background: var(--sys-black);
	border-radius: 10px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sys-brand-logo {
	width: 34px;
	height: 34px;
	object-fit: contain;
	border-radius: 10px;
}

.sys-brand-spark,
.sys-brand-spark::before,
.sys-brand-spark::after {
	position: absolute;
	display: block;
	background: var(--sys-white);
	content: "";
}

.sys-brand-spark {
	width: 15px;
	height: 15px;
	clip-path: polygon(50% 0, 62% 33%, 100% 38%, 68% 58%, 76% 100%, 50% 76%, 24% 100%, 32% 58%, 0 38%, 38% 33%);
}

.sys-brand-spark::before,
.sys-brand-spark::after {
	width: 5px;
	height: 5px;
	border-radius: 50%;
}

.sys-brand-spark::before {
	top: -3px;
	left: -6px;
}

.sys-brand-spark::after {
	right: -7px;
	bottom: -2px;
}

.sys-navigation {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.sys-menu,
.sys-footer-menu {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.sys-menu-link {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: var(--sys-ink);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.55;
	transition: color 180ms ease, transform 180ms ease;
}

.sys-menu-link:hover,
.sys-menu-link:focus {
	color: var(--sys-blue-deep);
	transform: translateY(-1px);
}

.sys-menu-item-current > .sys-menu-link {
	color: var(--sys-blue-deep);
}

.sys-menu-item-parent {
	position: relative;
}

.sys-sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	display: grid;
	min-width: 190px;
	padding: 10px;
	margin: 0;
	list-style: none;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(221, 229, 237, 0.95);
	border-radius: 16px;
	box-shadow: var(--sys-shadow-soft);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.sys-menu-item-parent:hover > .sys-sub-menu,
.sys-menu-item-parent:focus-within > .sys-sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.sys-sub-menu .sys-menu-link {
	justify-content: flex-start;
	width: 100%;
	padding: 0 12px;
	border-radius: 12px;
}

.sys-header-cta,
.sys-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 24px;
	font-weight: 800;
	line-height: 1;
	border-radius: var(--sys-radius-pill);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sys-header-cta {
	min-width: max-content;
	color: var(--sys-white);
	background: linear-gradient(180deg, #444 0%, var(--sys-black) 100%);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 12px 28px rgba(29, 29, 29, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
	font-size: 0.98rem;
}

.sys-header-cta > span:first-child,
.sys-button-primary > span:first-child {
	color: var(--sys-white);
}

.sys-header-cta:hover,
.sys-header-cta:focus,
.sys-button:hover,
.sys-button:focus {
	transform: translateY(-2px);
}

.sys-cta-dot,
.sys-button-icon {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	color: var(--sys-black);
	background: var(--sys-white);
	border-radius: 50%;
	font-size: 0.9rem;
}

.sys-menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	color: var(--sys-black);
	background: var(--sys-soft);
	border: 0;
	border-radius: 14px;
	cursor: pointer;
}

.sys-menu-toggle-line {
	display: block;
	width: 19px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	border-radius: 2px;
}

.sys-main {
	overflow-x: hidden;
	min-height: 70vh;
}

.sys-hero {
	position: relative;
	overflow: hidden;
	min-height: 1120px;
	padding: 210px 18px 110px;
	background-color: #b7daf6;
	background-image:
		linear-gradient(180deg, rgba(126, 184, 235, 0.44) 0%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.92) 100%),
		var(--sys-hero-image);
	background-position: center top, center top;
	background-size: cover, cover;
}

.sys-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.22) 58%, rgba(255, 255, 255, 0.98) 100%),
		radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 44%);
	pointer-events: none;
}

.sys-hero-inner {
	position: relative;
	z-index: 1;
	width: min(100%, 1200px);
	margin: 0 auto;
	text-align: center;
}

.sys-post-chip,
.sys-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 15px;
	color: var(--sys-ink);
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(221, 229, 237, 0.88);
	border-radius: var(--sys-radius-pill);
	box-shadow: 0 8px 22px rgba(77, 88, 95, 0.08);
	font-size: 0.88rem;
	font-weight: 700;
}

.sys-hero-copy {
	width: min(100%, 980px);
	margin: 0 auto;
}

.sys-hero-title {
	max-width: 940px;
	margin: 0 auto;
	color: var(--sys-black);
	font-size: clamp(3.45rem, 8vw, 6.85rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.96;
}

.sys-hero-description {
	width: min(100%, 560px);
	margin: 24px auto 0;
	color: var(--sys-muted);
	font-size: clamp(1rem, 2vw, 1.22rem);
	font-weight: 500;
	line-height: 1.42;
}

.sys-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 38px;
}

.sys-button-primary {
	color: var(--sys-white);
	background: linear-gradient(180deg, #6da0ff 0%, var(--sys-blue) 100%);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 18px 34px rgba(59, 130, 246, 0.34), inset 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.sys-button-secondary {
	color: var(--sys-black);
	background: var(--sys-white);
	border: 1px solid rgba(221, 229, 237, 0.9);
	box-shadow: var(--sys-shadow-soft);
}

.sys-proof-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 34px;
	color: var(--sys-muted);
	font-weight: 700;
}

.sys-proof-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.sys-proof-item::before {
	width: 12px;
	height: 12px;
	background: var(--sys-lime);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(184, 239, 61, 0.26);
	content: "";
}

.sys-proof-divider {
	width: 1px;
	height: 22px;
	background: rgba(29, 29, 29, 0.2);
}

.sys-visual-stage {
	position: relative;
	display: grid;
	grid-template-columns: 0.55fr minmax(0, 1.9fr) 0.55fr;
	align-items: end;
	gap: 26px;
	margin-top: 70px;
}

.sys-dashboard-card {
	position: relative;
	z-index: 2;
	overflow: visible;
	border-radius: var(--sys-radius-large);
}

.sys-dashboard-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border: 12px solid rgba(255, 255, 255, 0.82);
	border-radius: var(--sys-radius-large);
	box-shadow: var(--sys-shadow);
}

.sys-mosaic {
	overflow: hidden;
	align-self: center;
	min-height: 430px;
	border: 12px solid rgba(255, 255, 255, 0.68);
	border-radius: var(--sys-radius-large);
	box-shadow: var(--sys-shadow-soft);
}

.sys-mosaic img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.sys-mosaic-left {
	transform: translateX(-42px) translateY(36px);
}

.sys-mosaic-right {
	transform: translateX(42px) translateY(64px);
}

.sys-mini-card {
	position: absolute;
	display: grid;
	gap: 4px;
	min-width: 174px;
	padding: 20px;
	text-align: left;
	border-radius: 20px;
	box-shadow: 0 18px 42px rgba(29, 29, 29, 0.22);
}

.sys-mini-card strong {
	font-size: 1.28rem;
	line-height: 1.1;
}

.sys-mini-kicker {
	font-size: 0.84rem;
	font-weight: 700;
	opacity: 0.78;
}

.sys-mini-card-dark {
	right: 32px;
	bottom: 28px;
	color: var(--sys-white);
	background: rgba(2, 20, 15, 0.9);
	border: 1px solid rgba(16, 185, 129, 0.34);
}

.sys-mini-card-lime {
	left: 38px;
	bottom: -26px;
	color: var(--sys-black);
	background: var(--sys-lime);
	border: 1px solid rgba(255, 255, 255, 0.7);
}

.sys-post-section {
	position: relative;
	overflow: hidden;
	padding: 48px 18px 116px;
	background:
		linear-gradient(180deg, var(--sys-white) 0%, var(--sys-soft) 100%);
}

.sys-section-inner {
	width: min(100%, 1200px);
	margin: 0 auto;
}

.sys-section-heading {
	display: grid;
	justify-items: center;
	gap: 14px;
	margin-bottom: 34px;
	text-align: center;
}

.sys-section-title {
	max-width: 680px;
	margin: 0;
	color: var(--sys-black);
	font-size: clamp(2.3rem, 5vw, 4.25rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.04;
}

.sys-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.sys-post-card {
	position: relative;
	overflow: hidden;
	min-width: 0;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(221, 229, 237, 0.9);
	border-radius: var(--sys-radius-card);
	box-shadow: 0 16px 38px rgba(77, 88, 95, 0.1);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sys-post-card:hover,
.sys-post-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(184, 239, 61, 0.72);
	box-shadow: 0 26px 58px rgba(77, 88, 95, 0.16);
}

.sys-post-link {
	display: grid;
	min-height: 100%;
	color: inherit;
}

.sys-post-media {
	position: relative;
	overflow: hidden;
	display: block;
	aspect-ratio: 1.42 / 1;
	background: var(--sys-soft);
}

.sys-post-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 280ms ease;
}

.sys-post-card:hover .sys-post-image,
.sys-post-card:focus-within .sys-post-image {
	transform: scale(1.035);
}

.sys-post-content {
	display: grid;
	gap: 13px;
	padding: 22px;
}

.sys-post-meta,
.sys-single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: var(--sys-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.sys-post-chip {
	min-height: 30px;
	padding: 0 12px;
	background: var(--sys-lime-soft);
	border-color: rgba(184, 239, 61, 0.7);
	box-shadow: none;
}

.sys-post-title {
	margin: 0;
	color: var(--sys-black);
	font-size: 1.35rem;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.14;
}

.sys-post-excerpt {
	display: block;
	color: var(--sys-muted);
	font-weight: 500;
	line-height: 1.55;
}

.sys-empty-state {
	display: grid;
	justify-items: center;
	gap: 16px;
	width: min(100%, 720px);
	margin: 0 auto;
	padding: 28px;
	text-align: center;
	background: var(--sys-white);
	border: 1px solid rgba(221, 229, 237, 0.9);
	border-radius: var(--sys-radius-card);
	box-shadow: var(--sys-shadow-soft);
}

.sys-empty-image {
	width: min(100%, 440px);
	aspect-ratio: 1.5 / 1;
	object-fit: cover;
	border-radius: 18px;
}

.sys-empty-title {
	margin: 0;
	color: var(--sys-black);
	font-size: 2rem;
	line-height: 1.1;
}

.sys-empty-text {
	max-width: 480px;
	margin: 0;
}

.sys-single {
	padding: 150px 0 96px;
	background:
		linear-gradient(180deg, rgba(237, 241, 244, 0.85) 0%, rgba(255, 255, 255, 1) 380px),
		url("assets/images/hero-shopping.png") center top / cover no-repeat;
}

.sys-single-inner {
	width: min(80vw, 980px);
	margin: 0 auto;
}

.sys-back-link {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	margin-bottom: 24px;
	padding: 0 16px;
	color: var(--sys-black);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(221, 229, 237, 0.95);
	border-radius: var(--sys-radius-pill);
	box-shadow: var(--sys-shadow-soft);
	font-weight: 800;
}

.sys-single-header {
	padding: clamp(28px, 6vw, 58px);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(221, 229, 237, 0.95);
	border-radius: var(--sys-radius-large);
	box-shadow: var(--sys-shadow-soft);
}

.sys-single-title {
	margin: 18px 0 0;
	color: var(--sys-black);
	font-size: clamp(2.6rem, 7vw, 5.5rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
}

.sys-single-excerpt {
	max-width: 720px;
	margin: 22px 0 0;
	color: var(--sys-muted);
	font-size: 1.15rem;
	font-weight: 550;
}

.sys-single-content {
	margin-top: 34px;
	color: var(--sys-ink);
	font-size: 1.08rem;
}

.sys-single-content > * {
	margin-top: 0;
	margin-bottom: 1.25em;
}

.sys-single-content h2,
.sys-single-content h3,
.sys-single-content h4 {
	margin-top: 1.55em;
	color: var(--sys-black);
	line-height: 1.12;
}

.sys-single-content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

.sys-single-content h3 {
	font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.sys-single-content a {
	color: var(--sys-blue-deep);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.sys-single-content blockquote {
	margin-left: 0;
	padding: 22px 26px;
	color: var(--sys-black);
	background: var(--sys-lime-soft);
	border-left: 6px solid var(--sys-lime);
	border-radius: 18px;
	font-size: 1.18rem;
	font-weight: 700;
}

.sys-single-content img {
	border-radius: 20px;
	box-shadow: var(--sys-shadow-soft);
}

.sys-page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 28px;
	font-weight: 800;
}

.sys-adjacent {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 52px;
}

.sys-adjacent-link {
	display: grid;
	gap: 6px;
	min-height: 108px;
	padding: 22px;
	background: var(--sys-soft);
	border: 1px solid rgba(221, 229, 237, 0.95);
	border-radius: 20px;
}

.sys-adjacent-link span {
	color: var(--sys-muted);
	font-size: 0.88rem;
	font-weight: 800;
	text-transform: uppercase;
}

.sys-adjacent-link strong {
	color: var(--sys-black);
	line-height: 1.2;
}

.sys-footer {
	padding: 50px 18px;
	background: var(--sys-black);
}

.sys-footer-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 22px;
	width: min(100%, 1200px);
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.72);
}

.sys-footer-brand {
	color: var(--sys-white);
}

.sys-footer-title {
	font-weight: 900;
	font-size: 1.12rem;
}

.sys-footer-menu {
	gap: 18px;
}

.sys-footer-menu .sys-menu-link {
	color: rgba(255, 255, 255, 0.78);
}

.sys-footer-copy {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 0.94rem;
}

@media (max-width: 980px) {
	.sys-nav-shell {
		width: min(100%, 720px);
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.sys-navigation {
		position: absolute;
		z-index: 20;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		display: none;
		padding: 10px;
		background: rgba(255, 255, 255, 0.99);
		border: 1px solid rgba(221, 229, 237, 0.95);
		border-radius: 20px;
		box-shadow: var(--sys-shadow-soft);
	}

	.sys-menu-open .sys-navigation {
		display: block;
	}

	.sys-menu {
		display: grid;
		gap: 4px;
	}

	.sys-sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		padding: 2px 0 6px 14px;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.sys-menu-link {
		justify-content: center;
		width: 100%;
		border-radius: 14px;
	}

	.sys-menu-link:hover,
	.sys-menu-link:focus {
		background: var(--sys-soft);
		transform: none;
	}

	.sys-menu-toggle {
		display: block;
	}

	.sys-header-cta {
		display: none;
	}

	.sys-brand-text {
		max-width: 50vw;
	}

	.sys-hero {
		min-height: auto;
		padding-top: 172px;
	}

	.sys-visual-stage {
		grid-template-columns: 1fr;
		width: min(100%, 760px);
		margin-inline: auto;
	}

	.sys-mosaic {
		display: none;
	}

	.sys-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.sys-header {
		top: 10px;
		padding: 0 10px;
	}

	.sys-nav-shell {
		min-height: 64px;
		padding: 8px 10px;
		border-radius: 18px;
	}

	.sys-brand-mark {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
	}

	.sys-brand-text {
		font-size: 1.08rem;
	}

	.sys-hero {
		padding: 150px 14px 72px;
		background-position: center top;
	}

	.sys-hero-title {
		font-size: clamp(3rem, 17vw, 4.45rem);
	}

	.sys-hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: min(100%, 330px);
		margin-inline: auto;
	}

	.sys-button {
		width: 100%;
	}

	.sys-proof-row {
		display: grid;
		gap: 10px;
		justify-items: center;
	}

	.sys-proof-divider {
		display: none;
	}

	.sys-dashboard-image {
		border-width: 7px;
		border-radius: 22px;
	}

	.sys-mini-card {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		display: inline-grid;
		width: calc(50% - 7px);
		min-width: 0;
		margin-top: 14px;
		padding: 16px;
		vertical-align: top;
	}

	.sys-mini-card-lime {
		margin-left: 10px;
	}

	.sys-post-section {
		padding-top: 28px;
	}

	.sys-post-grid {
		grid-template-columns: 1fr;
	}

	.sys-post-content {
		padding: 20px;
	}

	.sys-single {
		padding-top: 118px;
	}

	.sys-single-inner {
		width: 80vw;
	}

	.sys-single-header {
		padding: 24px;
		border-radius: 22px;
	}

	.sys-single-title {
		font-size: clamp(2.35rem, 13vw, 3.5rem);
	}

	.sys-adjacent {
		grid-template-columns: 1fr;
	}

	.sys-footer-inner {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.sys-footer-menu {
		flex-wrap: wrap;
	}
}
