/* ============================================================
   Gravity CX — Help Center Theme
   Based on Zendesk Copenhagen / GCX Design System
   ============================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("{{asset 'Inter-VariableFont.ttf'}}") format('truetype-variations');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("{{asset 'SpaceGrotesk-VariableFont.ttf'}}") format('truetype-variations');
}

:root {
  --gcx-orange-soft:   rgba(231,130,0,0.10);
  --gcx-orange-ring:   rgba(231,130,0,0.30);
  --gcx-white:         #FFFFFF;
  --gcx-cream:         #FCF2E5;
  --gcx-cream-deep:    #F7E5C9;
  --gcx-light-gray:    #FAFAFA;
  --gcx-mid-gray:      #CCCCCC;
  --gcx-border:        #E6E6E6;
  --gcx-text-gray:     #555555;
  --gcx-text-muted:    #888888;

  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, sans-serif;

  --radius-sm:   6px;
  --radius:      8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-pill: 100px;

  --shadow-xs:    0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:    0 2px 6px rgba(0,0,0,0.05);
  --shadow-md:    0 10px 28px rgba(0,0,0,0.10);
  --shadow-lg:    0 18px 48px rgba(0,0,0,0.12);
  --shadow-focus: 0 0 0 3px var(--gcx-orange-soft);

  --ease:         cubic-bezier(0.2, 0.8, 0.2, 1);
  --max-content:  1200px;

  --gcx-section-py: 96px;
  --gcx-card-pad:   28px;
  --gcx-gap:        20px;
}

/* ───── Normalize ───── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--gcx-black);
  background: var(--gcx-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--gcx-black);
  line-height: 1.15;
}

a { color: var(--gcx-orange); text-decoration: none; }
a:hover { color: var(--gcx-orange-hover); }
img { border-style: none; max-width: 100%; }

::selection { background: var(--gcx-orange); color: #fff; }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

.visibility-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ───── Skip nav ───── */
.skip-navigation {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gcx-orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  z-index: 100;
  transition: top 150ms;
}
.skip-navigation:focus { top: 0; color: #fff; }

/* ───── Utilities ───── */
.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gcx-orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gcx-orange); }
.orange-bar { width: 48px; height: 3px; background: var(--gcx-orange); border: none; margin: 0; display: block; }

/* ───── HEADER ───── */
.gcx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gcx-border);
  transition: box-shadow 150ms var(--ease);
}
.gcx-header.scrolled { box-shadow: var(--shadow-sm); }
.gcx-header-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.gcx-header-logo { display: inline-flex; align-items: center; }
.gcx-header-logo img { height: 30px; display: block; }
.gcx-header-spacer { flex: 1; }
.gcx-header-nav { display: flex; align-items: center; gap: 8px; }

/* Mobile toggle */
.gcx-mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--gcx-black);
  border-radius: var(--radius);
}
.gcx-mobile-toggle:hover { background: var(--gcx-light-gray); }
.gcx-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 32px 20px;
  border-top: 1px solid var(--gcx-border);
  background: rgba(255,255,255,0.97);
}
.gcx-mobile-nav.open { display: flex; }
.gcx-mobile-nav a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gcx-black);
  padding: 12px 0;
  border-bottom: 1px solid var(--gcx-border);
  display: block;
  text-decoration: none;
}

/* ───── Buttons ───── */
.gcx-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 150ms var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: -0.005em;
  white-space: nowrap;
  line-height: 1;
}
.gcx-btn-primary { background: var(--gcx-orange); color: #fff; border-color: var(--gcx-orange); }
.gcx-btn-primary:hover { background: var(--gcx-orange-hover); border-color: var(--gcx-orange-hover); color: #fff; }
.gcx-btn-ghost { background: transparent; color: var(--gcx-black); border-color: transparent; }
.gcx-btn-ghost:hover { background: var(--gcx-light-gray); }
.gcx-btn-lg { font-size: 15px; padding: 13px 26px; }

/* ───── HERO ───── */
.gcx-hero {
  position: relative;
  background: var(--gcx-cream);
  padding: 88px 32px 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--gcx-cream-deep);
}
.gcx-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(231,130,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231,130,0,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 70%);
}
.gcx-hero-orb {
  position: absolute;
  top: -120px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(231,130,0,0.18), transparent 65%);
  pointer-events: none;
}
.gcx-hero-inner {
  position: relative;
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.gcx-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gcx-orange);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gcx-hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gcx-orange); }
.gcx-hero-title {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.gcx-hero-title em { font-style: normal; color: var(--gcx-orange); }
.gcx-hero-desc { font-size: 18px; color: var(--gcx-text-gray); max-width: 520px; line-height: 1.6; margin: 0 0 28px; }

/* Search form */
.gcx-search-wrap {
  position: relative;
  max-width: 560px;
}
.gcx-search-wrap .search-icon-wrap {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--gcx-black);
  pointer-events: none;
  display: flex;
  z-index: 1;
}
/* Target the Zendesk {{search}} helper wrapper */
.gcx-search-wrap form,
.gcx-search-wrap .search {
  background: #fff;
  border: 1.5px solid var(--gcx-black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  transition: box-shadow 150ms var(--ease);
  box-shadow: 5px 5px 0 0 var(--gcx-black);
}
.gcx-search-wrap form:focus-within,
.gcx-search-wrap .search:focus-within {
  box-shadow: 5px 5px 0 0 var(--gcx-orange);
  border-color: var(--gcx-orange);
}
.clear-button { display: none; }
.gcx-search-wrap input[type="search"],
.gcx-search-wrap input[type="text"] {
  flex: 1;
  border: 0 !important;
  background: transparent !important;
  padding: 17px 16px 17px 48px !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  color: var(--gcx-black) !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
}
.gcx-search-wrap input::placeholder { color: var(--gcx-text-muted) !important; }
.gcx-search-kbd {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--gcx-text-gray);
  background: var(--gcx-light-gray);
  border: 1px solid var(--gcx-border);
  padding: 4px 8px;
  border-radius: 6px;
  margin-right: 12px;
  white-space: nowrap;
  flex: none;
}

/* Hero side card */
.gcx-hero-side {
  background: #fff;
  border: 1px solid var(--gcx-border);
  border-top: 3px solid var(--gcx-orange);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.gcx-hero-side-title {
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gcx-orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gcx-hero-side ul { list-style: none; padding: 0; margin: 0; }
.gcx-hero-side li { border-bottom: 1px solid var(--gcx-border); }
.gcx-hero-side li:last-child { border-bottom: 0; }
.gcx-hero-side li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  color: var(--gcx-black);
  font-size: 15px;
  font-weight: 500;
  transition: color 150ms var(--ease);
  text-decoration: none;
}
.gcx-hero-side li a:hover { color: var(--gcx-orange); }
.gcx-hero-side .chevron { color: var(--gcx-mid-gray); transition: transform 150ms var(--ease), color 150ms; }
.gcx-hero-side li a:hover .chevron { color: var(--gcx-orange); transform: translateX(3px); }

/* ───── AI pulse ───── */
@keyframes ai-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 36px rgba(231,130,0,0.4), inset 0 0 8px rgba(255,255,255,0.4); }
  50% { transform: scale(1.06); box-shadow: 0 0 56px rgba(231,130,0,0.6), inset 0 0 8px rgba(255,255,255,0.4); }
}

/* ───── SECTIONS ───── */
.gcx-section { padding: var(--gcx-section-py) 32px; }
.gcx-section.alt { background: var(--gcx-light-gray); }
.gcx-section.cream { background: var(--gcx-cream); }
.gcx-section-inner { max-width: var(--max-content); margin: 0 auto; }

.gcx-section-head { margin-bottom: 48px; max-width: 740px; }
.gcx-section-head .orange-bar { margin: 14px 0 20px; }
.gcx-section-head h2 { font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.025em; margin: 0 0 14px; }
.gcx-section-head p { font-size: 17px; color: var(--gcx-text-gray); line-height: 1.6; margin: 0; }

.gcx-section-headrow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

/* ───── Category cards ───── */
.gcx-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gcx-gap);
}
.gcx-category {
  background: #fff;
  border: 1px solid var(--gcx-border);
  border-radius: var(--radius-md);
  padding: var(--gcx-card-pad);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 200ms var(--ease);
  position: relative;
  overflow: hidden;
}
.gcx-category::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gcx-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms var(--ease);
}
.gcx-category:hover { border-color: var(--gcx-orange); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gcx-category:hover::before { transform: scaleX(1); }

.gcx-category-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gcx-cream);
  color: var(--gcx-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 200ms var(--ease);
  flex: none;
}
.gcx-category:hover .gcx-category-icon { background: #f0e2cb; }
.gcx-category-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--gcx-black);
  margin: 0 0 8px;
}
.gcx-category-desc { font-size: 14px; color: var(--gcx-text-gray); line-height: 1.55; margin: 0 0 20px; flex: 1; }
.gcx-category-meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gcx-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ───── Promoted articles ───── */
.gcx-promoted { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gcx-gap); }
.gcx-promoted-card {
  background: var(--gcx-cream);
  border: 1px solid transparent;
  border-left: 3px solid var(--gcx-orange);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  transition: all 200ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gcx-promoted-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gcx-promoted-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gcx-orange);
}
.gcx-promoted-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--gcx-black);
  line-height: 1.3;
  margin: 0;
}
.gcx-promoted-meta { font-size: 12px; color: var(--gcx-text-muted); margin-top: auto; padding-top: 12px; }

/* ───── Subnav ───── */
.gcx-subnav { border-bottom: 1px solid var(--gcx-border); background: var(--gcx-light-gray); padding: 14px 32px; }
.gcx-subnav-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.gcx-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gcx-text-muted);
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
.gcx-breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; }
.gcx-breadcrumbs li + li::before { content: '/'; color: var(--gcx-mid-gray); }
.gcx-breadcrumbs a { color: var(--gcx-text-muted); transition: color 150ms; text-decoration: none; }
.gcx-breadcrumbs a:hover { color: var(--gcx-orange); }
.gcx-breadcrumbs li:last-child { color: var(--gcx-black); }

.gcx-subnav-search { position: relative; width: 280px; }
.gcx-subnav-search .search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--gcx-text-muted);
  pointer-events: none;
}
.gcx-subnav-search input,
.gcx-subnav-search .search input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--gcx-border);
  border-radius: var(--radius-pill);
  background: #fff;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.gcx-subnav-search input:focus { border-color: var(--gcx-orange); box-shadow: var(--shadow-focus); }

/* ───── Page header ───── */
.gcx-page-header { padding: 52px 32px 32px; max-width: var(--max-content); margin: 0 auto; }
.gcx-page-header .orange-bar { margin: 0 0 18px; }
.gcx-page-header h1 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.03em; margin: 12px 0 12px; }
.gcx-page-header p { font-size: 17px; color: var(--gcx-text-gray); max-width: 700px; line-height: 1.6; margin: 0; }

/* ───── Article list ───── */
.gcx-articles { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--gcx-border); }
.gcx-article-row { border-bottom: 1px solid var(--gcx-border); transition: background 150ms var(--ease); }
.gcx-article-row:hover { background: var(--gcx-cream); }
.gcx-article-row a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  text-decoration: none;
  color: var(--gcx-black);
}
.gcx-article-icon { flex: none; color: var(--gcx-mid-gray); transition: color 150ms; display: flex; }
.gcx-article-row:hover .gcx-article-icon { color: var(--gcx-orange); }
.gcx-article-row.promoted .gcx-article-icon { color: var(--gcx-orange); }
.gcx-article-title-link { font-size: 16px; font-weight: 500; flex: 1; min-width: 0; }
.gcx-article-meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gcx-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.gcx-pill-promoted {
  background: var(--gcx-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.gcx-section-group { margin-bottom: 48px; }
.gcx-section-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.gcx-section-group-head h2 { font-size: 21px; font-weight: 700; }
.gcx-section-group-head a { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--gcx-orange); display: inline-flex; align-items: center; gap: 4px; transition: gap 150ms; }
.gcx-section-group-head a:hover { gap: 8px; }

/* ───── Article page ───── */
.gcx-article-layout {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 32px 32px 80px;
  display: grid;
  grid-template-columns: 230px 1fr 210px;
  gap: 48px;
  align-items: start;
}
.gcx-article-sidebar { position: sticky; top: 88px; }
.gcx-article-sidebar-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gcx-text-muted);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gcx-border);
}
.gcx-article-sidebar ul { list-style: none; margin: 0; padding: 0; }
.gcx-article-sidebar li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--gcx-text-gray);
  border-radius: 6px;
  border-left: 2px solid transparent;
  margin-left: -14px;
  transition: all 150ms var(--ease);
  text-decoration: none;
}
.gcx-article-sidebar li a:hover { color: var(--gcx-black); background: var(--gcx-light-gray); }
.gcx-article-sidebar li a.current { color: var(--gcx-black); background: var(--gcx-cream); border-left-color: var(--gcx-orange); font-weight: 600; }

.gcx-article-toc { position: sticky; top: 88px; }
.gcx-article-toc-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gcx-text-muted);
  margin-bottom: 12px;
}
.gcx-article-toc ol { list-style: none; margin: 0; padding: 0; }
.gcx-article-toc li a {
  display: block;
  padding: 6px 0 6px 14px;
  font-size: 13px;
  color: var(--gcx-text-gray);
  border-left: 2px solid var(--gcx-border);
  transition: color 150ms, border-color 150ms;
  text-decoration: none;
}
.gcx-article-toc li a:hover { color: var(--gcx-orange); }
.gcx-article-toc li.active a { color: var(--gcx-black); border-left-color: var(--gcx-orange); font-weight: 600; }

.gcx-article-main { min-width: 0; }
.gcx-article-header { border-bottom: 1px solid var(--gcx-border); padding-bottom: 28px; margin-bottom: 32px; }
.gcx-article-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gcx-orange);
  margin-bottom: 14px;
}
.gcx-article-title { font-size: clamp(26px, 3.5vw, 40px); letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 18px; }
.gcx-article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 13px; color: var(--gcx-text-muted); font-family: var(--font-display); font-weight: 500; }
.gcx-article-meta .dot { width: 3px; height: 3px; background: var(--gcx-mid-gray); border-radius: 50%; display: inline-block; }

.gcx-article-body { font-size: 17px; line-height: 1.7; color: #2A2B2B; }
.gcx-article-body h2 { font-size: 24px; margin: 36px 0 14px; letter-spacing: -0.02em; }
.gcx-article-body h3 { font-size: 19px; margin: 28px 0 10px; }
.gcx-article-body p { margin: 0 0 18px; }
.gcx-article-body ul, .gcx-article-body ol { padding-left: 22px; margin: 0 0 18px; }
.gcx-article-body li { margin-bottom: 8px; }
.gcx-article-body a { color: var(--gcx-orange); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gcx-orange-ring); }
.gcx-article-body a:hover { text-decoration-color: var(--gcx-orange); }
.gcx-article-body blockquote { border-left: 3px solid var(--gcx-orange); background: var(--gcx-cream); padding: 18px 22px; margin: 24px 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }
.gcx-article-body code { background: var(--gcx-light-gray); border: 1px solid var(--gcx-border); padding: 2px 6px; border-radius: 4px; font-family: ui-monospace, monospace; font-size: 14px; }
.gcx-article-body pre { background: var(--gcx-black); color: #F5F5F5; padding: 20px; border-radius: var(--radius); overflow-x: auto; font-family: ui-monospace, monospace; font-size: 13.5px; line-height: 1.6; }
.gcx-article-body pre code { background: transparent; border: 0; padding: 0; color: inherit; }
.gcx-article-body img { border-radius: var(--radius); border: 1px solid var(--gcx-border); }
.gcx-article-body table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 15px; }
.gcx-article-body th { text-align: left; font-family: var(--font-display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gcx-text-muted); padding: 10px 14px; border-bottom: 2px solid var(--gcx-border); }
.gcx-article-body td { padding: 12px 14px; border-bottom: 1px solid var(--gcx-border); vertical-align: top; }

/* Article footer */
.gcx-article-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gcx-border); }
.gcx-vote { background: var(--gcx-light-gray); border: 1px solid var(--gcx-border); border-radius: var(--radius-md); padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.gcx-vote-q { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--gcx-black); }
.gcx-vote .vote-up-button, .gcx-vote .vote-down-button {
  background: #fff;
  border: 1.5px solid var(--gcx-border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gcx-black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 150ms var(--ease);
}
.gcx-vote .vote-up-button:hover, .gcx-vote .vote-down-button:hover { border-color: var(--gcx-orange); color: var(--gcx-orange); }
.gcx-vote .vote-up-button.active, .gcx-vote .vote-down-button.active { background: var(--gcx-orange); color: #fff; border-color: var(--gcx-orange); }

.gcx-related { margin-top: 56px; }
.gcx-related h3 { font-size: 12px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; color: var(--gcx-text-muted); font-weight: 700; margin: 0 0 14px; }
.gcx-related ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gcx-related a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--gcx-border); border-radius: var(--radius); font-size: 14px; color: var(--gcx-black); font-weight: 500; text-decoration: none; transition: all 150ms var(--ease); background: #fff; }
.gcx-related a:hover { border-color: var(--gcx-orange); color: var(--gcx-orange); transform: translateX(2px); }

/* ───── FOOTER ───── */
.gcx-footer { background: var(--gcx-black); color: #fff; padding: 64px 32px 40px; position: relative; overflow: hidden; }
.gcx-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gcx-orange), transparent 70%); }
.gcx-footer-glow { position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(231,130,0,0.08), transparent 65%); pointer-events: none; }
.gcx-footer-inner { max-width: var(--max-content); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; position: relative; }
.gcx-footer-brand img { height: 30px; margin-bottom: 16px; display: block; filter: brightness(0) invert(1); }
.gcx-footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 360px; margin: 0; }
.gcx-footer h4 { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin: 0 0 14px; }
.gcx-footer ul { list-style: none; margin: 0; padding: 0; }
.gcx-footer li { margin-bottom: 10px; }
.gcx-footer li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 150ms; text-decoration: none; }
.gcx-footer li a:hover { color: var(--gcx-orange); }
.gcx-footer-bottom { max-width: var(--max-content); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); font-family: var(--font-display); position: relative; }

/* Language dropdown in footer (Zendesk {{locale_selector}}) */
.gcx-footer .dropdown-toggle, .gcx-footer select {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 12px;
  cursor: pointer;
}

/* ───── Forms ───── */
.gcx-form-shell { max-width: 740px; margin: 0 auto; background: #fff; border: 1px solid var(--gcx-border); border-top: 3px solid var(--gcx-orange); border-radius: var(--radius-md); padding: 40px 44px; }
.gcx-form-shell h1 { font-size: 30px; letter-spacing: -0.02em; margin-bottom: 6px; }
.gcx-form-sub { font-size: 15px; color: var(--gcx-text-gray); margin: 0 0 28px; }

/* Override Zendesk form field styles */
.form-field, .gcx-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.form-field label, .gcx-field label { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--gcx-black); }
.form-field .hint { font-size: 12.5px; color: var(--gcx-text-muted); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field select,
.form-field textarea,
.gcx-input, .gcx-select, .gcx-textarea {
  padding: 11px 14px;
  border: 1px solid var(--gcx-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gcx-black);
  background: #fff;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.gcx-input:focus, .gcx-select:focus, .gcx-textarea:focus { border-color: var(--gcx-orange); box-shadow: var(--shadow-focus); }
.form-field textarea, .gcx-textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.form-field select, .gcx-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23191A1A' stroke-linecap='round' d='M3 4.5l2.6 2.6c.2.2.5.2.7 0L9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ───── Search results page ───── */
.gcx-results-layout { max-width: var(--max-content); margin: 0 auto; padding: 40px 32px 80px; display: grid; grid-template-columns: 220px 1fr; gap: 48px; }
.gcx-results-side h3 { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gcx-text-muted); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--gcx-border); font-weight: 700; }
.gcx-results-side ul { list-style: none; margin: 0 0 32px; padding: 0; }
.gcx-results-side li a { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; font-size: 14px; color: var(--gcx-text-gray); border-radius: 6px; margin-left: -12px; text-decoration: none; transition: all 150ms; }
.gcx-results-side li a:hover { color: var(--gcx-black); background: var(--gcx-light-gray); }
.gcx-results-side li a.current { color: var(--gcx-black); background: var(--gcx-cream); border-left: 2px solid var(--gcx-orange); padding-left: 10px; margin-left: -14px; font-weight: 600; }
.gcx-results-side .count { color: var(--gcx-text-muted); font-family: var(--font-display); font-size: 12px; }

/* Generative answer */
.gcx-gen-answer { background: linear-gradient(135deg, var(--gcx-cream) 0%, #fff 100%); border: 1px solid var(--gcx-cream-deep); border-left: 3px solid var(--gcx-orange); border-radius: var(--radius-md); padding: 28px 32px; margin-bottom: 36px; box-shadow: var(--shadow-sm); }
.gcx-gen-answer-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.gcx-gen-answer-orb { width: 32px; height: 32px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff 0%, var(--gcx-orange) 50%, var(--gcx-orange-hover) 100%); box-shadow: 0 0 16px rgba(231,130,0,0.3); flex: none; animation: ai-pulse 3s ease-in-out infinite; }
.gcx-gen-answer-badge { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gcx-orange); display: block; margin-bottom: 2px; }
.gcx-gen-answer-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--gcx-black); margin: 0; letter-spacing: -0.015em; }
.gcx-gen-answer-body { font-size: 15.5px; line-height: 1.65; color: var(--gcx-black); margin-top: 14px; }
.gcx-gen-answer-body p { margin: 0 0 12px; }
.gcx-gen-answer-body p:last-child { margin-bottom: 0; }
.gcx-gen-answer-sources { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--gcx-cream-deep); }
.gcx-gen-answer-sources-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gcx-text-muted); margin-right: 4px; }
.gcx-gen-answer-source { font-family: var(--font-display); font-size: 12px; font-weight: 600; background: #fff; border: 1px solid var(--gcx-border); border-radius: var(--radius-pill); padding: 5px 12px 5px 5px; color: var(--gcx-text-gray); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: all 150ms; }
.gcx-gen-answer-source:hover { border-color: var(--gcx-orange); color: var(--gcx-orange); }
.gcx-gen-answer-source-num { background: var(--gcx-orange); color: #fff; width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex: none; }

.gcx-search-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; flex-wrap: wrap; gap: 8px; }
.gcx-search-meta h1 { font-size: 26px; letter-spacing: -0.02em; margin: 0; }
.gcx-search-count { font-family: var(--font-display); font-size: 13px; color: var(--gcx-text-muted); font-weight: 500; }

.gcx-result-list { list-style: none; margin: 0; padding: 0; }
.gcx-result { border-top: 1px solid var(--gcx-border); padding: 24px 0; }
.gcx-result:last-child { border-bottom: 1px solid var(--gcx-border); }
.gcx-result-crumbs { font-family: var(--font-display); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gcx-text-muted); margin-bottom: 6px; }
.gcx-result-title { font-size: 19px; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; margin: 0 0 6px; }
.gcx-result-title a { color: var(--gcx-black); text-decoration: none; }
.gcx-result-title a:hover { color: var(--gcx-orange); }
.gcx-result-snippet { font-size: 15px; color: var(--gcx-text-gray); line-height: 1.6; margin: 0; }
.gcx-result-snippet mark { background: var(--gcx-cream); color: var(--gcx-black); padding: 1px 3px; border-radius: 3px; font-weight: 600; font-style: normal; }
.gcx-results-layout--full { grid-template-columns: 1fr; }
.gcx-no-results { padding: 48px 0; text-align: center; color: var(--gcx-text-muted); }
.gcx-no-results svg { display: block; margin: 0 auto 16px; opacity: 0.3; }
.gcx-no-results-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gcx-black); margin: 0 0 8px; }
.gcx-no-results p { font-size: 15px; margin: 0; }

/* ───── Requests page ───── */
.gcx-shell { background: var(--gcx-light-gray); min-height: 60vh; }
.gcx-shell-inner { max-width: var(--max-content); margin: 0 auto; padding: 56px 32px 80px; }
.gcx-requests-toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.gcx-requests-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--gcx-border); border-radius: var(--radius-md); overflow: hidden; }
.gcx-requests-table thead { background: var(--gcx-light-gray); }
.gcx-requests-table th { text-align: left; font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gcx-text-muted); padding: 14px 18px; border-bottom: 1px solid var(--gcx-border); }
.gcx-requests-table td { padding: 18px; border-bottom: 1px solid var(--gcx-border); font-size: 14.5px; vertical-align: top; }
.gcx-requests-table tr:last-child td { border-bottom: 0; }
.gcx-requests-table tr:hover td { background: var(--gcx-cream); }
.req-subject { font-family: var(--font-display); font-weight: 600; color: var(--gcx-black); }
.req-id { font-family: ui-monospace, monospace; color: var(--gcx-text-muted); font-size: 12.5px; margin-top: 2px; }

.gcx-status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: var(--radius-pill); }
.gcx-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.gcx-status.open { background: rgba(231,130,0,0.12); color: var(--gcx-orange); }
.gcx-status.solved { background: rgba(34,128,72,0.12); color: #228048; }
.gcx-status.pending { background: rgba(80,80,80,0.08); color: var(--gcx-text-gray); }
.gcx-status.new { background: rgba(231,130,0,0.06); color: var(--gcx-text-gray); border: 1px solid var(--gcx-orange-ring); }

/* ───── Dropdowns (user menu) ───── */
.dropdown { position: relative; }
.dropdown-toggle { background: transparent; border: 0; cursor: pointer; display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--gcx-black); padding: 8px 12px; border-radius: var(--radius); transition: background 150ms; }
.dropdown-toggle:hover { background: var(--gcx-light-gray); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--gcx-border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); min-width: 180px; padding: 6px; display: none; z-index: 60; }
.dropdown.is-open .dropdown-menu,
.dropdown-toggle[aria-expanded="true"] + .dropdown-menu { display: block; }
.dropdown-menu a, .dropdown-menu [role="menuitem"] { display: block; padding: 9px 14px; font-size: 14px; color: var(--gcx-black); border-radius: var(--radius-sm); transition: background 100ms; text-decoration: none; width: 100%; text-align: left; background: transparent; border: none; cursor: pointer; font-family: var(--font-body); box-sizing: border-box; }
.dropdown-menu a:hover, .dropdown-menu [role="menuitem"]:hover { background: var(--gcx-light-gray); color: var(--gcx-black); }
.separator { height: 1px; background: var(--gcx-border); margin: 6px 0; }
.user-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }

/* ───── Activities toolbar ───── */
.gcx-activities-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 0; flex-wrap: wrap; }

/* ───── Tab nav ───── */
.gcx-tab-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; border-bottom: 2px solid var(--gcx-border); }
.gcx-tab-nav a { display: block; padding: 10px 16px; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--gcx-text-muted); text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 150ms, border-color 150ms; }
.gcx-tab-nav a:hover { color: var(--gcx-black); }
.gcx-tab-nav a.active { color: var(--gcx-orange); border-bottom-color: var(--gcx-orange); }

/* ───── Activities layout ───── */
.gcx-activities-layout { display: grid; grid-template-columns: 200px 1fr; gap: 48px; }
.gcx-activities-side-nav { list-style: none; margin: 0; padding: 0; }
.gcx-activities-side-nav li a { display: block; padding: 9px 14px; font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--gcx-text-gray); border-radius: var(--radius); text-decoration: none; margin-left: -14px; transition: all 150ms; }
.gcx-activities-side-nav li a:hover { color: var(--gcx-black); background: var(--gcx-light-gray); }
.gcx-activities-side-nav li.current a { color: var(--gcx-black); background: var(--gcx-cream); border-left: 2px solid var(--gcx-orange); padding-left: 12px; font-weight: 600; }

/* ───── Profile hero ───── */
.gcx-profile-hero { background: var(--gcx-cream); border-bottom: 1px solid var(--gcx-cream-deep); }
.gcx-profile-hero-inner { max-width: var(--max-content); margin: 0 auto; padding: 48px 32px 40px; }
.gcx-profile-identity { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.gcx-profile-avatar { position: relative; flex-shrink: 0; }
.gcx-profile-avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.gcx-profile-agent-badge { position: absolute; bottom: 0; right: 0; width: 20px; height: 20px; background: var(--gcx-orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.gcx-profile-name { font-size: 26px; letter-spacing: -0.025em; margin: 0 0 4px; }
.gcx-profile-name a { color: var(--gcx-black); text-decoration: none; }
.gcx-profile-bio { font-size: 15px; color: var(--gcx-text-gray); margin: 0 0 8px; }
.gcx-profile-private { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gcx-text-muted); background: var(--gcx-border); padding: 3px 8px; border-radius: var(--radius-pill); }
.gcx-profile-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.gcx-profile-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--gcx-cream-deep); }
.gcx-profile-stat { display: flex; flex-direction: column; gap: 2px; }
.gcx-profile-stat-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--gcx-black); }
.gcx-profile-stat-label { font-family: var(--font-display); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gcx-text-muted); }

/* ───── Activity list ───── */
.gcx-activity-list { list-style: none; margin: 0; padding: 0; }
.gcx-activity-item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--gcx-border); }
.gcx-activity-item:last-child { border-bottom: 1px solid var(--gcx-border); }
.gcx-activity-icon { flex-shrink: 0; width: 32px; height: 32px; background: var(--gcx-light-gray); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gcx-text-muted); margin-top: 2px; }
.gcx-activity-body { flex: 1; min-width: 0; }
.gcx-activity-body h3 { font-size: 16px; font-family: var(--font-display); font-weight: 600; margin: 0 0 4px; letter-spacing: -0.01em; }
.gcx-activity-body h3 a { color: var(--gcx-black); text-decoration: none; }
.gcx-activity-body h3 a:hover { color: var(--gcx-orange); }
.gcx-activity-label { font-size: 13px; color: var(--gcx-text-muted); margin: 0 0 8px; }
.gcx-activity-excerpt { font-size: 14px; color: var(--gcx-text-gray); line-height: 1.55; margin: 8px 0; }
.gcx-activity-meta { display: flex; gap: 12px; font-size: 12px; color: var(--gcx-text-muted); font-family: var(--font-display); flex-wrap: wrap; }
.gcx-activity-meta a { color: var(--gcx-orange); text-decoration: none; }
.gcx-breadcrumbs--small { font-size: 11px; }
.gcx-breadcrumbs--small li + li::before { content: '›'; }

/* ───── Badges list ───── */
.gcx-badges-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.gcx-badge-item { display: flex; align-items: center; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--gcx-border); border-radius: var(--radius-md); }
.gcx-badge-icon { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.gcx-badge-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.gcx-badge-desc { font-size: 13px; color: var(--gcx-text-gray); margin: 0; }
.gcx-badge-date { margin-left: auto; text-align: right; flex-shrink: 0; }
.gcx-badge-date-label { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gcx-text-muted); margin-bottom: 2px; }

/* ───── Empty state ───── */
.gcx-empty-state { padding: 56px 0; text-align: center; color: var(--gcx-text-muted); }
.gcx-empty-state svg { display: block; margin: 0 auto 16px; opacity: 0.25; }
.gcx-empty-state p { font-family: var(--font-display); font-size: 16px; font-weight: 500; margin: 0; }

/* ───── Responsive ───── */
@media (max-width: 700px) {
  .gcx-activities-layout { grid-template-columns: 1fr; }
  .gcx-activities-side { display: none; }
  .gcx-profile-stats { gap: 20px; }
  .gcx-profile-stat-value { font-size: 18px; }
}

/* ───── Pagination ───── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; font-family: var(--font-display); flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; border-radius: var(--radius); font-size: 14px; font-weight: 600; color: var(--gcx-text-gray); text-decoration: none; border: 1px solid transparent; transition: all 150ms; }
.pagination a:hover { background: var(--gcx-light-gray); color: var(--gcx-black); }
.pagination .current-page { background: var(--gcx-orange); color: #fff; border-color: var(--gcx-orange); }

/* ───── Error page ───── */
.gcx-error { max-width: 560px; margin: 80px auto; padding: 0 32px; text-align: center; }
.gcx-error-code { font-family: var(--font-display); font-size: 120px; font-weight: 700; letter-spacing: -0.05em; color: var(--gcx-cream-deep); line-height: 1; margin-bottom: 16px; }
.gcx-error h1 { font-size: 32px; margin: 0 0 14px; }
.gcx-error p { font-size: 17px; color: var(--gcx-text-gray); margin: 0 0 32px; }

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .gcx-article-layout { grid-template-columns: 210px 1fr; }
  .gcx-article-toc { display: none; }
}
@media (max-width: 900px) {
  .gcx-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .gcx-categories { grid-template-columns: 1fr 1fr; }
  .gcx-promoted { grid-template-columns: 1fr; }
  .gcx-article-layout { grid-template-columns: 1fr; }
  .gcx-article-sidebar { position: static; }
  .gcx-footer-inner { grid-template-columns: 1fr 1fr; }
  .gcx-results-layout { grid-template-columns: 1fr; }
  .gcx-results-side { display: none; }
  .gcx-related ul { grid-template-columns: 1fr; }
  .gcx-subnav-search { display: none; }
}
@media (max-width: 768px) {
  .gcx-header-nav { display: none; }
  .gcx-mobile-toggle { display: flex; }
  .gcx-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gcx-form-shell { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .gcx-categories { grid-template-columns: 1fr; }
  .gcx-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .gcx-section { padding: 56px 20px; }
  .gcx-hero { padding: 56px 20px 64px; }
}
