:root {
  --color-bg: #f5f6fa;
  --color-surface: #ffffff;
  --color-surface-alt: #f0f3ff;
  --color-border: #d9def0;
  --color-border-strong: #b8c2df;
  --color-text: #1f2a44;
  --color-text-light: #5b6788;
  --color-primary: #2563eb;
  --color-primary-strong: #1d4ed8;
  --color-primary-soft: rgba(37, 99, 235, 0.1);
  --color-success: #0f9d58;
  --color-warning: #d97706;
  --color-danger: #dc2626;
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --sidebar-width: 288px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(180deg, #f8fbff 0%, #eef2ff 40%, #e2e8f0 100%);
  color: var(--color-text);
}

body ::selection {
  background: rgba(37, 99, 235, 0.18);
  color: inherit;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
}

.nav-pane {
  background: linear-gradient(180deg, #172554 0%, #1e3a8a 70%, #1e293b 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
}

.nav-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.28);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
}

.brand-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(96, 165, 250, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-info strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand-info span {
  font-size: 12px;
  opacity: 0.75;
}

.nav-tree {
  margin-top: 28px;
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

.nav-group {
  margin-bottom: 12px;
  background: rgba(15, 23, 42, 0.26);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.nav-group-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: #f8fafc;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.nav-group-toggle:hover {
  background: rgba(96, 165, 250, 0.18);
}

.nav-group.is-collapsed .nav-items {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.nav-group .icon {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.nav-group.is-collapsed .icon {
  transform: rotate(-90deg);
}

.nav-items {
  display: grid;
  gap: 3px;
  padding: 0 10px 12px;
  transition: max-height var(--transition-base), opacity var(--transition-base);
}

.nav-item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: rgba(226, 232, 240, 0.85);
  text-decoration: none;
  position: relative;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.nav-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.22), rgba(59, 130, 246, 0.28));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav-item span,
.nav-item strong {
  position: relative;
  z-index: 1;
}

.nav-item:hover {
  color: #fff;
  transform: translateX(2px);
}

.nav-item:hover::before {
  opacity: 0.8;
}

.nav-item.is-active {
  color: #fff;
  font-weight: 600;
}

.nav-item.is-active::before {
  opacity: 1;
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.35);
}

.nav-footer {
  margin-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-info strong {
  font-size: 13px;
}

.user-info span {
  font-size: 12px;
  opacity: 0.75;
}

.btn {
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-text {
  background: transparent;
  color: rgba(226, 232, 240, 0.85);
  padding: 8px 12px;
}

.btn-small {
  background: var(--color-primary);
  color: #fff;
  padding: 8px 14px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

.btn-small:hover {
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35);
}

.btn-link {
  background: transparent;
  color: rgba(37, 99, 235, 0.92);
  padding: 8px 10px;
}

.main-pane {
  background: var(--color-bg);
  padding: 32px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--color-surface);
  padding: 24px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.breadcrumb {
  font-size: 14px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb strong {
  font-size: 20px;
  color: var(--color-text);
}

.breadcrumb .sep {
  opacity: 0.4;
}

.api-box {
  min-width: 260px;
  background: var(--color-surface-alt);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  display: grid;
  gap: 6px;
}

.api-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
}

.api-url {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  word-break: break-all;
}

.api-buttons {
  display: flex;
  gap: 10px;
}

.api-status {
  font-size: 12px;
  color: var(--color-text-light);
}

.api-status.is-success {
  color: var(--color-success);
}

.api-status.is-error {
  color: var(--color-danger);
}

.api-status.is-pending {
  color: var(--color-warning);
}

.content-scroll {
  flex: 1;
  background: transparent;
  overflow: auto;
  padding-right: 6px;
}

.section-card {
  background: var(--color-surface);
  border-radius: 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.section-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.section-card p.section-subtitle {
  margin: 0 0 24px;
  color: var(--color-text-light);
  font-size: 14px;
}

.table-wrapper {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-wrapper thead {
  background: var(--color-surface-alt);
  color: var(--color-text-light);
}

.table-wrapper th,
.table-wrapper td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}

.table-wrapper tbody tr:hover {
  background: rgba(37, 99, 235, 0.06);
}

.table-wrapper tbody tr.is-selected {
  background: rgba(37, 99, 235, 0.12);
  box-shadow: inset 2px 0 0 var(--color-primary);
}

.tenant-detail {
  margin-top: 18px;
}

.detail-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 22px;
  background: linear-gradient(180deg, #fff, #f8fafc 70%);
  box-shadow: var(--shadow-sm);
}

.detail-placeholder {
  border: 1px dashed var(--color-border);
  border-radius: 16px;
  padding: 20px;
  color: var(--color-text-light);
  text-align: center;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.detail-header strong {
  font-size: 18px;
}

.detail-header p {
  margin: 6px 0 0;
  color: var(--color-text-light);
  font-size: 13px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.detail-grid small {
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
}

.detail-grid p {
  margin: 6px 0 0;
  font-weight: 600;
}

.detail-actions {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.action-status {
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text-light);
}

.action-status[data-state='success'] {
  color: var(--color-success);
}

.action-status[data-state='danger'] {
  color: var(--color-danger);
}

.action-status[data-state='info'] {
  color: var(--color-text-light);
}

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.status-active {
  background: rgba(14, 159, 110, 0.14);
  color: var(--color-success);
}

.status-inactive {
  background: rgba(220, 38, 38, 0.14);
  color: var(--color-danger);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(320px, 3fr);
  gap: 32px;
}

.panel {
  background: var(--color-surface);
  border-radius: 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.panel-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--color-border);
}

.panel-header h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.panel-header p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 13px;
}

.panel-body {
  padding: 22px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.search-bar {
  display: flex;
  gap: 12px;
}

.search-bar input[type="search"] {
  flex: 1;
}

input,
select,
textarea {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 20px;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-field small {
  display: block;
  margin-top: 6px;
  color: var(--color-text-light);
  font-size: 12px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.32);
}

.btn-secondary {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary-strong);
  padding: 12px 18px;
  border-radius: 10px;
}

.btn-warning {
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.3);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.stepper-step {
  position: relative;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #f8fafc;
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 500;
  transition: border var(--transition-fast), background var(--transition-fast);
}

.stepper-step.is-current {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.35);
}

.stepper-step::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: inherit;
  font-weight: 600;
}

.step-content {
  display: none;
}

.step-content.is-active {
  display: block;
}

.alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.alert-info {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary-strong);
  border: 1px solid rgba(37, 99, 235, 0.28);
}

.alert-success {
  background: rgba(15, 157, 88, 0.14);
  color: var(--color-success);
  border: 1px solid rgba(15, 157, 88, 0.24);
}

.alert-danger {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-danger);
  border: 1px solid rgba(220, 38, 38, 0.24);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
}

.toggle-row label {
  font-weight: 500;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #f8fafc;
  font-weight: 500;
}

.toggle input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.25);
  transition: background-color var(--transition-fast);
  border-radius: 999px;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: #fff;
  transition: transform var(--transition-fast);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.18);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: rgba(37, 99, 235, 0.55);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
}

.metrics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metric-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 6px;
}

.metric-card span.label {
  font-size: 13px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metric-card strong {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
}

.module-placeholder {
  text-align: center;
  padding: 120px 40px;
  color: var(--color-text-light);
}

.module-placeholder h2 {
  color: var(--color-text);
}

.detail-view h4 {
  font-size: 20px;
}

.detail-view .section-subtitle {
  margin-bottom: 16px;
}

@media (max-width: 1200px) {
  .app-shell {
    grid-template-columns: 240px 1fr;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }
}

/* Status messages */
.status-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}

.status-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.status-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.status-info {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

@media (max-width: 960px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .nav-pane {
    position: fixed;
    inset: 0 auto 0 0;
    width: 240px;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    z-index: 20;
  }

  .nav-pane.is-open {
    transform: translateX(0);
  }

  .main-pane {
    padding: 24px 20px 36px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .breadcrumb {
    font-size: 12px;
  }
}

/* ==================== TABS ==================== */
.detail-tabs {
  display: flex;
  gap: 4px;
  margin: 16px 0;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--color-primary);
}

.tab-btn.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-content {
  display: none;
  padding: 16px 0;
}

.tab-content.is-active {
  display: block;
}

/* ==================== USERS LIST ==================== */
.users-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.users-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.users-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.users-table th,
.users-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.users-table th {
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.users-table tbody tr:hover {
  background: var(--color-surface-alt);
}

.action-cell {
  display: flex;
  gap: 8px;
}

.btn-link {
  background: transparent;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 13px;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-danger-link {
  background: transparent;
  border: none;
  color: var(--color-danger);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 13px;
}

.btn-danger-link:hover {
  text-decoration: underline;
}

/* Role tags */
.role-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.role-admin {
  background: #dbeafe;
  color: #1e40af;
}

.role-operator {
  background: #fef3c7;
  color: #92400e;
}

.role-user {
  background: #e5e7eb;
  color: #374151;
}

/* ==================== USER FORM ==================== */
.user-form {
  margin-top: 20px;
  padding: 20px;
  background: var(--color-surface-alt);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.user-form h5 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
}

/* ==================== EDIT FORM ==================== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
}

.form-field input,
.form-field select {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.form-field small {
  font-size: 12px;
  color: var(--color-text-light);
}

.form-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Text utilities */
.text-muted {
  color: var(--color-text-light);
  font-size: 14px;
}

.text-danger {
  color: var(--color-danger);
  font-size: 14px;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.products-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.products-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.products-table th,
.products-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.products-table th {
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.products-table tbody tr:hover {
  background: var(--color-surface-alt);
}

.products-table code {
  background: var(--color-surface-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  color: var(--color-primary);
}

/* ==================== PRODUCT FORM ==================== */
.product-form {
  margin-top: 20px;
  padding: 20px;
  background: var(--color-surface-alt);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.product-form h5 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
}

.product-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: border-color var(--transition-fast);
}

.product-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.form-field.full-width {
  grid-column: 1 / -1;
}
