/**
 * GSEWS Theme - Footer Stylesheet
 *
 * @package GSEWS_Theme
 * @since 1.0.0
 */

/* ==========================================================
   01. FOOTER MAIN AREA
========================================================== */

.gsews-footer {
	position: relative;
	background: var(--gsews-heading);
	color: rgba(255, 255, 255, 0.78);
}

.gsews-footer a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.gsews-footer a:hover,
.gsews-footer a:focus {
	color: var(--gsews-white);
}

.gsews-footer-main {
	position: relative;
	padding: 82px 0 64px;
	background:
		radial-gradient(circle at top left, rgba(11, 87, 208, 0.25), transparent 34%),
		linear-gradient(135deg, #07111f 0%, #0f172a 55%, #101827 100%);
	overflow: hidden;
}

.gsews-footer-main::before {
	content: "";
	position: absolute;
	top: -140px;
	right: -140px;
	width: 320px;
	height: 320px;
	background: rgba(244, 180, 0, 0.12);
	border-radius: 50%;
	pointer-events: none;
}

.gsews-footer-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.35fr 0.85fr 0.95fr 1.15fr;
	gap: 42px;
	align-items: start;
}

.gsews-footer-column {
	min-width: 0;
}

/* ==========================================================
   02. FOOTER LOGO & ABOUT
========================================================== */

.gsews-footer-logo {
	margin-bottom: 22px;
}

.gsews-footer-logo .custom-logo-link {
	max-width: 260px;
}

.gsews-footer-logo .custom-logo {
	max-width: 240px;
	max-height: 72px;
	object-fit: contain;
}

.gsews-footer-logo .gsews-site-title {
	color: var(--gsews-white);
}

.gsews-footer-logo .gsews-site-title-sub {
	color: rgba(255, 255, 255, 0.88);
}

.gsews-footer-description {
	max-width: 430px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.96rem;
	line-height: 1.75;
}

.gsews-footer-tagline {
	display: inline-flex;
	align-items: center;
	margin: 4px 0 22px;
	padding: 8px 14px;
	background: rgba(244, 180, 0, 0.12);
	color: var(--gsews-accent);
	border: 1px solid rgba(244, 180, 0, 0.20);
	border-radius: var(--gsews-radius-pill);
	font-family: var(--gsews-font-heading);
	font-size: 0.94rem;
	font-weight: 700;
}

/* ==========================================================
   03. FOOTER SOCIAL
========================================================== */

.gsews-footer-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.gsews-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--gsews-white);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	font-family: var(--gsews-font-heading);
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1;
}

.gsews-footer-social a:hover,
.gsews-footer-social a:focus {
	background: var(--gsews-primary);
	border-color: var(--gsews-primary);
	transform: translateY(-2px);
}

/* ==========================================================
   04. FOOTER TITLES
========================================================== */

.gsews-footer-title,
.gsews-footer-widget-title {
	position: relative;
	margin-bottom: 22px;
	padding-bottom: 12px;
	color: var(--gsews-white);
	font-size: 1.18rem;
	font-weight: 700;
}

.gsews-footer-title::after,
.gsews-footer-widget-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 38px;
	height: 3px;
	background: var(--gsews-accent);
	border-radius: var(--gsews-radius-pill);
}

/* ==========================================================
   05. FOOTER MENUS
========================================================== */

.gsews-footer-menu,
.gsews-footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gsews-footer-menu li,
.gsews-footer-widget li {
	margin-bottom: 11px;
}

.gsews-footer-menu li:last-child,
.gsews-footer-widget li:last-child {
	margin-bottom: 0;
}

.gsews-footer-menu a,
.gsews-footer-widget a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.45;
}

.gsews-footer-menu a::before,
.gsews-footer-widget ul a::before {
	content: "";
	width: 6px;
	height: 6px;
	background: rgba(244, 180, 0, 0.85);
	border-radius: 50%;
	transition: var(--gsews-transition);
}

.gsews-footer-menu a:hover,
.gsews-footer-menu a:focus,
.gsews-footer-widget a:hover,
.gsews-footer-widget a:focus {
	color: var(--gsews-white);
	transform: translateX(3px);
}

.gsews-footer-menu a:hover::before,
.gsews-footer-widget ul a:hover::before {
	background: var(--gsews-white);
}

/* ==========================================================
   06. FOOTER CONTACT
========================================================== */

.gsews-footer-contact {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gsews-footer-contact li {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.95rem;
	line-height: 1.55;
}

.gsews-footer-contact li > span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--gsews-accent);
	border-radius: 50%;
	font-size: 0.82rem;
	line-height: 1;
}

.gsews-footer-contact a {
	color: rgba(255, 255, 255, 0.78);
	word-break: break-word;
}

.gsews-footer-contact a:hover,
.gsews-footer-contact a:focus {
	color: var(--gsews-white);
}

.gsews-footer-map-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	padding: 11px 18px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--gsews-white);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--gsews-radius-pill);
	font-family: var(--gsews-font-heading);
	font-size: 0.9rem;
	font-weight: 700;
}

.gsews-footer-map-link:hover,
.gsews-footer-map-link:focus {
	background: var(--gsews-accent);
	color: var(--gsews-heading);
	border-color: var(--gsews-accent);
	transform: translateY(-2px);
}

/* ==========================================================
   07. FOOTER WIDGET DEFAULTS
========================================================== */

.gsews-footer-widget {
	margin-bottom: 24px;
}

.gsews-footer-widget:last-child {
	margin-bottom: 0;
}

.gsews-footer-widget p {
	color: rgba(255, 255, 255, 0.74);
}

.gsews-footer-widget img {
	border-radius: var(--gsews-radius-md);
}

.gsews-footer-widget .wp-block-search__inside-wrapper {
	display: flex;
	gap: 8px;
}

.gsews-footer-widget input[type="search"],
.gsews-footer-widget input[type="text"],
.gsews-footer-widget input[type="email"],
.gsews-footer-widget textarea {
	background: rgba(255, 255, 255, 0.08);
	color: var(--gsews-white);
	border-color: rgba(255, 255, 255, 0.14);
}

.gsews-footer-widget input::placeholder,
.gsews-footer-widget textarea::placeholder {
	color: rgba(255, 255, 255, 0.52);
}

/* ==========================================================
   08. REGISTRATION BAR
========================================================== */

.gsews-footer-registration {
	padding: 16px 0;
	background: rgba(2, 6, 23, 0.96);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.gsews-footer-registration p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
	line-height: 1.6;
}

.gsews-footer-registration span {
	display: inline-flex;
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.36);
}

.gsews-footer-registration strong {
	color: var(--gsews-white);
	font-weight: 700;
}

/* ==========================================================
   09. FOOTER BOTTOM
========================================================== */

.gsews-footer-bottom {
	padding: 22px 0;
	background: #020617;
}

.gsews-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.gsews-copyright,
.gsews-footer-credit {
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.9rem;
	line-height: 1.5;
}

.gsews-footer-credit {
	text-align: right;
}

/* ==========================================================
   10. FLOATING WHATSAPP BUTTON
========================================================== */

.gsews-floating-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 26px;
	z-index: 998;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	background: #25d366;
	color: var(--gsews-white);
	border-radius: 50%;
	box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
	font-size: 1.55rem;
	line-height: 1;
	text-decoration: none;
	transition: var(--gsews-transition);
}

.gsews-floating-whatsapp:hover,
.gsews-floating-whatsapp:focus {
	background: #1ebe5d;
	color: var(--gsews-white);
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 20px 42px rgba(37, 211, 102, 0.42);
}

/* ==========================================================
   11. BACK TO TOP BUTTON
========================================================== */

.gsews-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 94px;
	z-index: 997;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	background: var(--gsews-white);
	color: var(--gsews-heading);
	border: 1px solid var(--gsews-border);
	border-radius: 50%;
	box-shadow: var(--gsews-shadow-md);
	font-size: 1.15rem;
	line-height: 1;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: var(--gsews-transition);
}

.gsews-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.gsews-back-to-top:hover,
.gsews-back-to-top:focus {
	background: var(--gsews-primary);
	color: var(--gsews-white);
	border-color: var(--gsews-primary);
	transform: translateY(-3px);
}

/* ==========================================================
   12. RESPONSIVE FOOTER
========================================================== */

@media (max-width: 1180px) {
	.gsews-footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr;
	}

	.gsews-footer-about {
		grid-column: 1 / -1;
	}

	.gsews-footer-description {
		max-width: 720px;
	}
}

@media (max-width: 900px) {
	.gsews-footer-main {
		padding: 68px 0 52px;
	}

	.gsews-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px;
	}

	.gsews-footer-about {
		grid-column: auto;
	}

	.gsews-footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.gsews-footer-credit {
		text-align: center;
	}
}

@media (max-width: 640px) {
	.gsews-footer-main {
		padding: 56px 0 44px;
	}

	.gsews-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.gsews-footer-title,
	.gsews-footer-widget-title {
		margin-bottom: 18px;
	}

	.gsews-footer-registration p {
		font-size: 0.84rem;
	}

	.gsews-footer-registration span {
		display: none;
	}

	.gsews-footer-registration strong {
		display: block;
		margin-top: 4px;
	}

	.gsews-floating-whatsapp {
		right: 18px;
		bottom: 20px;
		width: 54px;
		height: 54px;
		font-size: 1.45rem;
	}

	.gsews-back-to-top {
		right: 22px;
		bottom: 84px;
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 420px) {
	.gsews-footer-main {
		padding: 48px 0 38px;
	}

	.gsews-footer-description,
	.gsews-footer-contact li,
	.gsews-footer-menu a,
	.gsews-footer-widget a {
		font-size: 0.92rem;
	}

	.gsews-footer-bottom {
		padding: 18px 0;
	}

	.gsews-copyright,
	.gsews-footer-credit {
		font-size: 0.82rem;
	}
}

/* ==========================================================
   13. FOOTER LEGAL LINKS
========================================================== */

.gsews-footer-legal-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.88rem;
	line-height: 1.5;
}

.gsews-footer-legal-nav a {
	color: rgba(255, 255, 255, 0.68);
	font-weight: 600;
}

.gsews-footer-legal-nav a:hover,
.gsews-footer-legal-nav a:focus {
	color: var(--gsews-white);
}

.gsews-footer-legal-nav span {
	color: rgba(255, 255, 255, 0.34);
}

/* Footer bottom layout adjustment */

.gsews-footer-bottom-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 18px;
}

.gsews-footer-credit {
	justify-self: end;
}

.gsews-copyright {
	justify-self: start;
}

/* Responsive legal footer */

@media (max-width: 900px) {
	.gsews-footer-bottom-inner {
		grid-template-columns: 1fr;
		gap: 10px;
		text-align: center;
	}

	.gsews-copyright,
	.gsews-footer-credit,
	.gsews-footer-legal-nav {
		justify-self: center;
	}

	.gsews-footer-credit {
		text-align: center;
	}
}

@media (max-width: 420px) {
	.gsews-footer-legal-nav {
		font-size: 0.82rem;
	}
}

/* ==========================================================
   10. UPDATED FOOTER STRUCTURE v1.0.4
========================================================== */

.gsews-site-footer {
	position: relative;
	background: var(--gsews-heading);
	color: rgba(255, 255, 255, 0.78);
	overflow: hidden;
}

.gsews-site-footer::before {
	content: "";
	position: absolute;
	top: -180px;
	right: -160px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(244, 180, 0, 0.18), transparent 68%);
	pointer-events: none;
}

.gsews-site-footer::after {
	content: "";
	position: absolute;
	left: -160px;
	bottom: -180px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(11, 87, 208, 0.24), transparent 68%);
	pointer-events: none;
}

.gsews-footer-main,
.gsews-footer-middle,
.gsews-footer-bottom {
	position: relative;
	z-index: 1;
}

.gsews-footer-main {
	padding: 78px 0 52px;
}

.gsews-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
	gap: 42px;
	align-items: start;
}

.gsews-footer-column {
	min-width: 0;
}

.gsews-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	color: var(--gsews-white);
	text-decoration: none;
}

.gsews-footer-brand:hover,
.gsews-footer-brand:focus {
	color: var(--gsews-white);
}

.gsews-footer-brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 58px;
	height: 58px;
	background: var(--gsews-white);
	color: var(--gsews-primary);
	border-radius: 18px;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
	font-family: var(--gsews-font-heading);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.gsews-footer-brand-text {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.gsews-footer-brand-text strong {
	display: block;
	max-width: 330px;
	color: var(--gsews-white);
	font-family: var(--gsews-font-heading);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.28;
}

.gsews-footer-brand-text small {
	display: block;
	color: var(--gsews-accent);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.35;
}

.gsews-footer-description {
	max-width: 420px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.75;
}

.gsews-footer-registration {
	display: grid;
	gap: 6px;
	max-width: 440px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: var(--gsews-radius-md);
}

.gsews-footer-registration span {
	color: rgba(255, 255, 255, 0.70);
	font-size: 0.88rem;
	line-height: 1.55;
}

.gsews-footer-registration strong {
	color: var(--gsews-white);
	font-family: var(--gsews-font-heading);
	font-size: 1rem;
	line-height: 1.35;
}

.gsews-footer-title {
	margin: 0 0 22px;
	color: var(--gsews-white);
	font-size: 1.12rem;
	font-weight: 800;
}

.gsews-footer-menu {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gsews-footer-menu li {
	margin: 0;
}

.gsews-footer-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
	text-decoration: none;
	transition: var(--gsews-transition);
}

.gsews-footer-menu a::before {
	content: "";
	width: 0;
	height: 2px;
	margin-right: 0;
	background: var(--gsews-accent);
	border-radius: 999px;
	transition: var(--gsews-transition);
}

.gsews-footer-menu a:hover,
.gsews-footer-menu a:focus {
	color: var(--gsews-white);
	transform: translateX(3px);
}

.gsews-footer-menu a:hover::before,
.gsews-footer-menu a:focus::before {
	width: 14px;
	margin-right: 8px;
}

.gsews-footer-contact-list {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gsews-footer-contact-list li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin: 0;
}

.gsews-footer-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--gsews-accent);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 50%;
	font-size: 1rem;
	line-height: 1;
}

.gsews-footer-contact-list strong {
	display: block;
	margin-bottom: 4px;
	color: var(--gsews-white);
	font-family: var(--gsews-font-heading);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
}

.gsews-footer-contact-list span,
.gsews-footer-contact-list a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.6;
	word-break: break-word;
}

.gsews-footer-contact-list a:hover,
.gsews-footer-contact-list a:focus {
	color: var(--gsews-white);
}

.gsews-footer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.gsews-footer-actions .gsews-btn-primary {
	background: var(--gsews-accent);
	color: var(--gsews-heading);
	border-color: var(--gsews-accent);
}

.gsews-footer-actions .gsews-btn-primary:hover,
.gsews-footer-actions .gsews-btn-primary:focus {
	background: var(--gsews-white);
	color: var(--gsews-primary);
	border-color: var(--gsews-white);
}

.gsews-footer-actions .gsews-btn-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: var(--gsews-white);
	border-color: rgba(255, 255, 255, 0.16);
}

.gsews-footer-actions .gsews-btn-secondary:hover,
.gsews-footer-actions .gsews-btn-secondary:focus {
	background: var(--gsews-white);
	color: var(--gsews-primary);
	border-color: var(--gsews-white);
}

.gsews-footer-middle {
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.03);
}

.gsews-footer-middle-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.gsews-footer-social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.gsews-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: var(--gsews-radius-pill);
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
	transition: var(--gsews-transition);
}

.gsews-footer-social a:hover,
.gsews-footer-social a:focus {
	background: var(--gsews-accent);
	color: var(--gsews-heading);
	border-color: var(--gsews-accent);
	transform: translateY(-2px);
}

.gsews-footer-short-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.70);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: right;
}

.gsews-footer-bottom {
	padding: 22px 0;
}

.gsews-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.gsews-footer-copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.55;
}

.gsews-footer-legal-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px;
}

.gsews-footer-legal-nav a,
.gsews-footer-legal-nav span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
}

.gsews-footer-legal-nav a:hover,
.gsews-footer-legal-nav a:focus {
	color: var(--gsews-white);
}

/* Footer responsive */

@media (max-width: 1180px) {
	.gsews-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px;
	}
}

@media (max-width: 767px) {
	.gsews-footer-main {
		padding: 58px 0 42px;
	}

	.gsews-footer-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.gsews-footer-brand-text strong {
		max-width: 100%;
	}

	.gsews-footer-description,
	.gsews-footer-registration {
		max-width: 100%;
	}

	.gsews-footer-middle-inner,
	.gsews-footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.gsews-footer-short-text {
		text-align: left;
	}

	.gsews-footer-legal-nav {
		justify-content: flex-start;
	}

	.gsews-footer-actions {
		flex-direction: column;
	}

	.gsews-footer-actions .gsews-btn {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.gsews-footer-main {
		padding: 48px 0 36px;
	}

	.gsews-footer-brand {
		align-items: flex-start;
	}

	.gsews-footer-brand-mark {
		width: 50px;
		height: 50px;
		border-radius: 15px;
		font-size: 0.74rem;
	}

	.gsews-footer-brand-text strong {
		font-size: 0.9rem;
	}

	.gsews-footer-contact-list li {
		grid-template-columns: 1fr;
	}

	.gsews-footer-contact-icon {
		margin-bottom: 2px;
	}

	.gsews-footer-social a {
		width: 100%;
		justify-content: flex-start;
	}

	.gsews-footer-legal-nav {
		gap: 7px;
	}
}
