/* AI Job Opportunities Article Styles */
.ai-jobs-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.ai-jobs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.opportunity-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.job-growth-chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 200px;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.chart-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.bar-fill {
  width: 30px;
  background: linear-gradient(to top, #4facfe 0%, #00f2fe 100%);
  border-radius: 4px 4px 0 0;
  transition: height 1.5s ease-in-out;
  height: 0;
}

.chart-bar[data-value="85"] .bar-fill {
  height: 85%;
}

.chart-bar[data-value="72"] .bar-fill {
  height: 72%;
}

.chart-bar[data-value="68"] .bar-fill {
  height: 68%;
}

.chart-bar[data-value="78"] .bar-fill {
  height: 78%;
}

.bar-label {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}

.growth-arrow {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #4facfe;
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.article-category {
  display: inline-block;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  font-size: 14px;
  opacity: 0.9;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.quick-nav {
  background: rgba(79, 172, 254, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-nav h3 {
  margin-top: 0;
  color: #4facfe;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.nav-card {
  background: white;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  color: #2d3436;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: #4facfe;
}

.nav-card i {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.nav-card span {
  font-weight: 600;
  font-size: 14px;
}

.content-section {
  margin: 60px 0;
}

.content-section h2 {
  color: #2d3436;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-section h2 i {
  color: #4facfe;
}

.comparison-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.timeline-era {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.timeline-era:hover {
  transform: translateY(-5px);
}

.era-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f8f9fa;
}

.era-header h3 {
  margin: 0;
  color: #2d3436;
}

.era-year {
  background: #4facfe;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.era-challenges, .era-opportunities {
  list-style: none;
  padding: 0;
}

.era-challenges li, .era-opportunities li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.era-challenges i {
  color: #e74c3c;
}

.era-opportunities i {
  color: #2ecc71;
}

.job-creation {
  margin: 40px 0;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.job-category {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #4facfe;
}

.job-category h4 {
  color: #2d3436;
  margin-top: 0;
  margin-bottom: 16px;
}

.job-category ul {
  list-style: none;
  padding: 0;
}

.job-category li {
  padding: 8px 0;
  border-bottom: 1px solid #f8f9fa;
}

.job-category li:last-child {
  border-bottom: none;
}

.key-insight {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  border-left: 4px solid #4facfe;
}

.key-insight h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  color: #2d3436;
}

.cricket-evolution {
  margin: 30px 0;
}

.format-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.format-era {
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.format-era:hover {
  transform: translateY(-5px);
}

.format-era::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.format-icon {
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #4facfe;
  font-size: 24px;
}

.opportunity-count {
  background: #e8f4ff;
  color: #4facfe;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 16px;
  display: inline-block;
}

.ecosystem-expansion {
  margin: 40px 0;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.ecosystem-sector {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ecosystem-sector h4 {
  color: #2d3436;
  margin-top: 0;
  margin-bottom: 16px;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 8px;
}

.ecosystem-sector ul {
  list-style: none;
  padding: 0;
}

.ecosystem-sector li {
  padding: 8px 0;
  border-bottom: 1px solid #f8f9fa;
}

.ecosystem-sector li:last-child {
  border-bottom: none;
}

.healthcare-transformation {
  margin: 30px 0;
}

.transformation-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.traditional-healthcare, .ai-enhanced-healthcare {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.traditional-healthcare h4, .ai-enhanced-healthcare h4 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 2px solid #f8f9fa;
}

.traditional-healthcare {
  border-top: 4px solid #e74c3c;
}

.ai-enhanced-healthcare {
  border-top: 4px solid #2ecc71;
}

.traditional-healthcare ul, .ai-enhanced-healthcare ul {
  list-style: none;
  padding: 0;
}

.traditional-healthcare li, .ai-enhanced-healthcare li {
  padding: 12px 0;
  border-bottom: 1px solid #f8f9fa;
  display: flex;
  align-items: center;
  gap: 10px;
}

.traditional-healthcare li:last-child, .ai-enhanced-healthcare li:last-child {
  border-bottom: none;
}

.new-healthcare-roles {
  margin: 40px 0;
}

.role-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.role-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.role-card:hover {
  transform: translateY(-5px);
}

.role-icon {
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #4facfe;
  font-size: 24px;
}

.education-evolution {
  margin: 30px 0;
}

.teaching-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.method {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.method h4 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #2d3436;
}

.method-stats {
  display: flex;
  justify-content: space-around;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #4facfe;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #636e72;
}

.traditional-teaching {
  border-top: 4px solid #e74c3c;
}

.ai-enhanced-teaching {
  border-top: 4px solid #2ecc71;
}

.new-education-roles {
  margin: 40px 0;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.education-role {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #4facfe;
}

.education-role h4 {
  margin-top: 0;
  color: #2d3436;
}

.adaptation-strategies {
  margin: 40px 0;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.strategy-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-5px);
}

.strategy-icon {
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #4facfe;
  font-size: 24px;
}

.future-outlook {
  margin: 40px 0;
}

.outlook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.outlook-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.outlook-value {
  font-size: 32px;
  font-weight: 700;
  color: #4facfe;
  margin-bottom: 8px;
}

.outlook-label {
  font-size: 14px;
  color: #636e72;
}

.historical-pattern {
  margin: 40px 0;
}

.pattern-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  position: relative;
}

.pattern-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #4facfe;
  z-index: 1;
}

.pattern-era {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  flex: 1;
  margin: 0 10px;
}

.era-name {
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 8px;
}

.era-impact {
  font-size: 14px;
  color: #636e72;
}

.final-message {
  margin: 40px 0;
}

.cta-box {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #dee2e6;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.tags-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 600;
  color: #2d3436;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-label {
  font-weight: 600;
  color: #2d3436;
}

.social-share {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-share:hover {
  transform: scale(1.1);
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .comparison-timeline {
    grid-template-columns: 1fr;
  }
  
  .transformation-comparison {
    grid-template-columns: 1fr;
  }
  
  .teaching-methods {
    grid-template-columns: 1fr;
  }
  
  .pattern-timeline {
    flex-direction: column;
    gap: 20px;
  }
  
  .pattern-timeline::before {
    display: none;
  }
  
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .share-buttons {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .format-timeline {
    grid-template-columns: 1fr;
  }
  
  .job-grid {
    grid-template-columns: 1fr;
  }
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
  
  .role-cards {
    grid-template-columns: 1fr;
  }
  
  .strategy-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .quick-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .method-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .outlook-grid {
    grid-template-columns: 1fr;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
}