/* AI Human Potential Article Specific Styles */
.ai-human-potential-hero {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: white;
  padding: 5rem 0 3rem;
}

.ai-human-potential-hero .hero-text h1 {
  color: white;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff 0%, #a8edea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-human-potential-hero .article-meta {
  color: rgba(255, 255, 255, 0.8);
}

.ai-human-potential-hero .tag {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Scenario Comparison */
.scenario-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.scenario-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-5px);
}

.scenario-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.scenario-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.scenario-header i {
  font-size: 1.5rem;
}

.negative-scenario .scenario-header {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.positive-scenario .scenario-header {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.scenario-content {
  padding: 1.5rem;
}

.scenario-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scenario-content li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.scenario-content li:last-child {
  border-bottom: none;
}

.scenario-content .fa-arrow-down {
  color: #ff6b6b;
}

.scenario-content .fa-arrow-up {
  color: #2ecc71;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  border-top: 4px solid #3498db;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #3498db;
  font-size: 1.5rem;
}

.benefit-item h3 {
  margin: 0 0 0.8rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
}

/* Challenges Timeline */
.challenges-timeline {
  position: relative;
  padding-left: 60px;
  margin: 2rem 0;
}

.challenges-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e74c3c;
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  border: 4px solid white;
  box-shadow: 0 0 0 2px #e74c3c;
}

.timeline-content {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border-left: 4px solid #e74c3c;
}

.timeline-content h3 {
  margin-top: 0;
  color: #e74c3c;
}

/* UAE Context */
.uae-context-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 2rem;
  border-left: 5px solid #ffd700;
}

.uae-context-section h2 {
  color: #333;
}

.uae-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border-top: 4px solid #ffd700;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Future Vision */
.future-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.vision-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
}

.vision-icon {
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #2ecc71;
  font-size: 1.5rem;
}

.vision-card h3 {
  margin: 0 0 0.8rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.vision-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
}

/* Conclusion Points */
.conclusion-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.point-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.point-card i {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 1rem;
  display: block;
}

.point-card h3 {
  margin: 0 0 0.8rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.point-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
}

/* Action Grid */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.action-item {
  text-align: center;
  padding: 1rem;
}

.action-item i {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 0.8rem;
  display: block;
}

.action-item h4 {
  margin: 0 0 0.5rem;
  color: #2c3e50;
  font-size: 1rem;
}

.action-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #7f8c8d;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
  .scenario-comparison {
    grid-template-columns: 1fr;
  }
  
  .challenges-timeline {
    padding-left: 40px;
  }
  
  .timeline-marker {
    left: -40px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .ai-human-potential-hero .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .content-wrapper {
    flex-direction: column;
  }
  
  .sidebar {
    margin-top: 3rem;
  }
  
  .uae-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .ai-human-potential-hero .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .benefits-grid,
  .conclusion-points,
  .action-grid {
    grid-template-columns: 1fr;
  }
  
  .uae-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .article-footer {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .tags-container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .share-buttons {
    justify-content: flex-start;
  }
}

/* Print Styles */
@media print {
  .ai-human-potential-hero {
    background: white !important;
    color: black !important;
    padding: 2rem 0 !important;
  }
  
  .ai-human-potential-hero .hero-text h1 {
    background: none;
    -webkit-text-fill-color: black;
    color: black;
  }
  
  .scenario-card,
  .benefit-item,
  .vision-card,
  .point-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .action-grid,
  .social-links,
  .mobile-menu-btn,
  .print-article-btn {
    display: none !important;
  }
}