:root {
  --bg: #edf3ee;
  --bg-alt: #dce9df;
  --surface: #ffffff;
  --surface-muted: #f5f8f6;
  --text: #0f1f16;
  --text-soft: #4a5f52;
  --border: #d3dfd7;
  --primary: #11643a;
  --primary-strong: #0b4f2e;
  --accent: #1f7c7b;
  --warning: #b87000;
  --danger: #b93831;
  --success: #17804c;
  --radius-xl: 20px;
  --radius-lg: 14px;
  --shadow-sm: 0 10px 24px rgba(11, 25, 17, 0.08);
  --shadow-md: 0 16px 36px rgba(11, 25, 17, 0.14);
  --frame-bg: #f3f4f6;
}

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

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: radial-gradient(circle at top, var(--bg-alt) 0%, var(--bg) 38%, #f7faf8 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
}

/* Minimal utility fallback set so UI remains styled if CDN utilities are unavailable */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }
.cursor-pointer { cursor: pointer; }
.z-10 { z-index: 10; }
.z-30 { z-index: 30; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 20px; }
.rounded-3xl { border-radius: 24px; }
.rounded-full { border-radius: 999px; }
.border { border: 1px solid var(--border); }
.border-2 { border: 2px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.shadow-sm { box-shadow: 0 6px 18px rgba(15, 31, 22, 0.08); }
.shadow-md { box-shadow: 0 10px 24px rgba(15, 31, 22, 0.12); }
.shadow-lg { box-shadow: 0 16px 36px rgba(15, 31, 22, 0.16); }
.transition { transition: all 0.2s ease; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 22px; }
.text-2xl { font-size: 26px; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.5; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.p-1 { padding: 4px; }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.pb-6 { padding-bottom: 24px; }
.pb-8 { padding-bottom: 32px; }
.pt-2 { padding-top: 8px; }
.pt-4 { padding-top: 16px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mt-1 { margin-top: 4px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

a {
  color: inherit;
}

.gc-app-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  min-height: 100vh;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 16px 90px;
  position: relative;
}

.gc-hero {
  background: linear-gradient(145deg, #0f5f36 0%, #1b7b4b 55%, #2f9e70 100%);
  color: #f5fdf8;
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.gc-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.86;
  text-transform: uppercase;
}

.gc-hero__title {
  margin: 8px 0 6px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 800;
}

.gc-hero__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.95;
}

.gc-grid {
  display: grid;
  gap: 12px;
}

.gc-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.gc-card--muted {
  background: var(--surface-muted);
}

.gc-surface {
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.gc-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.gc-text {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}

.gc-stat {
  display: block;
  margin-top: 8px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.gc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5f7266;
}

.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  border: 0;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 0 16px;
  cursor: pointer;
}

.gc-btn--primary {
  background: var(--primary);
  color: #f6fffa;
}

.gc-btn--primary:hover {
  background: var(--primary-strong);
}

.gc-btn--ghost {
  background: #e7f1eb;
  color: #0f4f2f;
}

.gc-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gc-chip--draft {
  background: #f0f4f1;
  color: #4d6155;
}

.gc-chip--ready {
  background: #daf4e5;
  color: #0f6b3b;
}

.gc-chip--received {
  background: #dbeaf9;
  color: #0f4f80;
}

.gc-chip--error {
  background: #fde5e4;
  color: #8f241f;
}

.gc-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.gc-list li {
  border-top: 1px solid #e4ede7;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.gc-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.gc-list__meta {
  font-size: 12px;
  color: #5a6f62;
}

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

.gc-table th,
.gc-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.gc-table th {
  color: var(--text-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}

.gc-actions {
  display: grid;
  gap: 10px;
}

.gc-actions--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-segment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #edf4ef;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
}

.gc-segment__item {
  flex: 1 1 140px;
  min-height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #1b3f2e;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.gc-segment__item:hover {
  background: #dfeee4;
}

.gc-segment__item.is-active {
  background: var(--primary);
  color: #f6fffa;
  border-color: var(--primary);
}

.gc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
}

.gc-brand {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.gc-brand small {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: #607467;
}

.gc-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #62786a;
}

.gc-breadcrumbs a {
  text-decoration: none;
}

.gc-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gc-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(23, 128, 76, 0.13);
}

.gc-input {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 12px;
  font-size: 14px;
}

.gc-input:focus {
  outline: 2px solid #95c8ad;
  border-color: #6ba885;
}

.gc-field {
  display: grid;
  gap: 6px;
}

.gc-field label {
  font-size: 12px;
  font-weight: 700;
  color: #385243;
}

.gc-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(410px, calc(100vw - 20px));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-nav a {
  min-height: 50px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: #4f6659;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gc-nav a.active {
  color: #0d4f2f;
}

.gc-section {
  margin-top: 14px;
}

.gc-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.4);
  z-index: 40;
}

.gc-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(82vw, 320px);
  background: var(--surface);
  border-right: 1px solid var(--border);
  z-index: 41;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  display: grid;
  grid-template-rows: auto 1fr;
}

.gc-drawer__head,
.gc-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.gc-drawer__nav {
  display: grid;
  gap: 6px;
  padding: 10px;
  align-content: start;
}

.gc-drawer__nav a {
  min-height: 42px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  padding: 10px 12px;
  border: 1px solid transparent;
}

.gc-drawer__nav a.active {
  background: #eaf4ee;
  color: #0f4f2f;
  border-color: #cde0d4;
}

.gc-sheet {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(560px, calc(100vw - 22px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  z-index: 42;
  box-shadow: var(--shadow-md);
}

.gc-sheet__body {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.gc-banner {
  border-radius: 12px;
  background: #eef6ff;
  border: 1px solid #cde0f5;
  padding: 10px 12px;
  font-size: 12px;
  color: #2f4d67;
}

body.theme-light {
  --bg: #edf3ee;
  --bg-alt: #dce9df;
  --surface: #ffffff;
  --surface-muted: #f5f8f6;
  --text: #0f1f16;
  --text-soft: #4a5f52;
  --border: #d3dfd7;
}

body.theme-dark {
  --bg: #0f172a;
  --bg-alt: #020617;
  --surface: #111827;
  --surface-muted: #1f2937;
  --text: #e5e7eb;
  --text-soft: #94a3b8;
  --border: #334155;
  --primary: #22c55e;
  --primary-strong: #16a34a;
}

body.theme-dark .gc-brand small,
body.theme-dark .gc-label,
body.theme-dark .gc-list__meta {
  color: #93a2b9;
}

body.theme-dark .gc-breadcrumbs {
  color: #93a2b9;
}

body.theme-dark .gc-icon-btn {
  background: #0b1220;
  border-color: #334155;
  color: #e2e8f0;
}

body.theme-dark .gc-surface {
  background: #0b1220;
  border-color: #334155;
}

body.theme-dark .gc-nav {
  background: rgba(17, 24, 39, 0.95);
  border-color: #334155;
}

body.theme-dark .gc-nav a {
  color: #94a3b8;
}

body.theme-dark .gc-nav a.active {
  color: #f8fafc;
}

body.theme-dark .gc-btn--ghost {
  background: #1f2937;
  color: #d1fae5;
}

body.theme-dark .gc-segment {
  background: #0f172a;
  border-color: #334155;
}

body.theme-dark .gc-segment__item {
  color: #cbd5e1;
}

body.theme-dark .gc-segment__item:hover {
  background: #1e293b;
}

body.theme-dark .gc-segment__item.is-active {
  background: #16a34a;
  border-color: #16a34a;
  color: #ecfdf5;
}

body.theme-dark .gc-drawer,
body.theme-dark .gc-sheet {
  background: #111827;
  border-color: #334155;
}

body.theme-dark .gc-drawer__nav a {
  color: #cbd5e1;
}

body.theme-dark .gc-drawer__nav a.active {
  background: #1e293b;
  color: #ecfdf5;
  border-color: #334155;
}

body.theme-dark .phone-frame {
  border-color: #020617;
  background: #111827;
}

body.theme-dark .status-bar {
  color: #e5e7eb;
}

body.theme-dark .bg-white {
  background-color: #111827 !important;
  color: #e5e7eb !important;
}

body.theme-dark .bg-gray-50 {
  background-color: #0f172a !important;
}

body.theme-dark .bg-gray-900 {
  background-color: #020617 !important;
}

body.theme-dark .text-gray-800,
body.theme-dark .text-gray-700,
body.theme-dark .text-gray-600,
body.theme-dark .text-gray-500 {
  color: #cbd5e1 !important;
}

body.theme-dark .border-gray-100,
body.theme-dark .border-gray-200 {
  border-color: #334155 !important;
}

body.theme-dark .text-slate-900,
body.theme-dark .text-slate-800,
body.theme-dark .text-slate-700,
body.theme-dark .text-slate-600,
body.theme-dark .text-slate-500 {
  color: #cbd5e1 !important;
}

body.theme-dark .bg-slate-50,
body.theme-dark .bg-slate-100,
body.theme-dark .bg-slate-200 {
  background-color: #0f172a !important;
}

body.theme-dark .bg-green-50,
body.theme-dark .bg-emerald-50,
body.theme-dark .bg-blue-50,
body.theme-dark .bg-yellow-50,
body.theme-dark .bg-red-50,
body.theme-dark .bg-orange-50,
body.theme-dark .bg-purple-50 {
  background-color: #111827 !important;
}

body.theme-dark .text-green-700,
body.theme-dark .text-emerald-700,
body.theme-dark .text-blue-700,
body.theme-dark .text-yellow-700,
body.theme-dark .text-red-700,
body.theme-dark .text-orange-700,
body.theme-dark .text-purple-700,
body.theme-dark .text-yellow-800,
body.theme-dark .text-red-800,
body.theme-dark .text-gray-900 {
  color: #dbeafe !important;
}

body.theme-dark .border-green-200,
body.theme-dark .border-emerald-200,
body.theme-dark .border-blue-200,
body.theme-dark .border-yellow-100,
body.theme-dark .border-yellow-200,
body.theme-dark .border-red-100,
body.theme-dark .border-red-200,
body.theme-dark .border-orange-200,
body.theme-dark .border-purple-200 {
  border-color: #334155 !important;
}

body.theme-dark .from-green-600,
body.theme-dark .to-emerald-600 {
  background-image: linear-gradient(135deg, #166534, #047857) !important;
}

body.theme-dark .border-slate-100,
body.theme-dark .border-slate-200,
body.theme-dark .border-slate-300 {
  border-color: #334155 !important;
}

body.theme-dark input,
body.theme-dark textarea,
body.theme-dark select {
  background: #0b1220 !important;
  color: #e2e8f0 !important;
  border-color: #334155 !important;
}

/* Command center theme standardization */
.cc-root {
  --cc-bg: #f8fafc;
  --cc-surface: #ffffff;
  --cc-surface-alt: #f1f5f9;
  --cc-border: #e2e8f0;
  --cc-text: #0f172a;
  --cc-text-soft: #64748b;
  --cc-sidebar: #0f172a;
  --cc-sidebar-alt: #020617;
}

body.theme-dark .cc-root {
  --cc-bg: #020617;
  --cc-surface: #0f172a;
  --cc-surface-alt: #111827;
  --cc-border: #334155;
  --cc-text: #e2e8f0;
  --cc-text-soft: #94a3b8;
  --cc-sidebar: #020617;
  --cc-sidebar-alt: #000000;
}

.cc-root {
  background: var(--cc-bg) !important;
  color: var(--cc-text);
  padding-top: max(6px, env(safe-area-inset-top, 0px));
}

.cc-root .bg-white {
  background-color: var(--cc-surface) !important;
  color: var(--cc-text) !important;
}

.cc-root .bg-slate-50 {
  background-color: var(--cc-surface-alt) !important;
}

.cc-root .border-slate-100,
.cc-root .border-slate-200 {
  border-color: var(--cc-border) !important;
}

.cc-root .text-slate-800,
.cc-root .text-slate-700 {
  color: var(--cc-text) !important;
}

.cc-root .text-slate-600,
.cc-root .text-slate-500,
.cc-root .text-slate-400 {
  color: var(--cc-text-soft) !important;
}

.cc-root aside.bg-slate-900 {
  background-color: var(--cc-sidebar) !important;
}

.cc-root aside .bg-slate-950 {
  background-color: var(--cc-sidebar-alt) !important;
}

.cc-root .sidebar-item {
  border-right-color: transparent;
}

body.theme-dark .cc-root .sidebar-item:hover,
body.theme-dark .cc-root .sidebar-item.active {
  background-color: rgba(34, 197, 94, 0.12) !important;
}

.cc-root table thead th {
  color: var(--cc-text-soft) !important;
}

.cc-root table tbody td {
  color: var(--cc-text) !important;
}

.cc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
}

.cc-badge--awaiting {
  background: #fff7e6;
  color: #9a5800;
  border-color: #f4d9a4;
}

.cc-badge--transit {
  background: #e8f1ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

body.theme-dark .cc-badge--awaiting {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.35);
}

body.theme-dark .cc-badge--transit {
  background: rgba(59, 130, 246, 0.16);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.34);
}

/* Standardized control rhythm across pages */
.gc-input,
.gc-btn,
.gc-card,
.gc-banner {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.screen-wrap {
  display: flex;
  justify-content: center;
  padding: 12px 0 20px;
}

.phone-frame {
  width: min(100%, 375px);
  height: min(812px, calc(100vh - 70px));
  background: #fff;
  border-radius: 40px;
  border: 12px solid #1f2937;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: #1f2937;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 50;
}

.status-bar {
  height: 44px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  padding-top: 10px;
}

.app-content {
  flex: 1;
  overflow-y: auto;
}

.app-content::-webkit-scrollbar {
  width: 4px;
}

.app-content::-webkit-scrollbar-thumb {
  background-color: #e5e7eb;
  border-radius: 4px;
}

.command-center {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 24px;
  border: 1px solid #1e293b;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.45);
}

.command-center .metric {
  background: linear-gradient(145deg, #111827 0%, #1f2937 100%);
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 14px;
}

.command-center .metric .value {
  font-size: 28px;
  font-weight: 800;
  color: #f8fafc;
}

.command-center table {
  width: 100%;
  border-collapse: collapse;
}

.command-center th,
.command-center td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #273449;
  font-size: 13px;
}

.command-center th {
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

@media (max-width: 900px) {
  .gc-grid--2,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .gc-actions--2 {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(100%, 420px);
    height: auto;
    min-height: 620px;
    border-width: 8px;
    border-radius: 28px;
  }
}

@media (max-width: 1024px) {
  .gc-app-shell {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gc-app-shell {
    padding: 12px 10px 84px;
  }

  .gc-nav {
    width: calc(100vw - 14px);
    bottom: 8px;
  }

  .phone-frame {
    width: 100%;
    height: calc(100vh - 34px);
    border: 0;
    border-radius: 18px;
  }

  .notch {
    display: none;
  }
}

@media (max-width: 480px) {
  .screen-wrap {
    padding: 0;
  }

  .phone-frame {
    border-radius: 0;
    height: calc(100vh - 6px);
    box-shadow: none;
  }

  .status-bar {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 350px) {
  .gc-grid--2,
  .gc-actions--2 {
    grid-template-columns: 1fr;
  }
}
