/**
 * Article Styles - Shared CSS for all blog articles
 * 
 * This file contains all common styles for blog articles to eliminate
 * inline CSS duplication and improve maintainability.
 * 
 * Include in article pages with:
 * <link rel="stylesheet" href="/css/article.css">
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --color-primary: #2563eb;
  --color-secondary: #8b5cf6;
  --border-gray: #e5e7eb;
  --bg-light: #f9fafb;
}

/* ==========================================================================
   Reading Progress Bar
   ========================================================================== */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-gray);
  z-index: 9999;
}

.reading-progress-bar {
  height: 4px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  width: 0%;
  transition: width 0.1s ease;
}

/* ==========================================================================
   Article Content Typography
   ========================================================================== */

.article-content {
  color: var(--text-dark);
  line-height: 1.8;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  scroll-margin-top: 100px;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #334155;
}

/* ==========================================================================
   Gradient Background Text Color System
   ========================================================================== */

/* Dark gradient backgrounds (600+ shades) - White text for contrast */
.article-content .bg-gradient-to-br.from-blue-600 h3,
.article-content .bg-gradient-to-br.from-purple-600 h3,
.article-content .bg-gradient-to-r.from-blue-600 h3,
.article-content .bg-gradient-to-r.from-purple-600 h3,
.article-content .bg-gradient-to-l.from-blue-600 h3,
.article-content .bg-gradient-to-l.from-purple-600 h3,
.article-content [class*="from-blue-6"][class*="bg-gradient"] h3,
.article-content [class*="from-purple-6"][class*="bg-gradient"] h3,
.article-content [class*="from-indigo-6"][class*="bg-gradient"] h3 {
  color: white !important;
}

.article-content .bg-gradient-to-br.from-blue-600 p,
.article-content .bg-gradient-to-br.from-purple-600 p,
.article-content .bg-gradient-to-r.from-blue-600 p,
.article-content .bg-gradient-to-r.from-purple-600 p,
.article-content .bg-gradient-to-l.from-blue-600 p,
.article-content .bg-gradient-to-l.from-purple-600 p,
.article-content [class*="from-blue-6"][class*="bg-gradient"] p,
.article-content [class*="from-purple-6"][class*="bg-gradient"] p {
  color: white;
}

/* Light gradient backgrounds (50 shades) - Preserve inline colors or use dark text */
.article-content .bg-gradient-to-r.from-red-50 h3,
.article-content .bg-gradient-to-r.from-green-50 h3,
.article-content .bg-gradient-to-r.from-blue-50 h3,
.article-content .bg-gradient-to-r.from-yellow-50 h3,
.article-content [class*="from-red-50"][class*="bg-gradient"] h3,
.article-content [class*="from-green-50"][class*="bg-gradient"] h3,
.article-content [class*="from-blue-50"][class*="bg-gradient"] h3,
.article-content [class*="from-yellow-50"][class*="bg-gradient"] h3 {
  /* Preserve inline text-color classes, don't override */
  color: inherit;
}

/* Ensure h3 with inline color classes always take precedence */
.article-content h3[class*="text-red-"],
.article-content h3[class*="text-green-"],
.article-content h3[class*="text-blue-"],
.article-content h3[class*="text-yellow-"],
.article-content h3[class*="text-purple-"],
.article-content h3[class*="text-gray-"] {
  color: inherit !important;
}

.article-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #475569;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.75rem;
  color: var(--text-gray);
}

.article-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.article-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.article-content a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ==========================================================================
   Gradient Background Blocks - Enhanced Contrast
   ========================================================================== */

/* Light gradient backgrounds (blue-50 to purple-50) - scoped to article content */
.article-content .bg-gradient-to-r.from-blue-50 p,
.article-content .bg-gradient-to-r.from-blue-50 li,
.article-content .bg-gradient-to-r.from-blue-50 span,
.article-content .bg-gradient-to-r.from-blue-50 div:not([class*="bg-"]),
main .bg-gradient-to-r.from-blue-50 p,
main .bg-gradient-to-r.from-blue-50 li,
main .bg-gradient-to-r.from-blue-50 span {
  color: #1e293b !important;
  /* Dark slate for better contrast */
}

.article-content .bg-gradient-to-r.from-blue-50 strong,
main .bg-gradient-to-r.from-blue-50 strong {
  color: #0f172a !important;
  /* Even darker for strong emphasis */
}

.article-content .bg-gradient-to-r.from-blue-50 h2,
.article-content .bg-gradient-to-r.from-blue-50 h3,
.article-content .bg-gradient-to-r.from-blue-50 h4,
main .bg-gradient-to-r.from-blue-50 h2,
main .bg-gradient-to-r.from-blue-50 h3,
main .bg-gradient-to-r.from-blue-50 h4 {
  color: #0f172a !important;
}

/* Dark gradient backgrounds (blue-600 to purple-600) - scoped to article content */
.article-content .bg-gradient-to-r.from-blue-600,
.article-content .bg-gradient-to-r.from-blue-600 p,
.article-content .bg-gradient-to-r.from-blue-600 li,
.article-content .bg-gradient-to-r.from-blue-600 span,
.article-content .bg-gradient-to-r.from-blue-600 h2,
.article-content .bg-gradient-to-r.from-blue-600 h3,
.article-content .bg-gradient-to-r.from-blue-600 h4,
.article-content .bg-gradient-to-r.from-blue-600 strong,
main .bg-gradient-to-r.from-blue-600,
main .bg-gradient-to-r.from-blue-600 p,
main .bg-gradient-to-r.from-blue-600 li,
main .bg-gradient-to-r.from-blue-600 span,
main .bg-gradient-to-r.from-blue-600 h2,
main .bg-gradient-to-r.from-blue-600 h3,
main .bg-gradient-to-r.from-blue-600 h4,
main .bg-gradient-to-r.from-blue-600 strong {
  color: white !important;
}

/* CTA blocks with gradient backgrounds - scoped to article content */
.article-content .cta-inline p,
.article-content .cta-inline h2,
.article-content .cta-inline h3,
.article-content .cta-inline strong,
main .cta-inline p,
main .cta-inline h2,
main .cta-inline h3,
main .cta-inline strong {
  color: white !important;
}

/* Cyan gradient variants - scoped to article content */
.article-content .bg-gradient-to-r.from-blue-50.to-cyan-50 p,
.article-content .bg-gradient-to-r.from-blue-50.to-cyan-50 li,
.article-content .bg-gradient-to-r.from-blue-50.to-cyan-50 span,
main .bg-gradient-to-r.from-blue-50.to-cyan-50 p,
main .bg-gradient-to-r.from-blue-50.to-cyan-50 li,
main .bg-gradient-to-r.from-blue-50.to-cyan-50 span {
  color: #1e293b !important;
}

/* ==========================================================================
   Links and Buttons with Colored Backgrounds - Ensure White Text
   ========================================================================== */

/* Blue backgrounds */
a.bg-blue-700,
a.bg-blue-600,
a.bg-blue-800,
button.bg-blue-700,
button.bg-blue-600,
button.bg-blue-800 {
  color: white !important;
}

/* LinkedIn button */
a.bg-\[\#0077b5\],
.social-share-btn.linkedin {
  color: white !important;
}

/* Twitter/X button */
a.bg-\[\#1DA1F2\],
a.bg-\[\#1da1f2\],
a.bg-gray-900,
a.bg-gray-800,
.social-share-btn.twitter {
  color: white !important;
}

/* Email button */
a.bg-gray-600,
.social-share-btn.email {
  color: white !important;
}

/* Ensure all social share buttons have proper contrast */
.social-share-btn {
  color: white !important;
}

.social-share-btn.copy {
  color: #374151 !important;
  /* Dark gray for white background button */
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gray);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 1.25rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th i {
  vertical-align: middle;
  margin-right: 0.5rem;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-gray);
  color: var(--text-gray);
  vertical-align: top;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: linear-gradient(to right, #f9fafb 0%, #f3f4f6 100%);
  transition: background 0.2s ease;
}

/* ==========================================================================
   Checklist Component
   ========================================================================== */

.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.checklist-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  transition: all 0.3s;
}

.checklist-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.checklist-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

/* ==========================================================================
   Do/Don't Cards Grid
   ========================================================================== */

.do-dont-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.do-card,
.dont-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid;
}

.do-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #10b981;
}

.dont-card {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #ef4444;
}

.do-card h4,
.dont-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.do-card h4 {
  color: #065f46;
}

.dont-card h4 {
  color: #991b1b;
}

.do-card ul,
.dont-card ul {
  margin-bottom: 0;
}

.do-card li,
.dont-card li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Stat Highlight & Stats Grid
   ========================================================================== */

.stat-highlight {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.stat-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-card-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* ==========================================================================
   CTA Inline Block
   ========================================================================== */

.cta-inline {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border: none;
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.cta-inline h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 1rem;
}

.cta-inline p {
  margin-bottom: 1.5rem;
  color: white;
}

.btn-white {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  color: var(--color-primary);
  text-decoration: none;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: #bfdbfe;
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #4b5563;
  line-height: 1.8;
  display: none;
}

.article-content .faq-answer p {
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

/* ==========================================================================
   Info Boxes (Alerts)
   ========================================================================== */

.info-box {
  padding: 1.25rem;
  border-left: 4px solid;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
}

.info-box-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-box-content p:last-child {
  margin-bottom: 0;
}

.info-box.info {
  background: #eff6ff;
  border-color: #2563eb;
}

.info-box.info .info-box-icon {
  color: #2563eb;
}

.info-box.warning {
  background: #fef3c7;
  border-color: #f59e0b;
}

.info-box.warning .info-box-icon {
  color: #d97706;
}

.info-box.success {
  background: #ecfdf5;
  border-color: #10b981;
}

.info-box.success .info-box-icon {
  color: #059669;
}

.info-box.alert {
  background: #fef2f2;
  border-color: #ef4444;
}

.info-box.alert .info-box-icon {
  color: #dc2626;
}

/* ==========================================================================
   Social Share Buttons
   ========================================================================== */

.social-share {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 12px;
}

.social-share h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.social-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.social-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.social-share-btn.twitter {
  background: #000000;
  color: white;
}

.social-share-btn.email {
  background: #6b7280;
  color: white;
}

.social-share-btn.copy {
  background: white;
  color: #374151;
  border-color: #d1d5db;
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */

.breadcrumb-nav {
  background: #f9fafb;
  border-bottom: 1px solid var(--border-gray);
}

.breadcrumb-nav .breadcrumb-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.breadcrumb-items {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.breadcrumb-items a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-items a:hover {
  color: var(--color-primary);
}

.breadcrumb-items .breadcrumb-separator {
  margin: 0 0.5rem;
  color: #9ca3af;
}

.breadcrumb-items .breadcrumb-current {
  color: var(--text-dark);
  font-weight: 500;
}

/* ==========================================================================
   Article Header
   ========================================================================== */

.article-header {
  margin-bottom: 2rem;
}

.article-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  margin: 2rem 0;
}

.article-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.article-author-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--text-dark);
  font-size: 1rem;
}

.article-author-info p {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* ==========================================================================
   Related Articles Sidebar
   ========================================================================== */

.related-articles {
  background: white;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.related-articles h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-articles li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.related-articles li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-articles a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: block;
}

.related-articles a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Case Study Box
   ========================================================================== */

.case-study-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #bae6fd;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.case-study-box h4 {
  margin-top: 0;
  color: #075985;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case-study-box p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-content h2 {
    font-size: 1.5rem;
  }

  .article-content h3 {
    font-size: 1.25rem;
  }

  .article-content h4 {
    font-size: 1.125rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.9rem;
  }

  .checklist-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .checklist-item {
    padding: 1rem;
  }

  .do-dont-grid {
    grid-template-columns: 1fr;
  }

  .cta-inline {
    padding: 1.5rem;
  }

  .social-share {
    padding: 1.5rem;
  }

  .social-share-buttons {
    flex-direction: column;
  }

  .social-share-btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card-value {
    font-size: 1.5rem;
  }

  .article-author {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .breadcrumb-items {
    font-size: 0.75rem;
  }

  .article-meta {
    font-size: 0.8rem;
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* ==========================================================================
   Error Cards & Components (for guide articles)
   ========================================================================== */

.error-card {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.error-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-right: 1rem;
}

.solution-box {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.solution-box h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #065f46;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
}

/* ==========================================================================
   Voice Personality Cards (for personnaliser-voix-ia article)
   ========================================================================== */

.voice-personality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.voice-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.voice-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.voice-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.voice-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.voice-card h4 {
  margin: 0;
  font-size: 1.125rem;
  color: #1e293b;
}

.voice-card p {
  margin: 0;
  line-height: 1.6;
}