/* ============================================================
   CODEPROMPT.PRO — style.css v1.0
   Iconic dark developer UI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&family=Space+Grotesk:wght@500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-deep:         #07070f;
  --bg-surface:      #0e0e1c;
  --bg-card:         #12122a;
  --bg-card-hover:   #191935;
  --bg-glass:        rgba(18, 18, 42, 0.7);
  --primary:         #7c6dfa;
  --primary-light:   #9d91fc;
  --primary-glow:    rgba(124, 109, 250, 0.3);
  --accent:          #00e5c3;
  --accent-glow:     rgba(0, 229, 195, 0.2);
  --accent-orange:   #ff7b3a;
  --danger:          #ff4d6d;
  --success:         #00d68f;
  --text-main:       #e4e4f0;
  --text-sub:        #a8a8c8;
  --text-muted:      #5a5a80;
  --border:          #1e1e3c;
  --border-bright:   #2e2e5a;
  --radius:          12px;
  --radius-lg:       18px;
  --radius-xl:       24px;
  --font:            'Inter', system-ui, sans-serif;
  --font-display:    'Space Grotesk', system-ui, sans-serif;
  --font-code:       'JetBrains Mono', monospace;
  --transition:      0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:     0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow:     0 0 40px rgba(124, 109, 250, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---- Selection ---- */
::selection { background: var(--primary-glow); color: var(--primary-light); }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 7, 15, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 20px var(--primary-glow);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.logo-text span { color: var(--primary); }

.header-search {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.header-search input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px 10px 44px;
  font-size: 14px;
  color: var(--text-main);
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header-search input::placeholder { color: var(--text-muted); }

.header-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-dashboard {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  color: var(--text-sub);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--font);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-dashboard:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124, 109, 250, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 109, 250, 0.1);
  border: 1px solid rgba(124, 109, 250, 0.3);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 860px;
  margin: 0 auto 20px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-sub);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-stats {
  display: inline-flex;
  gap: 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 32px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   AD BANNER
   ============================================================ */
.ad-banner {
  max-width: 1280px;
  margin: 0 auto 16px;
  padding: 0 24px;
}

.ad-slot {
  background: var(--bg-surface);
  border: 1px dashed var(--border-bright);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-slot-leaderboard { height: 90px; }
.ad-slot-sidebar { width: 300px; min-height: 250px; flex-shrink: 0; }
.ad-slot-inline { height: 100px; margin: 20px 0; }

/* ============================================================
   TABS
   ============================================================ */
.tabs-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  border-radius: var(--radius) var(--radius) 0 0;
}

.tab-btn:hover {
  color: var(--text-main);
  background: rgba(255,255,255,0.03);
}

.tab-btn.active {
  color: var(--primary-light);
  border-bottom-color: var(--primary);
  background: rgba(124, 109, 250, 0.05);
}

.tab-icon { font-size: 16px; }

.tab-count {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 24px;
  text-align: center;
}

.tab-btn.active .tab-count {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary-light);
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.main-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 60px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.content-area { flex: 1; min-width: 0; }

.sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================================================
   FILTER / SORT BAR
   ============================================================ */
.content-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-sub);
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}

.filter-tag:hover, .filter-tag.active {
  border-color: var(--primary);
  color: var(--primary-light);
  background: var(--primary-glow);
}

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-sub);
  font-family: var(--font);
  cursor: pointer;
  outline: none;
}

.results-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   PROMPT CARDS
   ============================================================ */
.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.prompt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.prompt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.prompt-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.prompt-card:hover::before { opacity: 1; }

.prompt-card.featured {
  border-color: rgba(124, 109, 250, 0.4);
  background: linear-gradient(135deg, #12122a 0%, #14112e 100%);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-category-fullstack  { background: rgba(124,109,250,0.15); color: #9d91fc; border: 1px solid rgba(124,109,250,0.3); }
.badge-category-devops     { background: rgba(0,229,195,0.12);   color: #00e5c3; border: 1px solid rgba(0,229,195,0.3); }
.badge-category-database   { background: rgba(255,123,58,0.12);  color: #ff7b3a; border: 1px solid rgba(255,123,58,0.3); }
.badge-category-rust       { background: rgba(255,77,109,0.12);  color: #ff4d6d; border: 1px solid rgba(255,77,109,0.3); }
.badge-category-general    { background: rgba(0,214,143,0.12);   color: #00d68f; border: 1px solid rgba(0,214,143,0.3); }
.badge-category-recent     { background: rgba(255,215,0,0.12);   color: #ffd700; border: 1px solid rgba(255,215,0,0.3); }

.badge-difficulty-beginner     { background: rgba(0,214,143,0.1);  color: #00d68f; }
.badge-difficulty-intermediate { background: rgba(255,165,0,0.1);  color: #ffa500; }
.badge-difficulty-advanced     { background: rgba(255,77,109,0.1); color: #ff4d6d; }

.badge-featured {
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  color: var(--accent);
  border: 1px solid rgba(0,229,195,0.4);
}

.card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  margin: 4px 0;
}

.card-prompt-preview {
  font-family: var(--font-code);
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.7;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  max-height: 100px;
  overflow: hidden;
  position: relative;
}

.card-prompt-preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(transparent, var(--bg-card));
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary), #5c4fd4);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(124, 109, 250, 0.3);
  white-space: nowrap;
}

.btn-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 109, 250, 0.45);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-copy:active { transform: scale(0.97); }

.btn-copy.copied {
  background: linear-gradient(135deg, var(--success), #00aa70);
  box-shadow: 0 4px 15px rgba(0,214,143,0.3);
}

.btn-expand {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}

.btn-expand:hover {
  border-color: var(--border-bright);
  color: var(--text-main);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7), var(--shadow-glow);
}

.modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  z-index: 10;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.modal-close {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: all var(--transition);
}

.modal-close:hover { border-color: var(--danger); color: var(--danger); }

.modal-body { padding: 24px; }

.modal-prompt-text {
  font-family: var(--font-code);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-sub);
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  white-space: pre-wrap;
  word-break: break-word;
}

.modal-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.trending-item:last-child { border-bottom: none; }

.trending-item:hover .trending-title { color: var(--primary-light); }

.trending-rank {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dim);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.trending-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  line-height: 1.4;
  transition: color var(--transition);
}

.trending-copies {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-sub);
  margin-bottom: 8px;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
  min-width: 260px;
}

.toast-icon { font-size: 18px; }
.toast.toast-success { border-left: 3px solid var(--success); }
.toast.toast-info    { border-left: 3px solid var(--primary); }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateX(20px); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-text {
  font-size: 22px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-sub);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}

.seo-keywords {
  font-size: 11px;
  color: var(--bg-card);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sidebar { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero { padding: 50px 16px 40px; }
  .hero-stats { gap: 24px; padding: 12px 20px; }
  .header-inner { padding: 0 16px; }
  .header-search { display: none; }
  .main-layout { padding: 16px; }
  .prompts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .tab-btn { padding: 10px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { flex-direction: column; gap: 12px; text-align: center; }
  .btn-dashboard span { display: none; }
}

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   SEARCH HIGHLIGHT
   ============================================================ */
mark {
  background: rgba(124, 109, 250, 0.25);
  color: var(--primary-light);
  border-radius: 3px;
  padding: 0 2px;
}

/* ============================================================
   NO RESULTS
   ============================================================ */
.no-results {
  text-align: center;
  padding: 60px 24px;
  grid-column: 1 / -1;
}

.no-results-icon { font-size: 48px; margin-bottom: 16px; }
.no-results h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-sub);
  margin-bottom: 8px;
}
.no-results p { color: var(--text-muted); font-size: 14px; }
