/* ai_top.css - AI Top Page Specific Styles */

.theme-ai {
  --accent-color: #0ea5e9;
  --bg-light: #f0f9ff;
  --border-light: #bae6fd;
  --text-dark: #0369a1;
  --text-mute: #0c4a6e;
}

/* Section Title Adjustment */
#ai-section .section-title {
  text-align: left;
}

#ai-section .line {
  margin: 0;
  width: 100px;
  background: var(--accent-color);
}

/* Lead Paragraph */
.ai-lead-text {
  margin-top: 1rem;
  margin-bottom: 3rem;
  color: #475569;
  line-height: 1.8;
}

/* Category Grid */
.ai-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* AI Specific Cards */
.ai-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ai-card:hover {
  border-color: var(--accent-color) !important;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.1) !important;
  transform: translateY(-2px);
}

.ai-card .card-icon {
  width: 50px;
  height: 50px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ai-card:hover .card-icon {
  background: var(--accent-color) !important;
  color: #fff !important;
}

.ai-card .card-content h4 {
  margin: 0;
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 0.3rem;
}

.ai-card .card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

/* Featured Message Box */
.ai-featured-box {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.ai-featured-box h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.ai-featured-box p {
  color: var(--text-mute);
  font-size: 0.95rem;
}

/* Sidebar Specifics */
.sidebar .sidebar-column-text {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

/* Footer Reset for modular consistency if needed */
.ai-footer {
  text-align: center;
  padding: 2rem;
  background: #f1f5f9;
  color: #475569;
}
