/* ==============================================================================
   CareerBridge Enterprise Application Theme & Modern App Shell Layout
   Color Palette Synced with Career Bridge Group (careerbridgegroup.com)
   Brand Colors: Midnight Navy (#01112c), Royal Blue (#0646b4), Gold (#c79821), Sky (#05a0e2)
============================================================================== */

:root {
  /* Brand Deep Midnight Navy Palette */
  --cb-navy-950: #010c20;
  --cb-navy-900: #01112c; /* Main Brand Deep Navy */
  --cb-navy-850: #011536; /* Midnight Brand Dark */
  --cb-navy-800: #062a5b; /* Rich Slate Navy */
  --cb-navy-700: #083b7e;
  --cb-navy-600: #0e4da1;
  
  /* Brand Vibrant Royal Blue */
  --cb-primary: #0646b4;
  --cb-primary-hover: #05358a;
  --cb-primary-light: #e6eff6;
  
  /* Brand Signature Gold / Ochre Accent */
  --cb-gold: #c79821;
  --cb-gold-hover: #b07e15;
  --cb-gold-light: #fef8eb;
  
  /* Brand Sky Cyan */
  --cb-sky: #05a0e2;
  --cb-sky-light: #e1f5fe;
  
  /* Accent Shortcuts */
  --cb-accent: #c79821;
  --cb-accent-hover: #b07e15;
  --cb-accent-light: #fef8eb;
  
  --cb-success: #059669;
  --cb-success-light: #ecfdf5;
  
  --cb-warning: #f4ab30;
  --cb-warning-light: #fffbeb;
  
  --cb-danger: #dc2626;
  --cb-danger-bg: #fef2f2;
  
  --cb-surface: #ffffff;
  --cb-bg-app: #f4f8fb;
  --cb-bg-card: #ffffff;
  --cb-bg-sidebar: #ffffff;
  --cb-bg-header: #ffffff;
  
  --cb-text-main: #01112c;
  --cb-text-muted: #707485;
  --cb-text-light: #94a3b8;
  
  --cb-border: #e2e8f0;
  --cb-border-subtle: #e6eff6;
  --cb-border-dark: #cbd5e1;
  
  --cb-radius-xs: 4px;
  --cb-radius-sm: 8px;
  --cb-radius-md: 12px;
  --cb-radius-lg: 16px;
  
  --cb-shadow-subtle: 0 1px 3px rgba(1, 17, 44, 0.05);
  --cb-shadow-sm: 0 2px 6px rgba(1, 17, 44, 0.06);
  --cb-shadow-md: 0 6px 16px rgba(1, 17, 44, 0.08);
  --cb-shadow-lg: 0 12px 28px rgba(1, 17, 44, 0.12);
  
  --cb-sidebar-width: 260px;
  --cb-header-height: 64px;
  --cb-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Base Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: var(--cb-font-sans);
  background-color: var(--cb-bg-app);
  color: var(--cb-text-main);
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--cb-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--cb-primary-hover);
}

/* ==============================================================================
   Modern App Shell (Header + Sidebar + Content Layout)
============================================================================== */

#cb-app-shell {
  display: flex;
  min-height: 100vh;
  background-color: var(--cb-bg-app);
  position: relative;
}

/* Hide public marketing footer when inside app-shell */
#cb-app-shell ~ #cb-footer,
#cb-app-shell + #cb-footer {
  display: none !important;
}

/* --- Top Header Bar --- */
.cb-app-header {
  position: fixed;
  top: 0;
  left: var(--cb-sidebar-width);
  right: 0;
  height: var(--cb-header-height);
  background: var(--cb-bg-header);
  border-bottom: 1px solid var(--cb-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 100;
  box-shadow: var(--cb-shadow-subtle);
}

.cb-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cb-workspace-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cb-navy-900);
  background: #f8fafc;
  padding: 6px 14px;
  border-radius: var(--cb-radius-sm);
  border: 1px solid var(--cb-border);
}

.cb-status-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cb-gold);
  box-shadow: 0 0 0 2px rgba(199, 152, 33, 0.2);
}

.cb-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cb-live-clock {
  font-size: 12px;
  font-weight: 500;
  color: var(--cb-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 5px 10px;
  border-radius: var(--cb-radius-xs);
}

.cb-header-icon-btn {
  background: transparent;
  border: 1px solid var(--cb-border);
  width: 36px;
  height: 36px;
  border-radius: var(--cb-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.cb-header-icon-btn:hover {
  background: #f8fafc;
  color: var(--cb-navy-900);
  border-color: var(--cb-border-dark);
}

.cb-header-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 4px 4px;
  background: #f8fafc;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-sm);
}

.cb-user-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cb-navy-900);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* --- Left Fixed Sidebar --- */
.cb-app-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--cb-sidebar-width);
  background: var(--cb-bg-sidebar);
  border-right: 1px solid var(--cb-border);
  display: flex;
  flex-direction: column;
  z-index: 101;
  box-shadow: var(--cb-shadow-subtle);
}

.cb-sidebar-brand {
  height: var(--cb-header-height);
  padding: 0 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cb-border);
}

.cb-sidebar-brand-img {
  height: 34px;
  max-width: 170px;
  object-fit: contain;
}

.cb-sidebar-content {
  flex: 1;
  padding: 20px 14px;
  overflow-y: auto;
}

.cb-sidebar-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #94a3b8;
  padding: 0 12px;
  margin-bottom: 8px;
}

.cb-sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cb-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--cb-radius-sm);
  color: var(--cb-text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s ease;
}

.cb-sidebar-link:hover {
  background: #f1f5f9;
  color: var(--cb-navy-900);
}

.cb-sidebar-link.active {
  background: var(--cb-primary-light);
  color: var(--cb-primary);
  font-weight: 700;
  border-left: 3px solid var(--cb-primary);
  border-radius: 0 var(--cb-radius-sm) var(--cb-radius-sm) 0;
}

.cb-sidebar-footer {
  padding: 14px;
  border-top: 1px solid var(--cb-border);
  background: #f8fafc;
}

.cb-sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cb-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cb-navy-900);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.cb-user-info {
  flex: 1;
  min-width: 0;
}

.cb-username {
  font-size: 13px;
  font-weight: 600;
  color: var(--cb-navy-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cb-userrole {
  font-size: 11px;
  color: var(--cb-text-muted);
  text-transform: capitalize;
}

.cb-logout-btn {
  color: var(--cb-danger);
  padding: 6px;
  border-radius: var(--cb-radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.cb-logout-btn:hover {
  background: var(--cb-danger-bg);
}

/* --- Main Content Area Layout --- */
.cb-main-content-layout {
  margin-left: var(--cb-sidebar-width);
  margin-top: var(--cb-header-height);
  padding: 28px 32px 60px 32px;
  flex: 1;
  width: calc(100% - var(--cb-sidebar-width));
}

/* Public Main Container */
.cb-main-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px 80px 24px;
  flex: 1;
}

/* ==============================================================================
   Public Navbar & Footer
============================================================================== */

.cb-navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--cb-border);
  height: 68px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--cb-shadow-subtle);
}

.cb-navbar-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cb-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cb-navy-900);
  font-weight: 600;
  font-size: 13px;
  transition: color 0.15s ease;
}
.cb-nav-link:hover {
  color: var(--cb-primary);
}

.cb-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid var(--cb-border);
  padding: 6px 12px;
  border-radius: var(--cb-radius-sm);
  color: var(--cb-navy-900);
  font-weight: 700;
  font-size: 13px;
}
.cb-nav-phone:hover {
  background: #f1f5f9;
  border-color: var(--cb-border-dark);
}

/* Public Footer */
.cb-footer {
  background: var(--cb-navy-900);
  color: #f8fafc;
  padding: 48px 24px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
}
.cb-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.cb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.cb-footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--cb-gold);
  margin-bottom: 16px;
}
.cb-footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cb-footer-list a {
  color: #cbd5e1;
  font-size: 13px;
}
.cb-footer-list a:hover {
  color: #ffffff;
}
.cb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}

/* ==============================================================================
   Specialists Directory Components
============================================================================== */

.cb-specialist-card {
  background: var(--cb-bg-card);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-md);
  box-shadow: var(--cb-shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cb-specialist-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cb-shadow-md);
  border-color: var(--cb-primary);
}

.cb-specialist-img-wrap {
  height: 180px;
  background: linear-gradient(135deg, #01112c 0%, #0646b4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cb-specialist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cb-specialist-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-specialist-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cb-specialist-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--cb-navy-900);
  margin-bottom: 2px;
}

.cb-specialist-title {
  font-size: 13px;
  color: var(--cb-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.cb-specialist-ext {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid var(--cb-border);
  padding: 6px 10px;
  border-radius: var(--cb-radius-sm);
  font-size: 12px;
  color: var(--cb-navy-900);
  margin-bottom: 14px;
  width: fit-content;
}

.cb-specialist-bio {
  font-size: 13px;
  color: var(--cb-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cb-specialist-expertise-list {
  font-size: 12px;
  color: var(--cb-navy-800);
  margin-bottom: 18px;
  line-height: 1.5;
}

.cb-social-links {
  display: flex;
  gap: 8px;
}

.cb-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-text-muted);
  transition: all 0.15s ease;
}
.cb-social-link:hover {
  background: var(--cb-primary);
  color: #ffffff;
}

/* ==============================================================================
   UI Component Library: Cards, Grids, Tables, Forms, Modals, Toasts
============================================================================== */

/* Page Headers */
.cb-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.cb-page-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--cb-navy-900);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.cb-page-desc {
  font-size: 13px;
  color: var(--cb-text-muted);
}

.cb-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Card Panels */
.cb-card {
  background: var(--cb-bg-card);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-md);
  box-shadow: var(--cb-shadow-subtle);
  overflow: hidden;
  margin-bottom: 24px;
}

.cb-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--cb-border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}

.cb-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cb-navy-900);
}

.cb-card-subtitle {
  font-size: 12px;
  color: var(--cb-text-muted);
  margin-top: 2px;
}

.cb-card-body {
  padding: 24px;
}

/* Metrics & Stats Grid */
.cb-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.cb-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.cb-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.cb-stat-card {
  background: var(--cb-bg-card);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-md);
  padding: 20px;
  box-shadow: var(--cb-shadow-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cb-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--cb-shadow-md);
}

.cb-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--cb-radius-sm);
  background: var(--cb-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.cb-stat-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--cb-navy-900);
  line-height: 1.2;
}

.cb-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--cb-text-muted);
  margin-top: 4px;
}

/* Tables */
.cb-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.cb-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cb-table th {
  background: #f8fafc;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cb-text-muted);
  border-bottom: 1px solid var(--cb-border);
}

.cb-table td {
  padding: 14px 18px;
  font-size: 13px;
  border-bottom: 1px solid var(--cb-border-subtle);
  vertical-align: middle;
}

.cb-table tbody tr:hover {
  background-color: #f8fafc;
}

/* Buttons */
.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--cb-radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  line-height: 1;
}

.cb-btn-primary {
  background-color: var(--cb-primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(6, 70, 180, 0.2);
}
.cb-btn-primary:hover {
  background-color: var(--cb-primary-hover);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(6, 70, 180, 0.3);
}

.cb-btn-secondary {
  background-color: #ffffff;
  color: var(--cb-navy-900);
  border-color: var(--cb-border);
}
.cb-btn-secondary:hover {
  background-color: #f8fafc;
  color: var(--cb-navy-900);
  border-color: var(--cb-border-dark);
}

.cb-btn-accent {
  background-color: var(--cb-gold);
  color: #ffffff;
  border-color: #bc871d;
  box-shadow: 0 2px 6px rgba(199, 152, 33, 0.2);
}
.cb-btn-accent:hover {
  background-color: var(--cb-gold-hover);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(199, 152, 33, 0.3);
}

.cb-btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

/* Status Labels / Badges */
.cb-status-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
}

.cb-status-active {
  background-color: #e6eff6;
  color: var(--cb-primary);
}
.cb-status-active .cb-status-dot {
  background-color: var(--cb-primary);
}

.cb-status-suspended {
  background-color: #fee2e2;
  color: var(--cb-danger);
}
.cb-status-suspended .cb-status-dot {
  background-color: var(--cb-danger);
}

.cb-status-info {
  background-color: #e0f2fe;
  color: #0369a1;
}

.cb-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Forms */
.cb-form-group {
  margin-bottom: 16px;
}

.cb-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--cb-navy-900);
  margin-bottom: 6px;
}

.cb-form-input, .cb-form-select, .cb-form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-sm);
  font-size: 13px;
  color: var(--cb-text-main);
  background: #ffffff;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cb-form-input:focus, .cb-form-select:focus, .cb-form-textarea:focus {
  outline: none;
  border-color: var(--cb-primary);
  box-shadow: 0 0 0 3px rgba(6, 70, 180, 0.12);
}

/* Modals */
.cb-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 17, 44, 0.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.cb-modal-box {
  background: #ffffff;
  border-radius: var(--cb-radius-md);
  box-shadow: var(--cb-shadow-lg);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  animation: cbModalPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cbModalPop {
  0% { transform: scale(0.96); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.cb-modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--cb-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cb-navy-900);
}

.cb-modal-close-btn {
  background: transparent;
  border: none;
  color: var(--cb-text-muted);
  cursor: pointer;
}
.cb-modal-close-btn:hover {
  color: var(--cb-navy-900);
}

.cb-modal-body {
  padding: 24px;
}

.cb-modal-footer {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid var(--cb-border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Toast Notifications */
#cb-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cb-toast {
  background: var(--cb-navy-900);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--cb-radius-sm);
  box-shadow: var(--cb-shadow-lg);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  animation: cbToastSlide 0.25s ease forwards;
}

@keyframes cbToastSlide {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.cb-toast-success { border-left: 4px solid var(--cb-gold); }
.cb-toast-error { border-left: 4px solid var(--cb-danger); }
.cb-toast-info { border-left: 4px solid var(--cb-sky); }

/* Responsive adjustments */
@media (max-width: 900px) {
  .cb-app-sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .cb-app-sidebar.open {
    transform: translateX(0);
  }
  .cb-app-header {
    left: 0;
  }
  .cb-main-content-layout {
    margin-left: 0;
    width: 100%;
    padding: 20px 16px;
  }
  #cb-btn-mobile-menu {
    display: flex !important;
  }
  #cb-kpi-2col-layout {
    grid-template-columns: 1fr !important;
  }
}
