:root {
	--gl-yellow: #ffbd00;
	--gl-yellow-soft: #fff4cf;
	--gl-ink: #121417;
	--gl-muted: #697078;
	--gl-line: #e7e8ea;
	--gl-surface: #f7f7f7;
	--gl-blue: #3478bd;
	--gl-danger: #e4312b;
	--gl-radius: 8px;
	--gl-shadow: 0 4px 18px rgba(20, 24, 28, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.goodlife-theme {
	margin: 0;
	background: #fff;
	color: var(--gl-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

.goodlife-theme a {
	color: inherit;
	text-decoration: none;
}

.goodlife-theme img {
	display: block;
	max-width: 100%;
}

.goodlife-theme button,
.goodlife-theme input {
	font: inherit;
}

.goodlife-theme svg {
	width: 1.4em;
	height: 1.4em;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.goodlife-theme svg .fill {
	fill: currentColor;
	stroke: none;
}

.gl-container {
	width: min(1280px, calc(100% - 48px));
	margin-inline: auto;
}

.gl-topbar {
	background: #f5f5f5;
	border-bottom: 1px solid #ededed;
	color: #555b60;
	font-size: 13px;
}

.gl-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 35px;
}

.gl-topbar p {
	margin: 0;
}

.gl-utility-menu {
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gl-masthead {
	background: #fff;
}

.gl-masthead__inner {
	display: grid;
	grid-template-columns: 250px minmax(280px, 1fr) auto;
	gap: 42px;
	align-items: center;
	min-height: 100px;
}

.gl-brand__fallback {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.gl-brand__mark {
	display: grid;
	width: 47px;
	height: 47px;
	place-items: center;
	color: var(--gl-yellow);
}

.gl-brand__mark svg {
	width: 43px;
	height: 43px;
	stroke-width: 1.6;
}

.gl-brand__fallback strong,
.gl-brand__fallback small {
	display: block;
}

.gl-brand__fallback strong {
	font-size: 21px;
	line-height: 1.25;
}

.gl-brand__fallback small {
	margin-top: 3px;
	color: var(--gl-muted);
	font-size: 10px;
}

.custom-logo-link img {
	width: auto;
	max-width: 240px;
	max-height: 72px;
}

.gl-search {
	display: flex;
	height: 48px;
	overflow: hidden;
	border: 1px solid var(--gl-line);
	border-radius: 6px;
	background: #fff;
}

.gl-search input {
	flex: 1;
	min-width: 0;
	padding: 0 18px;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
}

.gl-search button {
	display: grid;
	width: 58px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 0;
	background: var(--gl-yellow);
	color: #111;
	cursor: pointer;
}

.gl-header-actions {
	display: flex;
	gap: 25px;
}

.gl-header-actions > a {
	display: grid;
	justify-items: center;
	gap: 4px;
	font-size: 12px;
	white-space: nowrap;
}

.gl-header-actions svg {
	width: 27px;
	height: 27px;
}

.gl-primary-nav {
	position: relative;
	z-index: 30;
	background: #111417;
	color: #fff;
}

.gl-primary-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	min-height: 56px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gl-primary-menu > li {
	position: relative;
}

.gl-primary-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 56px;
	padding: 0 30px;
	font-weight: 700;
}

.gl-primary-menu > li.current-menu-item > a,
.gl-primary-menu > li > a:hover {
	color: var(--gl-yellow);
}

.gl-primary-menu > li.current-menu-item > a::after {
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	height: 3px;
	background: var(--gl-yellow);
	content: "";
}

.gl-primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	min-width: 210px;
	margin: 0;
	padding: 10px 0;
	border-radius: 0 0 6px 6px;
	background: #181c20;
	box-shadow: var(--gl-shadow);
	list-style: none;
}

.gl-primary-menu li:hover > .sub-menu,
.gl-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.gl-primary-menu .sub-menu a {
	display: block;
	padding: 10px 22px;
}

.gl-primary-menu .sub-menu a:hover {
	color: var(--gl-yellow);
}

.gl-menu-toggle {
	display: none;
	padding: 8px;
	border: 0;
	background: transparent;
	color: #111;
}

.gl-menu-toggle__close {
	display: none;
}

.gl-menu-toggle[aria-expanded="true"] .gl-menu-toggle__open {
	display: none;
}

.gl-menu-toggle[aria-expanded="true"] .gl-menu-toggle__close {
	display: block;
}

.gl-hero {
	position: relative;
	height: 490px;
	overflow: hidden;
	background: #f2ece4;
}

.gl-hero__slides,
.gl-hero__slide {
	height: 100%;
}

.gl-hero__slide {
	position: absolute;
	inset: 0;
	visibility: hidden;
	background-color: #f2ece4;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.gl-hero__slide.is-active {
	visibility: visible;
	opacity: 1;
}

.gl-hero__content {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.gl-kicker {
	display: inline-block;
	margin-bottom: 18px;
	padding: 6px 13px;
	border-radius: 5px;
	background: #ffd45c;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.gl-hero h1 {
	max-width: 670px;
	margin: 0;
	font-size: clamp(40px, 4.5vw, 64px);
	line-height: 1.15;
	letter-spacing: 0.02em;
}

.gl-hero__description {
	margin: 15px 0 24px;
	font-size: 20px;
}

.gl-hero__benefits {
	display: flex;
	gap: 30px;
	margin-bottom: 28px;
}

.gl-hero__benefits span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
}

.gl-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
	border: 0;
	border-radius: 5px;
	background: var(--gl-yellow);
	color: #111;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.gl-button:hover {
	background: #ffc928;
	color: #111;
	transform: translateY(-1px);
}

.gl-slider-dots {
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 18px;
	left: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.gl-slider-dots button {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.gl-slider-dots button.is-active {
	background: #fff;
}

.gl-category-section {
	padding: 30px 0 0;
}

.gl-category-strip {
	display: grid;
	grid-template-columns: repeat(9, minmax(80px, 1fr));
	gap: 14px;
	padding: 20px 18px;
	border: 1px solid var(--gl-line);
	border-radius: var(--gl-radius);
	box-shadow: 0 3px 12px rgba(30, 35, 40, 0.05);
}

.gl-category {
	display: grid;
	justify-items: center;
	gap: 10px;
	min-width: 0;
	text-align: center;
}

.gl-category__image {
	display: grid;
	width: 80px;
	height: 80px;
	overflow: hidden;
	place-items: center;
	border-radius: 50%;
	background: #f4f4f4;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gl-category:hover .gl-category__image {
	box-shadow: var(--gl-shadow);
	transform: translateY(-3px);
}

.gl-category__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gl-category__image svg {
	width: 36px;
	height: 36px;
}

.gl-category strong {
	overflow: hidden;
	font-size: 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gl-service-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 24px;
	background: #fafafa;
}

.gl-service-strip > div {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 20px 28px;
}

.gl-service-strip > div + div {
	border-left: 1px solid var(--gl-line);
}

.gl-service-strip > div > span {
	display: grid;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	place-items: center;
	border-radius: 10px;
	background: var(--gl-yellow-soft);
	color: #efab00;
}

.gl-service-strip p,
.gl-service-strip strong,
.gl-service-strip small {
	display: block;
	margin: 0;
}

.gl-service-strip small {
	color: var(--gl-muted);
}

.gl-section {
	padding: 52px 0;
}

.gl-section--bordered {
	border-top: 1px solid var(--gl-line);
}

.gl-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.gl-section-heading h2 {
	margin: 0;
	font-size: 28px;
}

.gl-section-heading > a,
.gl-text-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--gl-blue);
	font-size: 14px;
	font-weight: 700;
}

.gl-section-heading svg,
.gl-text-link svg {
	width: 16px;
	height: 16px;
}

.gl-product-slider-wrap {
	position: relative;
}

.gl-product-slider {
	display: grid;
	grid-auto-columns: calc((100% - 70px) / 6);
	grid-auto-flow: column;
	gap: 14px;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.gl-product-slider::-webkit-scrollbar {
	display: none;
}

.gl-product-card {
	overflow: hidden;
	border: 1px solid var(--gl-line);
	border-radius: 6px;
	background: #fff;
	scroll-snap-align: start;
}

.gl-product-card__image {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f4f4f4;
}

.gl-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gl-product-card:hover .gl-product-card__image img {
	transform: scale(1.035);
}

.gl-badge {
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--gl-danger);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.gl-product-card__body {
	padding: 14px;
}

.gl-product-card h3 {
	min-height: 45px;
	margin: 0 0 7px;
	font-size: 15px;
	line-height: 1.45;
}

.gl-product-card__price {
	color: var(--gl-danger);
	font-weight: 800;
}

.gl-product-card__price del {
	color: #8a8f94;
	font-size: 12px;
	font-weight: 400;
}

.gl-product-card__rating {
	display: flex;
	align-items: center;
	gap: 5px;
	min-height: 24px;
	margin-top: 5px;
	color: #8a8f94;
	font-size: 12px;
}

.gl-product-card__rating .star-rating {
	margin: 0;
	color: var(--gl-yellow);
	font-size: 12px;
}

.gl-scroll-button {
	position: absolute;
	z-index: 5;
	top: 42%;
	display: grid;
	width: 34px;
	height: 54px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--gl-line);
	background: #fff;
	color: #111;
	font-size: 28px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transform: translateY(-50%);
}

.gl-scroll-button--prev {
	left: -17px;
}

.gl-scroll-button--next {
	right: -17px;
}

.gl-article-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.gl-article-card {
	overflow: hidden;
	border: 1px solid var(--gl-line);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(20, 24, 28, 0.03);
}

.gl-article-card__image {
	display: grid;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	place-items: center;
	background: #f1f1f1;
	color: #bbb;
}

.gl-article-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gl-article-card:hover img {
	transform: scale(1.035);
}

.gl-article-card__image svg {
	width: 58px;
	height: 58px;
}

.gl-article-card__body {
	padding: 14px 16px 17px;
}

.gl-article-card__category,
.gl-article-card__category a,
.gl-article-card time {
	color: var(--gl-muted);
	font-size: 12px;
}

.gl-article-card h3 {
	min-height: 52px;
	margin: 7px 0 8px;
	font-size: 16px;
	line-height: 1.55;
}

.gl-faq-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.gl-faq-card {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 12px;
	padding-right: 25px;
}

.gl-faq-card + .gl-faq-card {
	padding-left: 25px;
	border-left: 1px solid var(--gl-line);
}

.gl-faq-card__icon {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-weight: 800;
}

.gl-faq-card h3 {
	margin: 2px 0 9px;
	font-size: 16px;
}

.gl-faq-card p {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 12px;
	color: var(--gl-muted);
	font-size: 13px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.gl-empty {
	grid-column: 1 / -1;
	color: var(--gl-muted);
}

.gl-newsletter {
	padding: 20px 0 48px;
}

.gl-newsletter__inner {
	display: grid;
	grid-template-columns: 65px minmax(280px, 1fr) minmax(360px, 540px);
	gap: 20px;
	align-items: center;
	padding: 28px 34px;
	border-radius: 6px;
	background: linear-gradient(100deg, #fff9e9, #f8f3ea);
}

.gl-newsletter__icon {
	display: grid;
	width: 60px;
	height: 60px;
	place-items: center;
	border-radius: 10px;
	background: #fff;
	color: var(--gl-yellow);
}

.gl-newsletter__icon svg {
	width: 36px;
	height: 36px;
}

.gl-newsletter__copy h2,
.gl-newsletter__copy p {
	margin: 0;
}

.gl-newsletter__copy h2 {
	font-size: 23px;
}

.gl-newsletter__copy p {
	margin-top: 3px;
	color: var(--gl-muted);
}

.gl-newsletter__form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

.gl-newsletter__form input {
	min-width: 0;
	padding: 0 16px;
	border: 1px solid var(--gl-line);
	border-radius: 5px;
	background: #fff;
	box-shadow: none;
}

.gl-form-message {
	width: min(1280px, calc(100% - 48px));
	margin: 8px auto 0;
	color: #237a3b;
	text-align: right;
}

.gl-form-message--error {
	color: var(--gl-danger);
}

.gl-footer {
	border-top: 1px solid var(--gl-line);
	background: #fff;
}

.gl-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 0.8fr) 1.25fr;
	gap: 45px;
	padding-top: 48px;
	padding-bottom: 42px;
}

.gl-footer__brand p {
	max-width: 330px;
	margin: 20px 0;
	color: var(--gl-muted);
	font-size: 14px;
}

.gl-footer h2 {
	margin: 8px 0 15px;
	font-size: 16px;
}

.gl-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gl-footer li,
.gl-footer__contact p {
	margin: 0 0 8px;
	color: #5e646a;
	font-size: 14px;
}

.gl-socials {
	display: flex;
	gap: 10px;
}

.gl-socials a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: #171a1d;
	color: #fff;
}

.gl-socials svg {
	width: 17px;
	height: 17px;
}

.gl-footer__bottom {
	border-top: 1px solid var(--gl-line);
}

.gl-footer__bottom .gl-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 67px;
	color: var(--gl-muted);
	font-size: 13px;
}

.gl-footer__bottom p {
	margin: 0;
}

.gl-payments {
	color: #274f89;
	font-weight: 800;
}

.gl-content {
	min-height: 50vh;
	padding-top: 55px;
	padding-bottom: 70px;
}

.gl-content--narrow {
	width: min(860px, calc(100% - 48px));
}

.gl-page-header {
	margin-bottom: 32px;
}

.gl-page-header h1 {
	margin: 0;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.2;
}

.gl-entry-meta {
	margin: 0 0 8px;
	color: var(--gl-muted);
}

.gl-entry-image {
	margin-bottom: 35px;
}

.gl-entry .entry-content {
	font-size: 17px;
}

.gl-post-list {
	display: grid;
	gap: 25px;
}

.gl-post-summary {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--gl-line);
}

.gl-post-summary img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.gl-post-summary h2 {
	margin: 0 0 8px;
}

/* WooCommerce content uses its own templates while inheriting this visual system. */
.woocommerce .site-main,
.woocommerce-page .site-main {
	width: min(1280px, calc(100% - 48px));
	margin: 45px auto 70px;
}

.woocommerce ul.products li.product {
	overflow: hidden;
	border: 1px solid var(--gl-line);
	border-radius: var(--gl-radius);
	background: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .star-rating {
	margin-right: 15px;
	margin-left: 15px;
}

.woocommerce ul.products li.product .button {
	margin: 10px 15px 18px;
	border-radius: 4px;
	background: var(--gl-yellow);
	color: #111;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce a {
	color: inherit;
}

.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--gl-yellow);
}

@media (max-width: 1100px) {
	.gl-masthead__inner {
		grid-template-columns: 210px 1fr auto;
		gap: 24px;
	}

	.gl-header-actions {
		gap: 13px;
	}

	.gl-header-actions > a > span {
		display: none;
	}

	.gl-primary-menu > li > a {
		padding-inline: 21px;
	}

	.gl-category-strip {
		grid-template-columns: repeat(6, 1fr);
	}

	.gl-product-slider {
		grid-auto-columns: calc((100% - 42px) / 4);
	}

	.gl-footer__grid {
		grid-template-columns: 1.4fr repeat(3, 0.8fr);
	}

	.gl-footer__contact {
		grid-column: 1 / -1;
	}
}

@media (max-width: 860px) {
	.gl-container,
	.gl-content--narrow {
		width: min(100% - 32px, 720px);
	}

	.gl-topbar__inner {
		justify-content: center;
	}

	.gl-utility-menu {
		display: none;
	}

	.gl-masthead__inner {
		grid-template-columns: 1fr auto auto;
		min-height: 82px;
	}

	.gl-brand__fallback strong {
		font-size: 18px;
	}

	.gl-brand__mark {
		width: 38px;
		height: 38px;
	}

	.gl-brand__mark svg {
		width: 36px;
		height: 36px;
	}

	.gl-search {
		grid-column: 1 / -1;
		grid-row: 2;
		margin-bottom: 15px;
	}

	.gl-header-actions > a:not(.gl-cart-link) {
		display: none;
	}

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

	.gl-primary-nav {
		display: none;
	}

	.gl-primary-nav.is-open {
		display: block;
	}

	.gl-primary-menu {
		display: block;
		padding: 10px 0;
	}

	.gl-primary-menu > li > a {
		min-height: 48px;
		padding: 0 6px;
	}

	.gl-primary-menu .sub-menu {
		position: static;
		display: none;
		padding-left: 16px;
		box-shadow: none;
	}

	.gl-primary-menu .is-submenu-open > .sub-menu {
		display: block;
	}

	.gl-hero {
		height: 460px;
	}

	.gl-hero__slide {
		background-position: 65% center;
	}

	.gl-hero h1 {
		max-width: 520px;
		font-size: 44px;
	}

	.gl-category-strip {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.gl-category {
		flex: 0 0 96px;
		scroll-snap-align: start;
	}

	.gl-service-strip {
		grid-template-columns: repeat(2, 1fr);
	}

	.gl-service-strip > div:nth-child(3) {
		border-left: 0;
	}

	.gl-service-strip > div:nth-child(n+3) {
		border-top: 1px solid var(--gl-line);
	}

	.gl-product-slider {
		grid-auto-columns: calc((100% - 28px) / 3);
	}

	.gl-article-grid,
	.gl-faq-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gl-faq-card:nth-child(3) {
		padding-top: 25px;
		padding-left: 0;
		border-top: 1px solid var(--gl-line);
		border-left: 0;
	}

	.gl-faq-card:nth-child(4) {
		padding-top: 25px;
		border-top: 1px solid var(--gl-line);
	}

	.gl-newsletter__inner {
		grid-template-columns: 65px 1fr;
	}

	.gl-newsletter__form {
		grid-column: 1 / -1;
	}

	.gl-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gl-footer__brand {
		grid-column: 1 / -1;
	}

	.gl-footer__contact {
		grid-column: auto;
	}
}

@media (max-width: 600px) {
	.gl-container,
	.gl-content--narrow {
		width: min(100% - 24px, 520px);
	}

	.gl-topbar {
		font-size: 12px;
	}

	.gl-masthead__inner {
		gap: 12px;
	}

	.gl-brand__fallback small,
	.gl-cart-link > span {
		display: none;
	}

	.gl-hero {
		height: 445px;
	}

	.gl-hero__slide {
		background-position: 70% center;
	}

	.gl-hero__content {
		justify-content: flex-end;
		padding-bottom: 55px;
	}

	.gl-hero h1 {
		font-size: 35px;
	}

	.gl-hero__description {
		max-width: 310px;
		font-size: 17px;
	}

	.gl-hero__benefits {
		display: none;
	}

	.gl-category-section {
		padding-top: 16px;
	}

	.gl-category-strip {
		padding-inline: 10px;
	}

	.gl-service-strip {
		grid-template-columns: 1fr;
	}

	.gl-service-strip > div + div,
	.gl-service-strip > div:nth-child(3) {
		border-top: 1px solid var(--gl-line);
		border-left: 0;
	}

	.gl-section {
		padding: 38px 0;
	}

	.gl-section-heading h2 {
		font-size: 23px;
	}

	.gl-section-heading > a {
		font-size: 12px;
	}

	.gl-product-slider {
		grid-auto-columns: calc((100% - 14px) / 2);
	}

	.gl-scroll-button {
		display: none;
	}

	.gl-article-grid,
	.gl-faq-grid {
		grid-template-columns: 1fr;
	}

	.gl-faq-card,
	.gl-faq-card + .gl-faq-card,
	.gl-faq-card:nth-child(3),
	.gl-faq-card:nth-child(4) {
		padding: 20px 0;
		border-top: 1px solid var(--gl-line);
		border-left: 0;
	}

	.gl-faq-card:first-child {
		padding-top: 0;
		border-top: 0;
	}

	.gl-newsletter__inner {
		grid-template-columns: 50px 1fr;
		padding: 24px 18px;
	}

	.gl-newsletter__icon {
		width: 48px;
		height: 48px;
	}

	.gl-newsletter__copy h2 {
		font-size: 18px;
	}

	.gl-newsletter__copy p {
		font-size: 13px;
	}

	.gl-newsletter__form {
		grid-template-columns: 1fr;
	}

	.gl-newsletter__form input {
		min-height: 48px;
	}

	.gl-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px 20px;
	}

	.gl-footer__contact {
		grid-column: 1 / -1;
	}

	.gl-footer__bottom .gl-container {
		display: block;
		padding: 18px 0;
		text-align: center;
	}

	.gl-payments {
		margin-top: 8px !important;
	}

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