/*
Theme Name: Greenground
Theme URI: https://www.greenground.it
Description: Lightweight news theme for Greenground. Mobile-first, fast, no dependencies.
Version: 1.0
Author: Greenground
Author URI: https://www.greenground.it
License: GPL-2.0-or-later
Text Domain: greenground
*/

/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
	--gg-green: #1a7a3a;
	--gg-green-dark: #0f5c2a;
	--gg-green-light: #e8f5e9;
	--gg-accent: #00e676;
	--gg-black: #111;
	--gg-gray-900: #1a1a1a;
	--gg-gray-700: #3a3a3a;
	--gg-gray-500: #6b7280;
	--gg-gray-400: #9ca3af;
	--gg-gray-300: #d1d5db;
	--gg-gray-200: #e5e7eb;
	--gg-gray-100: #f3f4f6;
	--gg-gray-50: #f9fafb;
	--gg-white: #fff;
	--gg-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--gg-radius: 12px;
	--gg-radius-full: 9999px;
	--gg-shadow: 0 1px 3px rgba(0,0,0,0.08);
	--gg-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
	--gg-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--gg-max-width: 1200px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	font-family: var(--gg-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gg-gray-900);
	background: var(--gg-gray-50);
}

a { color: var(--gg-green); text-decoration: none; transition: color 0.2s var(--gg-ease); }
a:hover { color: var(--gg-green-dark); }

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

h1, h2, h3, h4, h5, h6 {
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--gg-black);
}

.screen-reader-text {
	clip: rect(1px,1px,1px,1px);
	position: absolute;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-container {
	max-width: var(--gg-max-width);
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 768px) { .gg-container { padding: 0 1.5rem; } }

.gg-main-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding: 2rem 0;
}
@media (min-width: 640px) {
	.gg-main-grid { grid-template-columns: 1fr 1fr; }
}

.gg-posts {
	display: contents;
}

/* Hero card spans full width on two-col */
@media (min-width: 640px) {
	.gg-card-hero { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0,0,0,0.06);
	transition: box-shadow 0.3s var(--gg-ease);
}
.gg-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.gg-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
}

.gg-logo {
	font-weight: 900;
	font-size: 1.4rem;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}
.gg-logo a { color: var(--gg-green) !important; }

/* ── Desktop Nav ── */
.gg-nav { display: none; }
@media (min-width: 768px) {
	.gg-nav { display: flex; align-items: center; gap: 0; }
}

.gg-nav a {
	display: flex;
	align-items: center;
	padding: 0 0.8rem;
	color: var(--gg-gray-700);
	font-size: 0.85rem;
	font-weight: 600;
	min-height: 60px;
	position: relative;
	white-space: nowrap;
}
.gg-nav a:hover { color: var(--gg-green); }

/* Active indicator */
.gg-nav > li > a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 50%;
	width: 0; height: 2px;
	background: var(--gg-green);
	transition: width 0.25s var(--gg-ease), left 0.25s var(--gg-ease);
}
.gg-nav > li:hover > a::after,
.gg-nav > li.current-menu-item > a::after {
	width: calc(100% - 1.6rem);
	left: 0.8rem;
}

/* ── Dropdown ── */
.gg-nav, .gg-nav ul { list-style: none; }

.gg-nav > li { position: relative; }

.gg-nav > li > .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	width: max-content;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(16px);
	border-radius: 0 0 var(--gg-radius) var(--gg-radius);
	box-shadow: var(--gg-shadow-lg);
	border-top: 2px solid var(--gg-green);
	padding: 0.35rem 0;
	z-index: 100;
}
.gg-nav > li:hover > .sub-menu { display: block; }

.gg-nav .sub-menu li { display: block; }
.gg-nav .sub-menu a {
	min-height: 42px;
	padding: 0 1.2rem;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--gg-gray-700);
}
.gg-nav .sub-menu a:hover {
	background: var(--gg-green-light);
	color: var(--gg-green);
}
/* No underline on dropdown items */
.gg-nav .sub-menu a::after { display: none; }

/* ── Hamburger ── */
.gg-hamburger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
}
@media (min-width: 768px) { .gg-hamburger { display: none; } }

.gg-ham-line {
	display: block; width: 22px; height: 2px;
	background: var(--gg-gray-900);
	position: relative;
	transition: all 0.3s ease;
}
.gg-ham-line::before, .gg-ham-line::after {
	content: ''; display: block; width: 22px; height: 2px;
	background: var(--gg-gray-900);
	position: absolute; left: 0;
	transition: all 0.3s ease;
}
.gg-ham-line::before { top: -7px; }
.gg-ham-line::after { top: 7px; }

.gg-hamburger.open .gg-ham-line { background: transparent; }
.gg-hamburger.open .gg-ham-line::before { top: 0; transform: rotate(45deg); }
.gg-hamburger.open .gg-ham-line::after { top: 0; transform: rotate(-45deg); }

/* ── Mobile Nav ── */
.gg-mobile-overlay {
	position: fixed; inset: 0;
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(4px);
	z-index: 999;
	opacity: 0; visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s;
}
.gg-mobile-overlay.open { opacity: 1; visibility: visible; }

.gg-mobile-nav {
	position: fixed; top: 0; right: 0;
	width: min(85vw, 360px); height: 100dvh;
	background: var(--gg-white);
	z-index: 1001;
	transform: translateX(100%);
	transition: transform 0.35s var(--gg-ease);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 5rem 0 2rem;
	box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}
.gg-mobile-nav.open { transform: translateX(0); }

.gg-mobile-nav ul { list-style: none; }
.gg-mobile-nav li { border-bottom: 1px solid var(--gg-gray-100); }
.gg-mobile-nav a {
	display: flex; align-items: center;
	padding: 1rem 1.5rem;
	color: var(--gg-gray-900);
	font-size: 1rem; font-weight: 600;
}
.gg-mobile-nav a:hover { background: var(--gg-green-light); color: var(--gg-green); }
.gg-mobile-nav .sub-menu { display: none; background: var(--gg-gray-50); }
.gg-mobile-nav .sub-menu.open { display: block; }
.gg-mobile-nav .sub-menu a { padding-left: 2.5rem; font-size: 0.9rem; font-weight: 500; color: var(--gg-gray-700); }

.gg-sub-toggle {
	width: 44px; height: 44px; min-width: 44px;
	display: flex; align-items: center; justify-content: center;
	background: transparent; border: none; border-left: 1px solid var(--gg-gray-200);
	cursor: pointer; margin-left: auto;
}
.gg-sub-toggle svg { transition: transform 0.2s ease; }
.gg-sub-toggle.open svg { transform: rotate(180deg); }

.gg-mobile-nav .menu-item-has-children { display: flex; flex-wrap: wrap; }
.gg-mobile-nav .menu-item-has-children > a { flex: 1; }
.gg-mobile-nav .menu-item-has-children > .sub-menu { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-card {
	background: var(--gg-white);
	border-radius: var(--gg-radius);
	overflow: hidden;
	border: 1px solid var(--gg-gray-200);
	box-shadow: var(--gg-shadow);
	transition: transform 0.25s var(--gg-ease), box-shadow 0.25s var(--gg-ease);
}
.gg-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--gg-shadow-lg);
}

.gg-card-img {
	display: block;
	overflow: hidden;
	aspect-ratio: 16/9;
	background: var(--gg-gray-100);
	position: relative;
}
a.gg-card-img { text-decoration: none; color: inherit; }
.gg-card-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--gg-ease);
}
.gg-card:hover .gg-card-img img { transform: scale(1.03); }

/* Title overlay on image */
.gg-card-img-overlay {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 2.5rem 1rem 0.75rem;
	background: linear-gradient(transparent, rgba(0,0,0,0.75));
	color: #fff;
	pointer-events: none;
	z-index: 2;
}
.gg-card-img-overlay .gg-card-overlay-title {
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.3;
	text-shadow: 0 1px 4px rgba(0,0,0,0.5);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.gg-card-hero .gg-card-img-overlay .gg-card-overlay-title {
	font-size: 1.1rem;
}
@media (min-width: 640px) {
	.gg-card-hero .gg-card-img-overlay .gg-card-overlay-title { font-size: 1.4rem; }
}

.gg-card-body { padding: 1rem 1.25rem; }

.gg-card-cat {
	display: inline-block;
	padding: 0.2em 0.7em;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: var(--gg-radius-full);
	background: var(--gg-green);
	color: var(--gg-white);
	margin-bottom: 0.75rem;
}

.gg-card-title {
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 0.5rem;
}
.gg-card-title a { color: var(--gg-black); }
.gg-card-title a:hover { color: var(--gg-green); }

.gg-card-meta {
	font-size: 0.8rem;
	color: var(--gg-gray-500);
}
.gg-card-meta a { color: var(--gg-gray-500); }
.gg-card-meta a:hover { color: var(--gg-green); }

.gg-card-excerpt {
	font-size: 0.9rem;
	color: var(--gg-gray-700);
	margin-top: 0.75rem;
	line-height: 1.6;
}

/* ── Hero card (first post, larger) ── */
.gg-card-hero .gg-card-title { font-size: 1.5rem; }
@media (min-width: 768px) {
	.gg-card-hero .gg-card-title { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-single-header { margin-bottom: 2rem; }
.gg-single-title { font-size: 2rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .gg-single-title { font-size: 2.5rem; } }
.gg-single-meta { font-size: 0.85rem; color: var(--gg-gray-500); margin-bottom: 1.5rem; }

.gg-single-content {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--gg-gray-700);
}
.gg-single-content p { margin-bottom: 1.5em; }
.gg-single-content h2 {
	font-size: 1.5rem;
	margin: 2.5em 0 0.75em;
	padding-bottom: 0.4em;
	border-bottom: 2px solid var(--gg-green-light);
}
.gg-single-content h3 { font-size: 1.25rem; margin: 2em 0 0.5em; }
.gg-single-content blockquote {
	border-left: 4px solid var(--gg-green);
	margin: 2em 0; padding: 1em 1.5em;
	background: var(--gg-green-light);
	border-radius: 0 var(--gg-radius) var(--gg-radius) 0;
	font-style: italic; color: var(--gg-gray-700);
}
.gg-single-content a { text-decoration: underline; text-underline-offset: 2px; }
.gg-single-content img { border-radius: var(--gg-radius); margin: 1.5em 0; }

.gg-featured-img {
	border-radius: var(--gg-radius);
	overflow: hidden;
	margin-bottom: 2rem;
}
.gg-featured-img img { width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-sidebar .widget {
	background: var(--gg-white);
	border-radius: var(--gg-radius);
	padding: 1.25rem;
	box-shadow: var(--gg-shadow);
	border: 1px solid var(--gg-gray-200);
	margin-bottom: 1.5rem;
}
.gg-sidebar .widget-title {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: var(--gg-gray-500);
	padding-bottom: 0.75em;
	border-bottom: 2px solid var(--gg-green);
	margin-bottom: 1em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-pagination {
	display: flex; flex-wrap: wrap; gap: 0.5rem;
	justify-content: center; margin: 2rem 0;
}
.gg-pagination a, .gg-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	border-radius: 10px; font-weight: 600; font-size: 0.9rem;
	background: var(--gg-white); color: var(--gg-gray-700);
	border: 1px solid var(--gg-gray-200);
	transition: all 0.2s var(--gg-ease);
}
.gg-pagination a:hover { background: var(--gg-green-light); color: var(--gg-green); border-color: var(--gg-green); }
.gg-pagination .current { background: var(--gg-green); color: var(--gg-white); border-color: var(--gg-green); }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — SP1NDEX-inspired dark footer
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-footer {
	background: #111118;
	color: #94a3b8;
	margin-top: 3rem;
	border-top: 1px solid #2a2a35;
}

.gg-footer-top {
	padding: 2.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
@media (min-width: 768px) {
	.gg-footer-top {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 3rem;
	}
}

/* Brand section */
.gg-footer-brand {
	flex: 1;
}
.gg-footer-brand-name {
	font-weight: 900;
	font-size: 1.3rem;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--gg-green, #1a7a3a);
	margin-bottom: 0.5rem;
}
.gg-footer-brand-desc {
	font-size: 0.85rem;
	line-height: 1.6;
	color: #64748b;
	max-width: 320px;
}

/* Social icons — small, inline, like SP1NDEX */
.gg-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	align-items: center;
}
.gg-footer-social a {
	display: inline-flex;
	align-items: center;
	color: #64748b;
	transition: color 0.2s ease, transform 0.2s ease;
}
.gg-footer-social a:hover {
	color: #fff;
	transform: translateY(-1px);
}
.gg-footer-social svg { width: 16px; height: 16px; }

/* Links section */
.gg-footer-links {
	display: flex;
	gap: 3rem;
}
.gg-footer-links-col h4 {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #64748b;
	margin-bottom: 0.75rem;
	font-weight: 700;
}
.gg-footer-links-col a {
	display: block;
	font-size: 0.85rem;
	color: #94a3b8;
	padding: 0.25rem 0;
	transition: color 0.15s ease;
}
.gg-footer-links-col a:hover { color: #fff; }

/* Bottom bar */
.gg-footer-bottom {
	border-top: 1px solid #2a2a35;
	padding: 1.25rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	justify-content: center;
	align-items: center;
	font-size: 0.75rem;
	color: #475569;
}
.gg-footer-bottom a { color: #64748b; transition: color 0.15s ease; }
.gg-footer-bottom a:hover { color: #fff; }
.gg-footer-sep { color: #334155; }

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH FORM
   ═══════════════════════════════════════════════════════════════════════════ */

.search-form { display: flex; gap: 0.5rem; }
.search-field {
	flex: 1; padding: 0.6em 1.2em;
	border: 2px solid var(--gg-gray-200);
	border-radius: var(--gg-radius-full);
	font-size: 16px; font-family: var(--gg-font);
	transition: border-color 0.2s var(--gg-ease);
}
.search-field:focus { border-color: var(--gg-green); outline: none; box-shadow: 0 0 0 3px rgba(26,122,58,0.12); }
.search-submit {
	padding: 0.6em 1.2em;
	background: var(--gg-green); color: var(--gg-white);
	border: none; border-radius: var(--gg-radius-full);
	font-weight: 600; cursor: pointer;
	transition: background 0.2s var(--gg-ease);
}
.search-submit:hover { background: var(--gg-green-dark); }

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-scroll-top {
	position: fixed; bottom: 1.5rem; right: 1.5rem;
	width: 48px; height: 48px;
	border-radius: var(--gg-radius-full);
	background: var(--gg-green); color: var(--gg-white);
	border: none; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--gg-shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(20px);
	transition: all 0.25s var(--gg-ease);
	z-index: 999;
}
.gg-scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gg-scroll-top:hover { background: var(--gg-green-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════════
   READING PROGRESS BAR (single posts)
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-reading-progress {
	position: fixed; top: 0; left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gg-green), var(--gg-accent));
	z-index: 10000;
	transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH OVERLAY — SP1NDEX style
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--gg-gray-500);
	transition: color 0.2s var(--gg-ease);
}
.gg-search-toggle:hover { color: var(--gg-green); }
.gg-search-toggle svg { width: 20px; height: 20px; }

.gg-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(10, 10, 15, 0.96);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 20vh;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s;
}
.gg-search-overlay.open {
	opacity: 1;
	visibility: visible;
}

@keyframes gg-search-slide {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

.gg-search-inner {
	width: 90%;
	max-width: 640px;
}
.gg-search-overlay.open .gg-search-inner {
	animation: gg-search-slide 0.35s ease both;
}

.gg-search-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--gg-green);
	margin-bottom: 1rem;
}

.gg-search-input {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 2px solid rgba(255,255,255,0.15);
	padding: 0.75rem 0;
	font-family: var(--gg-font);
	font-size: clamp(1.5rem, 5vw, 2.5rem);
	font-weight: 600;
	color: #f0f0f5;
	caret-color: var(--gg-green);
	outline: none;
	transition: border-color 0.2s ease;
}
.gg-search-input::placeholder { color: rgba(255,255,255,0.2); }
.gg-search-input:focus { border-color: var(--gg-green); }

.gg-search-close {
	position: absolute;
	top: 1.5rem; right: 1.5rem;
	background: transparent;
	border: none;
	color: rgba(255,255,255,0.4);
	font-size: 2rem;
	cursor: pointer;
	width: 48px; height: 48px;
	display: flex; align-items: center; justify-content: center;
	transition: color 0.2s ease;
}
.gg-search-close:hover { color: #fff; }

.gg-search-hint {
	margin-top: 1rem;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════════════════════════════
   COOKIE BANNER — simple, GDPR-compliant
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-cookie-banner {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 100000;
	background: #111118;
	border-top: 1px solid #2a2a35;
	padding: 1rem;
	display: none;
}
.gg-cookie-banner.show { display: block; }

.gg-cookie-inner {
	max-width: var(--gg-max-width);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}
.gg-cookie-text {
	flex: 1;
	min-width: 200px;
	font-size: 0.85rem;
	color: #94a3b8;
	line-height: 1.5;
}
.gg-cookie-text a { color: var(--gg-green); text-decoration: underline; }
.gg-cookie-btns {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}
.gg-cookie-btn {
	padding: 0.5rem 1.25rem;
	border-radius: var(--gg-radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	font-family: var(--gg-font);
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
}
.gg-cookie-accept {
	background: var(--gg-green);
	color: #fff;
}
.gg-cookie-accept:hover { background: var(--gg-green-dark); }
.gg-cookie-reject {
	background: transparent;
	color: #94a3b8;
	border: 1px solid #2a2a35;
}
.gg-cookie-reject:hover { color: #fff; border-color: #555; }

/* ═══════════════════════════════════════════════════════════════════════════
   404
   ═══════════════════════════════════════════════════════════════════════════ */

.gg-404 { text-align: center; padding: 4rem 1rem; }
.gg-404 h1 { font-size: 5rem; color: var(--gg-green); }
.gg-404 p { font-size: 1.2rem; color: var(--gg-gray-500); margin: 1rem 0 2rem; }
