/* ═══════════════════════════════════════════════════════════
   AI TOOLS CARD STYLES
   ═══════════════════════════════════════════════════════════ */

.ai-tools-card {
  background: var(--surface);
  border: 2px solid var(--red);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  animation: fadeIn 0.3s ease;
}

.ai-tools-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.ai-tools-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.ai-tools-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--txt);
  margin: 0 0 8px 0;
}

.ai-tools-note {
  font-size: 14px;
  color: var(--txt2);
  margin: 0;
}

.ai-tools-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.ai-tool-item {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ai-tool-item:hover {
  border-color: var(--red);
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 48, 49, 0.1);
}

.ai-tool-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}

.ai-tool-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--txt);
}

.ai-tool-pricing {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.ai-tool-pricing.free {
  background: #10b981;
  color: white;
}

.ai-tool-pricing.paid {
  background: var(--red-bg);
  color: var(--red);
}

.ai-tool-desc {
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.5;
  margin-bottom: 8px;
}

.ai-tool-link {
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ai-tool-item:hover .ai-tool-link {
  text-decoration: underline;
}

.ai-tools-footer {
  background: var(--bg2);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
}

.ai-tools-footer p {
  margin: 0;
  font-size: 13px;
  color: var(--txt3);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .ai-tools-card {
    padding: 16px;
  }
  
  .ai-tools-header h3 {
    font-size: 20px;
  }
  
  .ai-tools-icon {
    font-size: 36px;
  }
  
  .ai-tool-item {
    padding: 12px;
  }
  
  .ai-tool-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .ai-tool-name {
    font-size: 16px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
