.hero { text-align: center; padding: var(--sp-12) 0 var(--sp-8); }
.hero h1 { margin-bottom: var(--sp-2); }
.hero p  { color: var(--text-2); }

.search-area { position: relative; margin-bottom: var(--sp-8); }

.search-go {
  height: 36px; width: 36px;
  margin: 6px; padding: 0;
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.section-label {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: var(--sp-3);
}

.ai-section {
  margin-bottom: var(--sp-8);
  padding: var(--sp-6);
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
}
.ai-section .section-label { color: var(--accent); }

.ai-answer .md-text {
  line-height: 1.75;
  color: var(--text-1);
  font-size: var(--text-base);
}
.ai-answer .md-text strong { color: var(--text-0); }

/* Skeleton loading for AI answer */
.ai-skeleton {
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.ai-skeleton > div { height: 14px; border-radius: 4px; }
.ai-skeleton > div:nth-child(1) { width: 90%; }
.ai-skeleton > div:nth-child(2) { width: 75%; }
.ai-skeleton > div:nth-child(3) { width: 60%; }

.sources-section { margin-bottom: var(--sp-12); }
.sources-loading { display: flex; justify-content: center; padding: var(--sp-6) 0; }
