/* Brand Voices Page Styles */
.brand-voices-page {
  max-width: 1200px;
}

.brand-voices-page .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.brand-voices-page .page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 8px 0;
}

.brand-voices-page .page-description {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.brand-voices-page .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: all 0.2s ease;
}

.brand-voices-page .btn-primary:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Brand Voices List */
.brand-voices-list {
  display: grid;
  gap: 20px;
}

.brand-voice-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.brand-voice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-voice-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.brand-voice-card:hover::before {
  opacity: 1;
}

.voice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.voice-header h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  flex: 1;
}

.training-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  flex-shrink: 0;
}

.training-badge::before {
  content: '📊';
  font-size: 1rem;
}

.voice-description {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voice-meta {
  font-size: 0.8125rem;
  color: #94a3b8;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-meta::before {
  content: '🕒';
  font-size: 1rem;
}

.voice-actions {
  display: flex;
  gap: 8px;
}

.voice-actions .btn-link {
  flex: 1;
  background: transparent;
  color: #667eea;
  border: 1px solid #667eea;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.voice-actions .btn-link:hover {
  background: rgba(102, 126, 234, 0.05);
  border-color: #764ba2;
  text-decoration: none;
}

.voice-actions .btn-link:first-child {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.voice-actions .btn-link:first-child:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
  transform: translateY(-1px);
}

/* Empty state */
.brand-voices-list:empty::before {
  content: 'No brand voices yet';
  display: block;
  text-align: center;
  padding: 64px;
  color: #94a3b8;
  font-size: 1.25rem;
  background: white;
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .brand-voices-page .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .brand-voices-page .page-header h1 {
    font-size: 1.75rem;
  }

  .brand-voices-page .page-description {
    font-size: 0.9375rem;
  }

  .brand-voice-card {
    padding: 20px;
  }

  .voice-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .voice-header h3 {
    font-size: 1.25rem;
  }

  .training-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .voice-description {
    font-size: 0.875rem;
  }

  .voice-meta {
    font-size: 0.75rem;
  }

  .voice-actions {
    flex-direction: column;
  }

  .voice-actions .btn-link {
    width: 100%;
  }
}

