/* ==========================================================================
   GoodReturnz — theme styles
   1. Tokens          6. Cards & archives
   2. Base            7. Single post
   3. Layout          8. Calculators
   4. Components      9. Guest post / pages
   5. Header/footer  10. Responsive
   ========================================================================== */

/* 1. Tokens ------------------------------------------------------------- */

:root {
	--gr-green: #00a76f;
	--gr-green-dark: #00875a;
	--gr-green-soft: rgba(0, 167, 111, 0.1);
	--gr-green-line: rgba(0, 167, 111, 0.28);
	--gr-navy: #0b2540;
	--gr-gold: #f0a500;
	--gr-ink: #12263f;
	--gr-muted: #5a7184;
	--gr-faint: #8b9dab;
	--gr-bg: #f4f8f6;
	--gr-card: #ffffff;
	--gr-line: #e2eae6;
	--gr-line-soft: #eef3f0;
	--gr-danger: #d64545;

	--gr-font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--gr-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--gr-radius: 14px;
	--gr-radius-sm: 9px;
	--gr-shadow: 0 1px 2px rgba(11, 37, 64, 0.04), 0 8px 24px rgba(11, 37, 64, 0.05);
	--gr-shadow-lg: 0 18px 46px rgba(11, 37, 64, 0.13);
	--gr-wrap: 1200px;
	--gr-gap: 28px;
	--gr-header-h: 66px;
}

/* 2. Base --------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--gr-bg);
	color: var(--gr-ink);
	font-family: var(--gr-font-body);
	font-size: 16.5px;
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gr-font-head);
	color: var(--gr-navy);
	line-height: 1.22;
	margin: 0 0 .5em;
	letter-spacing: -0.015em;
	font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.7rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.7rem); }
h3 { font-size: 1.16rem; }

p { margin: 0 0 1.1em; }

a { color: var(--gr-green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg, video { max-width: 100%; height: auto; }
img { display: block; }

:where(svg[viewBox="0 0 24 24"]) { width: 20px; height: 20px; flex: none; }

ul, ol { padding-left: 1.25em; }

hr { border: 0; border-top: 1px solid var(--gr-line); margin: 2.2rem 0; }

code, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: .9em;
	background: #eef3f0;
	border-radius: 5px;
}
code { padding: .15em .38em; }
pre { padding: 1rem 1.1rem; overflow-x: auto; }
pre code { background: none; padding: 0; }

table { border-collapse: collapse; width: 100%; }

:focus-visible {
	outline: 3px solid var(--gr-green);
	outline-offset: 2px;
	border-radius: 4px;
}

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

.gr-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.gr-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--gr-navy);
	color: #fff;
	padding: .7rem 1.1rem;
	z-index: 200;
	border-radius: 0 0 8px 0;
}
.gr-skip:focus { left: 0; }

/* 3. Layout ------------------------------------------------------------- */

.gr-wrap {
	width: min(100% - 32px, var(--gr-wrap));
	margin-inline: auto;
}

.gr-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 44px;
	align-items: start;
	padding: 34px 0 60px;
}

.gr-no-sidebar .gr-shell,
.gr-shell--full { grid-template-columns: minmax(0, 1fr); }

.gr-sidebar { position: sticky; top: calc(var(--gr-header-h) + 18px); }

.gr-section { margin: 0 0 46px; }
.gr-primary > .gr-section:last-child { margin-bottom: 0; }

.gr-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gr-line);
}

.gr-section__title {
	margin: 0;
	font-size: 1.18rem;
	display: flex;
	align-items: center;
	gap: 9px;
}
.gr-section__title::before {
	content: "";
	width: 4px; height: 20px;
	border-radius: 3px;
	background: var(--gr-green);
}

.gr-section__more {
	font-size: .86rem;
	font-weight: 600;
	color: var(--gr-muted);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}
.gr-section__more:hover { color: var(--gr-green-dark); text-decoration: none; }

/* 4. Components --------------------------------------------------------- */

.gr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: .62rem 1.05rem;
	border-radius: 999px;
	border: 1px solid transparent;
	background: var(--gr-card);
	color: var(--gr-navy);
	font: 600 .92rem/1.2 var(--gr-font-head);
	cursor: pointer;
	text-decoration: none;
	transition: transform .12s ease, box-shadow .16s ease, background .16s ease;
}
.gr-btn:hover { text-decoration: none; transform: translateY(-1px); }

.gr-btn--primary { background: var(--gr-green); color: #fff; box-shadow: 0 6px 16px rgba(0, 167, 111, .26); }
.gr-btn--primary:hover { background: var(--gr-green-dark); color: #fff; }

.gr-btn--ghost { background: transparent; border-color: var(--gr-line); color: var(--gr-muted); }
.gr-btn--ghost:hover { border-color: var(--gr-green-line); color: var(--gr-green-dark); }

.gr-btn--wa { background: #25d366; color: #fff; }
.gr-btn--wa:hover { background: #1eb355; color: #fff; }

.gr-btn--lg { padding: .85rem 1.6rem; font-size: 1rem; }
.gr-btn--tiny { padding: .34rem .7rem; font-size: .8rem; border: 1px dashed var(--gr-line); color: var(--gr-muted); }
.gr-btn--block { width: 100%; }

.gr-pill {
	display: inline-flex;
	align-items: center;
	padding: .2rem .6rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--pill, #00a76f) 12%, #fff);
	color: var(--pill, #00a76f);
	font: 700 .69rem/1.6 var(--gr-font-head);
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
}
.gr-pill:hover { text-decoration: none; filter: brightness(.94); }

.gr-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	color: var(--gr-muted);
	font-size: .84rem;
	margin-bottom: 1rem;
}
.gr-meta__item { color: var(--gr-muted); position: relative; }
.gr-meta__item + .gr-meta__item::before {
	content: "";
	position: absolute;
	left: -8px; top: 50%;
	width: 3px; height: 3px;
	border-radius: 50%;
	background: var(--gr-faint);
}
a.gr-meta__item:hover { color: var(--gr-green-dark); }

.gr-crumbs { font-size: .82rem; color: var(--gr-muted); margin-bottom: 14px; }
.gr-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.gr-crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--gr-faint); }
.gr-crumbs a { color: var(--gr-muted); }
.gr-crumbs a:hover { color: var(--gr-green-dark); }
.gr-crumbs [aria-current] { color: var(--gr-navy); font-weight: 600; }

.gr-notice {
	padding: .8rem 1rem;
	border-radius: var(--gr-radius-sm);
	font-size: .92rem;
	margin: 0 0 1rem;
}
.gr-notice--ok { background: var(--gr-green-soft); color: var(--gr-green-dark); border: 1px solid var(--gr-green-line); }
.gr-notice--bad { background: #fdecec; color: #a32c2c; border: 1px solid #f3c9c9; }

.gr-ad { margin: 22px 0; text-align: center; }
.gr-ad--empty {
	border: 1px dashed var(--gr-line);
	border-radius: var(--gr-radius-sm);
	padding: 20px;
	color: var(--gr-faint);
	font-size: .8rem;
	background: repeating-linear-gradient(135deg, #fff, #fff 8px, #fafcfb 8px, #fafcfb 16px);
}
.gr-ad--sidebar { margin: 0 0 22px; }

.gr-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: hsl(var(--h, 160) 46% 92%);
	color: hsl(var(--h, 160) 58% 28%);
	font: 700 1rem/1 var(--gr-font-head);
	letter-spacing: .02em;
}

.gr-pagination ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding: 0;
	margin: 34px 0 0;
}
.gr-pagination a,
.gr-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 9px;
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	color: var(--gr-muted);
	font-weight: 600;
	font-size: .9rem;
	text-decoration: none;
}
.gr-pagination a:hover { border-color: var(--gr-green-line); color: var(--gr-green-dark); }
.gr-pagination .current { background: var(--gr-navy); border-color: var(--gr-navy); color: #fff; }

/* 5. Header & footer ---------------------------------------------------- */

.gr-topbar {
	background: var(--gr-navy);
	color: #cfe0e8;
	font-size: .78rem;
}
.gr-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 34px;
}
.gr-topbar__tag { color: #9fb8c6; }
.gr-topbar__links { display: flex; gap: 16px; }
.gr-topbar__links a { color: #cfe0e8; }
.gr-topbar__links a:hover { color: #fff; }

.gr-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, .93);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--gr-line);
}

.gr-header__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: var(--gr-header-h);
}

.gr-logo { flex: none; display: inline-flex; align-items: center; }
.gr-logo img { max-height: 40px; width: auto; }
.custom-logo-link img { max-height: 42px; width: auto; }

.gr-nav { margin-left: auto; }
.gr-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
}
.gr-nav a {
	color: var(--gr-navy);
	font: 600 .93rem/1 var(--gr-font-head);
	white-space: nowrap;
	padding: 6px 0;
	position: relative;
}
.gr-nav a:hover { color: var(--gr-green-dark); text-decoration: none; }
.gr-nav .current-menu-item > a::after,
.gr-nav a:hover::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--gr-green);
}
.gr-nav .sub-menu { display: none; }

.gr-header__actions { display: flex; align-items: center; gap: 10px; flex: none; }

.gr-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 10px;
	border: 1px solid var(--gr-line);
	background: var(--gr-card);
	color: var(--gr-navy);
	cursor: pointer;
}
.gr-iconbtn:hover { border-color: var(--gr-green-line); color: var(--gr-green-dark); }

.gr-burger { display: none; }

.gr-ticker { background: var(--gr-card); border-bottom: 1px solid var(--gr-line); }
.gr-ticker__inner { display: flex; align-items: center; gap: 14px; min-height: 42px; }
.gr-ticker__label {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--gr-green-soft);
	color: var(--gr-green-dark);
	border-radius: 999px;
	padding: .18rem .65rem;
	font: 700 .7rem/1.7 var(--gr-font-head);
	letter-spacing: .07em;
	text-transform: uppercase;
}
.gr-ticker__viewport { overflow: hidden; flex: 1 1 auto; min-width: 0; }
.gr-ticker ul {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	animation: gr-marquee 38s linear infinite;
}
.gr-ticker:hover ul { animation-play-state: paused; }
.gr-ticker a { color: var(--gr-muted); font-size: .85rem; }
.gr-ticker a:hover { color: var(--gr-navy); }

@keyframes gr-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.gr-ticker ul { animation: none; }
	html { scroll-behavior: auto; }
}

.gr-drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
}
.gr-drawer.is-open { display: block; }
.gr-drawer__overlay { position: absolute; inset: 0; background: rgba(11, 37, 64, .48); }
.gr-drawer__panel {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: min(340px, 88vw);
	background: var(--gr-card);
	padding: 22px;
	overflow-y: auto;
	box-shadow: var(--gr-shadow-lg);
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.gr-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.gr-drawer nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.gr-drawer nav a {
	display: block;
	padding: .62rem .2rem;
	color: var(--gr-navy);
	font: 600 1rem/1.3 var(--gr-font-head);
	border-bottom: 1px solid var(--gr-line-soft);
}

.gr-searchbar { position: relative; display: flex; }
.gr-searchbar input[type="search"],
.gr-searchbar input[type="text"] {
	width: 100%;
	padding: .68rem 5.6rem .68rem 2.4rem;
	border: 1px solid var(--gr-line);
	border-radius: 999px;
	background: var(--gr-card) ;
	font: 400 .93rem/1.3 var(--gr-font-body);
	color: var(--gr-ink);
}
.gr-searchbar__icon {
	position: absolute;
	left: 12px; top: 50%;
	transform: translateY(-50%);
	color: var(--gr-faint);
	pointer-events: none;
}
.gr-searchbar button {
	position: absolute;
	right: 5px; top: 50%;
	transform: translateY(-50%);
	border: 0;
	border-radius: 999px;
	background: var(--gr-navy);
	color: #fff;
	padding: .42rem .95rem;
	font: 600 .78rem/1.4 var(--gr-font-head);
	cursor: pointer;
}
.gr-searchbar button:hover { background: var(--gr-green-dark); }

.gr-search-drawer {
	display: none;
	background: var(--gr-card);
	border-bottom: 1px solid var(--gr-line);
	padding: 16px 0;
}
.gr-search-drawer.is-open { display: block; }

.gr-footer {
	background: var(--gr-navy);
	color: #b9cbd7;
	padding: 52px 0 26px;
	margin-top: 20px;
}
.gr-footer h2, .gr-footer h3 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.gr-footer a { color: #cfe0e8; }
.gr-footer a:hover { color: #fff; }
.gr-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: 36px;
}
.gr-footer__about p { font-size: .9rem; color: #9fb8c6; }
.gr-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .9rem; }
.gr-footer__bottom {
	margin-top: 34px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	align-items: center;
	justify-content: space-between;
	font-size: .82rem;
	color: #8fa8b7;
}
/* Specificity has to beat `.gr-footer ul`, which lays the columns out as a grid. */
.gr-footer ul.gr-footer__legal { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; margin: 0; padding: 0; }
.gr-logo--dark img { max-height: 38px; }

.gr-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.gr-social__link {
	display: inline-flex;
	align-items: center;
	padding: .3rem .7rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .18);
	font-size: .78rem;
	color: #cfe0e8;
}
.gr-social__link:hover { background: rgba(255, 255, 255, .1); text-decoration: none; }

.gr-disclaimer {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--gr-radius-sm);
	padding: 14px 16px;
	font-size: .8rem;
	color: #9fb8c6;
	margin-top: 26px;
}

.gr-totop {
	position: fixed;
	right: 20px;
	bottom: 92px;
	width: 42px; height: 42px;
	border-radius: 50%;
	border: 1px solid var(--gr-line);
	background: var(--gr-card);
	color: var(--gr-navy);
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--gr-shadow);
	z-index: 55;
}
.gr-totop.is-on { display: inline-flex; }
.gr-totop svg { transform: rotate(-90deg); }

/* WhatsApp channel button */
.gr-wa {
	position: fixed;
	right: 20px;
	bottom: 22px;
	z-index: 58;
	display: inline-flex;
	align-items: center;
	gap: 0;
	height: 54px;
	padding: 0;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
	text-decoration: none;
	overflow: hidden;
	transition: gap .2s ease, padding .2s ease;
}
.gr-wa:hover { text-decoration: none; color: #fff; padding-right: 18px; }
.gr-wa__icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; flex: none; }
.gr-wa__text {
	max-width: 0;
	white-space: nowrap;
	font: 600 .9rem/1 var(--gr-font-head);
	overflow: hidden;
	transition: max-width .28s ease;
}
.gr-wa:hover .gr-wa__text, .gr-wa:focus-visible .gr-wa__text { max-width: 230px; }
.gr-wa__halo {
	position: absolute;
	left: 0; top: 0;
	width: 54px; height: 54px;
	border-radius: 50%;
	background: #25d366;
	opacity: .55;
	animation: gr-pulse 2.6s ease-out infinite;
	pointer-events: none;
}
@keyframes gr-pulse {
	0% { transform: scale(1); opacity: .5; }
	70% { transform: scale(1.5); opacity: 0; }
	100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .gr-wa__halo { animation: none; opacity: 0; } }

.gr-wa-card {
	background: linear-gradient(160deg, #eafaf1, #ffffff);
	border: 1px solid #cdeedd;
	border-radius: var(--gr-radius);
	padding: 20px;
	text-align: center;
}
.gr-wa-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	margin-bottom: 10px;
}
.gr-wa-card h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.gr-wa-card p { font-size: .87rem; color: var(--gr-muted); margin-bottom: 1rem; }

/* 6. Cards & archives --------------------------------------------------- */

.gr-hero {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: var(--gr-gap);
	margin: 26px 0 46px;
	align-items: start;
}

.gr-hero__side { display: grid; gap: 16px; }

.gr-card {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .16s ease, box-shadow .18s ease, border-color .16s ease;
}
.gr-card:hover { transform: translateY(-2px); box-shadow: var(--gr-shadow); border-color: var(--gr-green-line); }

.gr-card__media { display: block; background: #eef3f0; aspect-ratio: 16 / 10; overflow: hidden; }
.gr-card__media img { width: 100%; height: 100%; object-fit: cover; }
.gr-card__ph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; height: 100%;
	color: var(--accent, var(--gr-green));
	background: linear-gradient(140deg, color-mix(in srgb, var(--accent, #00a76f) 12%, #fff), #f4f8f6);
}

.gr-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1 1 auto; }
/* The category pill must hug its text rather than stretch to the card width. */
.gr-card__body > .gr-pill { align-self: flex-start; }
.gr-card__title { margin: 0; font-size: 1.05rem; line-height: 1.32; }
.gr-card__title a { color: var(--gr-navy); }
.gr-card__title a:hover { color: var(--gr-green-dark); text-decoration: none; }
.gr-card__excerpt { margin: 0; color: var(--gr-muted); font-size: .9rem; }
.gr-card__foot { margin-top: auto; display: flex; gap: 7px; color: var(--gr-faint); font-size: .78rem; }

/* Without a featured image the placeholder becomes a slim brand band rather
   than a large empty box. */
.gr-card--nothumb .gr-card__media { aspect-ratio: auto; height: 74px; }
.gr-card--nothumb.gr-card--lead .gr-card__media { height: 108px; }
.gr-card--nothumb.gr-card--list .gr-card__media { height: auto; }

.gr-card--lead .gr-card__media { aspect-ratio: 16 / 9; }
.gr-card--lead .gr-card__title { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
.gr-card--lead .gr-card__body { padding: 22px 24px 24px; }
.gr-card--lead .gr-card__excerpt { font-size: 1rem; }

.gr-card--list { flex-direction: row; align-items: stretch; }
.gr-card--list .gr-card__media { width: 116px; flex: none; aspect-ratio: 1 / 1; }
.gr-card--list .gr-card__body { padding: 12px 14px; gap: 6px; }
.gr-card--list .gr-card__title { font-size: .96rem; }

.gr-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: var(--gr-gap);
}
.gr-grid--2 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.gr-verticals {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
	gap: 16px;
}
.gr-vertical {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-top: 3px solid var(--accent);
	border-radius: var(--gr-radius);
	padding: 18px;
	display: grid;
	gap: 6px;
	align-content: start;
	transition: transform .16s ease, box-shadow .18s ease;
}
.gr-vertical:hover { transform: translateY(-2px); box-shadow: var(--gr-shadow); text-decoration: none; }
.gr-vertical__icon {
	width: 40px; height: 40px;
	border-radius: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--accent) 12%, #fff);
	color: var(--accent);
	margin-bottom: 4px;
}
.gr-vertical__name { font: 700 1.02rem/1.3 var(--gr-font-head); color: var(--gr-navy); }
.gr-vertical__blurb { font-size: .85rem; color: var(--gr-muted); }
.gr-vertical__count { font-size: .76rem; color: var(--gr-faint); font-weight: 600; }

.gr-pagehead {
	background: linear-gradient(150deg, var(--gr-navy), #123456);
	color: #dbe7ee;
	padding: 40px 0 42px;
}
.gr-pagehead h1 { color: #fff; margin-bottom: .35rem; }
.gr-pagehead p { color: #a9c1d0; margin: 0; max-width: 62ch; }
.gr-pagehead .gr-crumbs { color: #91adbd; margin-bottom: 12px; }
.gr-pagehead .gr-crumbs a { color: #b9cfdc; }
.gr-pagehead .gr-crumbs [aria-current] { color: #fff; }
.gr-pagehead__eyebrow {
	display: inline-block;
	font: 700 .72rem/1.6 var(--gr-font-head);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #6ee7b7;
	margin-bottom: 8px;
}

.gr-ranked { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; counter-reset: rank; }
.gr-ranked li { display: flex; gap: 12px; align-items: flex-start; }
.gr-ranked__n {
	flex: none;
	width: 26px;
	font: 800 1.1rem/1.2 var(--gr-font-head);
	color: var(--gr-green-line);
}
.gr-ranked a { color: var(--gr-navy); font-weight: 600; font-size: .92rem; line-height: 1.35; display: block; }
.gr-ranked a:hover { color: var(--gr-green-dark); text-decoration: none; }
.gr-ranked__meta { display: block; font-size: .76rem; color: var(--gr-faint); margin-top: 2px; }

.gr-widget {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 20px;
	margin-bottom: 22px;
}
.gr-widget__title {
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gr-muted);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--gr-line-soft);
}
.gr-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .9rem; }
.gr-widget a { color: var(--gr-navy); }
.gr-widget a:hover { color: var(--gr-green-dark); }
.gr-widget--flush { padding: 0; border: 0; background: none; }

.gr-taglist { display: flex; flex-wrap: wrap; gap: 7px; }
.gr-taglist a {
	display: inline-block;
	padding: .28rem .68rem;
	border-radius: 999px;
	background: #eef3f0;
	color: var(--gr-muted);
	font-size: .8rem;
}
.gr-taglist a:hover { background: var(--gr-green-soft); color: var(--gr-green-dark); text-decoration: none; }

/* Newsletter */
.gr-news {
	background: linear-gradient(155deg, var(--gr-navy), #14395c);
	color: #d7e6ef;
	border-radius: var(--gr-radius);
	padding: 24px;
}
.gr-news__title { color: #fff; font-size: 1.06rem; }
.gr-news__text { font-size: .88rem; color: #a9c1d0; }
.gr-news__form { display: grid; gap: 9px; }
.gr-news input[type="email"] {
	width: 100%;
	padding: .68rem .9rem;
	border-radius: 9px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font: 400 .92rem/1.3 var(--gr-font-body);
}
.gr-news input::placeholder { color: #8fa8b7; }
.gr-news .gr-btn { width: 100%; }
.gr-news__fine { font-size: .76rem; color: #8fa8b7; margin: 10px 0 0; }
.gr-news--wide {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	grid-template-areas:
		"title form"
		"text  form"
		"fine  fine";
	gap: 4px 34px;
	align-items: center;
	padding: 30px;
}
.gr-news--wide .gr-news__title { grid-area: title; align-self: end; }
.gr-news--wide .gr-news__text { grid-area: text; align-self: start; margin-bottom: 0; }
.gr-news--wide .gr-news__form { grid-area: form; grid-template-columns: 1fr auto; align-items: start; }
.gr-news--wide .gr-btn { width: auto; }
.gr-news--wide .gr-news__fine { grid-area: fine; margin-top: 14px; }
.gr-news--wide .gr-notice { grid-column: 1 / -1; }

/* 7. Single post -------------------------------------------------------- */

.gr-progress {
	position: fixed;
	top: 0; left: 0;
	height: 3px;
	width: 0;
	background: linear-gradient(90deg, var(--gr-green), var(--gr-gold));
	z-index: 90;
	transition: width .1s linear;
}

.gr-article { background: transparent; }
.gr-article__head { margin-bottom: 22px; }
.gr-article__title { margin-bottom: .5rem; }
.gr-article__dek { font-size: 1.08rem; color: var(--gr-muted); margin-bottom: 1rem; }
.gr-article__media { border-radius: var(--gr-radius); overflow: hidden; margin-bottom: 24px; }
.gr-article__media img { width: 100%; }

.gr-content { font-size: 1.04rem; }
.gr-content > h2 { margin-top: 2rem; }
.gr-content > h3 { margin-top: 1.6rem; }
.gr-content :where(h2, h3, h4)[id] { scroll-margin-top: 92px; }
.admin-bar .gr-content :where(h2, h3, h4)[id] { scroll-margin-top: 124px; }
.gr-content img { border-radius: var(--gr-radius-sm); }
.gr-content ul, .gr-content ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.gr-content li { margin-bottom: .4em; }
.gr-content blockquote {
	margin: 1.6em 0;
	padding: 2px 0 2px 20px;
	border-left: 3px solid var(--gr-green);
	color: var(--gr-muted);
	font-size: 1.05rem;
}
.gr-content table { margin: 1.5em 0; font-size: .94rem; }
.gr-content th, .gr-content td { border: 1px solid var(--gr-line); padding: .6rem .7rem; text-align: left; }
.gr-content th { background: #f7faf9; font-family: var(--gr-font-head); color: var(--gr-navy); }
.gr-content figure { margin: 1.6em 0; }
.gr-content figcaption { font-size: .82rem; color: var(--gr-faint); margin-top: .5rem; }

.gr-table-scroll { overflow-x: auto; }

.gr-toc {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-left: 3px solid var(--gr-green);
	border-radius: var(--gr-radius-sm);
	padding: 18px 20px;
	margin: 0 0 26px;
}
.gr-toc__title { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gr-muted); margin-bottom: 10px; }
.gr-toc ol { margin: 0; padding-left: 1.2em; display: grid; gap: 6px; font-size: .93rem; }
.gr-toc a { color: var(--gr-navy); }
.gr-toc a:hover { color: var(--gr-green-dark); }

.gr-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 30px 0; }
.gr-share__label { font: 700 .74rem/1 var(--gr-font-head); letter-spacing: .1em; text-transform: uppercase; color: var(--gr-faint); margin-right: 4px; }
.gr-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: .42rem .8rem;
	border-radius: 999px;
	border: 1px solid var(--gr-line);
	background: var(--gr-card);
	color: var(--gr-muted);
	font: 600 .8rem/1.3 var(--gr-font-head);
	cursor: pointer;
	text-decoration: none;
}
.gr-share__btn:hover { border-color: var(--gr-green-line); color: var(--gr-green-dark); text-decoration: none; }
.gr-share__btn--whatsapp:hover { border-color: #25d366; color: #128c3e; }

.gr-authorbox {
	display: flex;
	gap: 18px;
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 22px;
	margin: 34px 0;
}
.gr-authorbox__avatar { flex: none; }
.gr-authorbox__avatar img, .gr-authorbox__avatar .gr-avatar { border-radius: 50%; }
.gr-authorbox__eyebrow { font: 700 .7rem/1 var(--gr-font-head); letter-spacing: .12em; text-transform: uppercase; color: var(--gr-faint); }
.gr-authorbox__name { font-size: 1.1rem; margin: 8px 0 2px; }
.gr-authorbox__role { color: var(--gr-green-dark); font-size: .84rem; font-weight: 600; margin: 0 0 .6rem; }
.gr-authorbox__bio { font-size: .92rem; color: var(--gr-muted); margin-bottom: .6rem; }
.gr-authorbox__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 0; padding: 0; font-size: .8rem; color: var(--gr-faint); }

.gr-prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.gr-prevnext a {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius-sm);
	padding: 14px 16px;
	display: grid;
	gap: 4px;
}
.gr-prevnext a:hover { border-color: var(--gr-green-line); text-decoration: none; }
.gr-prevnext span { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gr-faint); }
.gr-prevnext strong { font: 600 .95rem/1.35 var(--gr-font-head); color: var(--gr-navy); }
.gr-prevnext__next { text-align: right; }

.gr-authors { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.gr-author-card {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 22px;
	text-align: center;
}
.gr-author-card__avatar { margin-bottom: 12px; display: flex; justify-content: center; }
.gr-author-card__avatar img, .gr-author-card__avatar .gr-avatar { border-radius: 50%; }
.gr-author-card h3 { font-size: 1.02rem; margin-bottom: .2rem; }
.gr-author-card__role { color: var(--gr-green-dark); font-size: .82rem; font-weight: 600; margin: 0 0 .6rem; }
.gr-author-card__bio { font-size: .87rem; color: var(--gr-muted); }
.gr-author-card__count { font-size: .76rem; color: var(--gr-faint); margin: 0; }

.gr-profilehead {
	display: flex;
	gap: 22px;
	align-items: center;
	flex-wrap: wrap;
}
.gr-profilehead__avatar img, .gr-profilehead__avatar .gr-avatar { border-radius: 50%; border: 3px solid rgba(255, 255, 255, .2); }

/* Shortcode blocks */
.gr-note {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-left: 3px solid var(--gr-green);
	border-radius: var(--gr-radius-sm);
	padding: 16px 18px;
	margin: 1.6em 0;
	font-size: .96rem;
}
.gr-note strong { font-family: var(--gr-font-head); color: var(--gr-navy); }
.gr-note p:last-child { margin-bottom: 0; }
.gr-note--warn { border-left-color: var(--gr-danger); }
.gr-note--tip { border-left-color: var(--gr-gold); }

.gr-pullquote { margin: 1.8em 0; padding: 0; display: grid; gap: 8px; color: var(--gr-navy); }
.gr-pullquote svg { color: var(--gr-green-line); }
.gr-pullquote blockquote { margin: 0; padding: 0; border: 0; font: 600 1.24rem/1.45 var(--gr-font-head); color: var(--gr-navy); }
.gr-pullquote figcaption { font-size: .84rem; color: var(--gr-faint); }

.gr-datapoint {
	display: inline-grid;
	gap: 2px;
	padding: .7rem 1rem;
	margin: .3rem .5rem .3rem 0;
	background: var(--gr-green-soft);
	border-radius: var(--gr-radius-sm);
}
.gr-datapoint strong { font: 800 1.3rem/1.1 var(--gr-font-head); color: var(--gr-green-dark); }
.gr-datapoint span { font-size: .82rem; color: var(--gr-muted); }
.gr-datapoint em { font-size: .74rem; color: var(--gr-faint); font-style: normal; }

.gr-faq { display: grid; gap: 8px; margin: 1.4em 0; }
.gr-faq__item {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius-sm);
	padding: 0 16px;
}
.gr-faq__item summary {
	cursor: pointer;
	padding: 14px 0;
	font: 600 1rem/1.4 var(--gr-font-head);
	color: var(--gr-navy);
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: flex-start;
}
.gr-faq__item summary::-webkit-details-marker { display: none; }
.gr-faq__item summary::after {
	content: "+";
	font-size: 1.25rem;
	line-height: 1;
	color: var(--gr-green);
	flex: none;
}
.gr-faq__item[open] summary::after { content: "–"; }
.gr-faq__item > div { padding-bottom: 12px; color: var(--gr-muted); font-size: .95rem; }
.gr-faq__item > div p:last-child { margin-bottom: 0; }

.gr-steps ol { counter-reset: step; list-style: none; padding: 0; display: grid; gap: 12px; }
.gr-steps li { position: relative; padding-left: 44px; }
.gr-steps li::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 0; top: 0;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--gr-green-soft);
	color: var(--gr-green-dark);
	display: grid;
	place-items: center;
	font: 700 .9rem/1 var(--gr-font-head);
}

/* 8. Calculators -------------------------------------------------------- */

.gr-calc {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 0;
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	overflow: hidden;
	box-shadow: var(--gr-shadow);
}

.gr-calc__form { padding: 26px 28px; display: grid; gap: 22px; align-content: start; }

.gr-field { display: grid; gap: 10px; }
.gr-field__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.gr-field__label { font: 600 .92rem/1.35 var(--gr-font-head); color: var(--gr-navy); }
.gr-field__box {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--gr-green-soft);
	border: 1px solid transparent;
	border-radius: 8px;
	padding: .3rem .6rem;
	flex: none;
	max-width: 190px;
}
.gr-field__box:focus-within { border-color: var(--gr-green-line); background: #fff; }
.gr-field__box input {
	border: 0;
	background: transparent;
	width: 100px;
	text-align: right;
	font: 700 .98rem/1.4 var(--gr-font-head);
	color: var(--gr-green-dark);
	padding: 0;
	min-width: 0;
}
.gr-field__box input:focus { outline: none; }
.gr-field__unit { font: 700 .9rem/1.4 var(--gr-font-head); color: var(--gr-green-dark); flex: none; }
.gr-field__help { font-size: .8rem; color: var(--gr-faint); }

.gr-field--select select,
.gr-field--select > select {
	width: 100%;
	padding: .6rem .8rem;
	border: 1px solid var(--gr-line);
	border-radius: 9px;
	background: var(--gr-card);
	font: 500 .94rem/1.3 var(--gr-font-body);
	color: var(--gr-ink);
}

.gr-range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 5px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--gr-green) 0%, var(--gr-green) 50%, #e6eeea 50%);
	background: #e6eeea;
	outline: none;
	margin: 0;
}
.gr-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--gr-green);
	border: 3px solid #fff;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .22);
	cursor: pointer;
}
.gr-range::-moz-range-thumb {
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--gr-green);
	border: 3px solid #fff;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .22);
	cursor: pointer;
}

.gr-switch { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.gr-switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.gr-switch__track {
	width: 40px; height: 22px;
	border-radius: 999px;
	background: #dbe4df;
	position: relative;
	flex: none;
	transition: background .16s ease;
}
.gr-switch__dot {
	position: absolute;
	top: 3px; left: 3px;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: #fff;
	transition: transform .16s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}
.gr-switch input:checked + .gr-switch__track { background: var(--gr-green); }
.gr-switch input:checked + .gr-switch__track .gr-switch__dot { transform: translateX(18px); }
.gr-switch input:focus-visible + .gr-switch__track { outline: 3px solid var(--gr-green); outline-offset: 2px; }
.gr-switch__text { font: 500 .92rem/1.35 var(--gr-font-body); color: var(--gr-ink); }

.gr-repeat { display: grid; gap: 10px; }
.gr-repeat__row { display: flex; gap: 10px; align-items: end; }
.gr-repeat__cell { display: grid; gap: 4px; flex: 1 1 0; min-width: 0; }
.gr-repeat__label { font-size: .76rem; color: var(--gr-faint); }
.gr-repeat__cell input {
	width: 100%;
	padding: .5rem .6rem;
	border: 1px solid var(--gr-line);
	border-radius: 8px;
	font: 500 .92rem/1.3 var(--gr-font-body);
	color: var(--gr-ink);
	background: var(--gr-card);
	min-width: 0;
}
.gr-repeat__remove {
	flex: none;
	width: 34px; height: 34px;
	border-radius: 8px;
	border: 1px solid var(--gr-line);
	background: var(--gr-card);
	color: var(--gr-faint);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
}
.gr-repeat__remove:hover { border-color: #f3c9c9; color: var(--gr-danger); }

.gr-calc__actions { display: flex; gap: 10px; }

.gr-calc__result {
	background: linear-gradient(170deg, #f6fbf8, #eef5f1);
	border-left: 1px solid var(--gr-line);
	padding: 26px 28px;
	display: grid;
	gap: 18px;
	align-content: start;
}

.gr-calc__chart { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.gr-calc__chart svg { width: 118px; height: 118px; flex: none; }
.gr-calc__legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .84rem; color: var(--gr-muted); min-width: 0; flex: 1 1 150px; }
.gr-calc__legend li { display: grid; grid-template-columns: auto 1fr; gap: 6px; align-items: center; }
.gr-calc__legend strong { grid-column: 2; font: 700 .92rem/1.3 var(--gr-font-head); color: var(--gr-navy); }
.gr-calc__swatch { width: 10px; height: 10px; border-radius: 3px; flex: none; }

.gr-calc__outputs { margin: 0; display: grid; gap: 2px; }
.gr-calc__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: .55rem 0;
	border-bottom: 1px dashed var(--gr-line);
}
.gr-calc__row:last-child { border-bottom: 0; }
.gr-calc__row dt { font-size: .89rem; color: var(--gr-muted); }
.gr-calc__row dd {
	margin: 0;
	font: 700 1rem/1.3 var(--gr-font-head);
	color: var(--gr-navy);
	text-align: right;
	word-break: break-word;
}
.gr-calc__row.is-primary {
	background: var(--gr-card);
	border: 1px solid var(--gr-green-line);
	border-radius: var(--gr-radius-sm);
	padding: .8rem 1rem;
	margin: 6px 0;
}
.gr-calc__row.is-primary dt { font-weight: 600; color: var(--gr-navy); }
.gr-calc__row.is-primary dd { font-size: 1.42rem; color: var(--gr-green-dark); }
.gr-calc__row.is-primary dd small { display: block; font-size: .78rem; font-weight: 600; color: var(--gr-muted); }

.gr-calc__toggle {
	background: none;
	border: 0;
	padding: 0;
	color: var(--gr-green-dark);
	font: 600 .86rem/1.4 var(--gr-font-head);
	cursor: pointer;
	text-decoration: underline;
}
.gr-calc__table-wrap { overflow-x: auto; margin-top: 12px; max-height: 320px; overflow-y: auto; }
.gr-calc__table { font-size: .84rem; background: var(--gr-card); }
.gr-calc__table th, .gr-calc__table td { border: 1px solid var(--gr-line); padding: .45rem .6rem; text-align: right; white-space: nowrap; }
.gr-calc__table th:first-child, .gr-calc__table td:first-child { text-align: left; }
.gr-calc__table thead th { background: #f2f7f4; position: sticky; top: 0; }

.gr-calc__note { font-size: .78rem; color: var(--gr-faint); margin: 0; }
.gr-calc__noscript { padding: 16px; color: var(--gr-danger); }

.gr-calc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
	gap: 14px;
}
.gr-calc-card {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 18px;
	display: grid;
	gap: 6px;
	align-content: start;
	position: relative;
	transition: transform .16s ease, box-shadow .18s ease, border-color .16s ease;
}
.gr-calc-card:hover { transform: translateY(-2px); box-shadow: var(--gr-shadow); border-color: var(--gr-green-line); text-decoration: none; }
.gr-calc-card__icon {
	width: 38px; height: 38px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gr-green-soft);
	color: var(--gr-green-dark);
	margin-bottom: 4px;
}
.gr-calc-card__title { font: 700 1rem/1.3 var(--gr-font-head); color: var(--gr-navy); }
.gr-calc-card__blurb { font-size: .84rem; color: var(--gr-muted); }
.gr-calc-card__go { position: absolute; top: 18px; right: 16px; color: var(--gr-green-line); }
.gr-calc-card:hover .gr-calc-card__go { color: var(--gr-green); }

.gr-calc-group { margin-bottom: 38px; }
.gr-calc-group__title {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 1.1rem;
	padding-bottom: 10px;
	margin-bottom: 16px;
	border-bottom: 2px solid var(--gr-line);
	scroll-margin-top: 90px;
}
.gr-calc-group__title svg { color: var(--gr-green); }

.gr-calc-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.gr-calc-jump a {
	padding: .38rem .85rem;
	border-radius: 999px;
	border: 1px solid var(--gr-line);
	background: var(--gr-card);
	color: var(--gr-muted);
	font: 600 .84rem/1.4 var(--gr-font-head);
}
.gr-calc-jump a:hover { border-color: var(--gr-green-line); color: var(--gr-green-dark); text-decoration: none; }

.gr-calc-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); gap: 12px; }
.gr-calc-strip a {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius-sm);
	padding: 14px;
	display: grid;
	gap: 6px;
	text-align: center;
	justify-items: center;
	font: 600 .88rem/1.3 var(--gr-font-head);
	color: var(--gr-navy);
}
.gr-calc-strip a:hover { border-color: var(--gr-green-line); color: var(--gr-green-dark); text-decoration: none; }
.gr-calc-strip svg { color: var(--gr-green); }

/* 9. Pages -------------------------------------------------------------- */

.gr-page { padding: 34px 0 60px; }
.gr-page__body { max-width: 78ch; }

.gr-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	margin: 26px 0;
}
.gr-stat {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 18px;
	text-align: center;
}
.gr-stat strong { display: block; font: 800 1.6rem/1.1 var(--gr-font-head); color: var(--gr-green-dark); }
.gr-stat span { font-size: .82rem; color: var(--gr-muted); }

.gr-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 26px 0; }
.gr-tier {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 24px;
	display: grid;
	gap: 10px;
	align-content: start;
}
.gr-tier--featured { border-color: var(--gr-green); box-shadow: 0 10px 30px rgba(0, 167, 111, .13); position: relative; }
.gr-tier--featured::after {
	content: attr(data-badge);
	position: absolute;
	top: -11px; left: 24px;
	background: var(--gr-green);
	color: #fff;
	font: 700 .68rem/1 var(--gr-font-head);
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .4rem .7rem;
	border-radius: 999px;
}
.gr-tier h3 { margin: 0; font-size: 1.06rem; }
.gr-tier__price { font: 800 1.9rem/1 var(--gr-font-head); color: var(--gr-navy); }
.gr-tier ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .9rem; color: var(--gr-muted); }
.gr-tier li { display: flex; gap: 8px; align-items: flex-start; }
.gr-tier li svg { color: var(--gr-green); margin-top: 2px; }

.gr-do-dont { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 26px 0; }
.gr-do-dont__col {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 22px;
}
.gr-do-dont h3 { display: flex; align-items: center; gap: 8px; font-size: 1rem; }
.gr-do-dont--yes h3 svg { color: var(--gr-green); }
.gr-do-dont--no h3 svg { color: var(--gr-danger); }
.gr-do-dont ul { margin: 0; padding-left: 1.2em; font-size: .92rem; color: var(--gr-muted); display: grid; gap: 7px; }

.gr-process { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 26px 0; }
.gr-process__step {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 20px;
}
.gr-process__n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--gr-navy);
	color: #fff;
	font: 700 .88rem/1 var(--gr-font-head);
	margin-bottom: 10px;
}
.gr-process h3 { font-size: .98rem; margin-bottom: .3rem; }
.gr-process p { font-size: .88rem; color: var(--gr-muted); margin: 0; }

.gr-pitch {
	background: var(--gr-card);
	border: 1px solid var(--gr-line);
	border-radius: var(--gr-radius);
	padding: 28px;
	margin: 30px 0;
	scroll-margin-top: 90px;
}
.gr-form { display: grid; gap: 16px; }
.gr-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gr-form label { display: grid; gap: 6px; }
.gr-form label > span { font: 600 .86rem/1.3 var(--gr-font-head); color: var(--gr-navy); }
.gr-form label em { color: var(--gr-danger); font-style: normal; }
.gr-form input[type="text"],
.gr-form input[type="email"],
.gr-form select,
.gr-form textarea {
	width: 100%;
	padding: .68rem .85rem;
	border: 1px solid var(--gr-line);
	border-radius: 9px;
	font: 400 .95rem/1.4 var(--gr-font-body);
	color: var(--gr-ink);
	background: #fdfefe;
}
.gr-form textarea { resize: vertical; }
.gr-form__fine { font-size: .8rem; color: var(--gr-faint); margin: 0; }

.gr-cta-band {
	background: linear-gradient(150deg, var(--gr-navy), #16405f);
	color: #d7e6ef;
	border-radius: var(--gr-radius);
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 40px 0;
}
.gr-cta-band h2 { color: #fff; margin-bottom: .3rem; }
.gr-cta-band p { margin: 0; color: #a9c1d0; }
.gr-cta-band__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.gr-404 { text-align: center; padding: 60px 0; }
.gr-404 .gr-searchbar { max-width: 460px; margin: 22px auto; }

/* 10. Responsive -------------------------------------------------------- */

@media (max-width: 1180px) {
	.gr-nav ul { gap: 16px; }
	.gr-nav a { font-size: .88rem; }
	.gr-shell { grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; }
}

@media (max-width: 1024px) {
	.gr-nav, .gr-header__cta { display: none; }
	.gr-burger { display: inline-flex; }
	.gr-hero { grid-template-columns: minmax(0, 1fr); }
	.gr-shell { grid-template-columns: minmax(0, 1fr); }
	.gr-sidebar { position: static; }
	.gr-calc { grid-template-columns: minmax(0, 1fr); }
	.gr-calc__result { border-left: 0; border-top: 1px solid var(--gr-line); }
	.gr-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 780px) {
	body { font-size: 16px; }
	.gr-topbar__tag { display: none; }
	.gr-news--wide {
		grid-template-columns: 1fr;
		grid-template-areas: "title" "text" "form" "fine";
		gap: 6px;
	}
	.gr-news--wide .gr-news__form { grid-template-columns: 1fr; margin-top: 10px; }
	.gr-news--wide .gr-btn { width: 100%; }
	.gr-form__row { grid-template-columns: 1fr; }
	.gr-prevnext { grid-template-columns: 1fr; }
	.gr-prevnext__next { text-align: left; }
	.gr-authorbox { flex-direction: column; }
	.gr-content :where(h2, h3, h4)[id] { scroll-margin-top: 76px; }
	.gr-calc__form, .gr-calc__result { padding: 20px; }
	.gr-field__head { flex-direction: column; align-items: stretch; gap: 8px; }
	.gr-field__box { max-width: none; }
	.gr-field__box input { width: 100%; text-align: left; }
}

@media (max-width: 560px) {
	:root { --gr-gap: 18px; }
	.gr-wrap { width: min(100% - 24px, var(--gr-wrap)); }
	.gr-footer__grid { grid-template-columns: 1fr; }
	.gr-card--list .gr-card__media { width: 92px; }
	.gr-calc-grid { grid-template-columns: 1fr 1fr; }
	.gr-calc-card { padding: 14px; }
	.gr-calc-card__blurb { display: none; }
	.gr-calc-card__go { display: none; }
	.gr-repeat__row { flex-wrap: wrap; }
	.gr-repeat__cell { flex: 1 1 120px; }
	.gr-wa { right: 14px; bottom: 14px; }
	.gr-totop { right: 14px; bottom: 80px; }
	.gr-share__label { width: 100%; margin-bottom: 4px; }
	.gr-calc__row { flex-direction: column; gap: 2px; }
	.gr-calc__row dd { text-align: left; }
}

/* Block editor widgets that a site owner keeps in the sidebar */
.gr-widget .wp-block-heading { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gr-muted); }
.wp-block-group__inner-container > h2 { font-size: 1rem; }
.gr-sidebar .widget_block ul { list-style: none; padding: 0; }
