/* AI Creative Industries Specific Styles */

/* Hero Section */
.ai-creative-hero {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.ai-creative-hero .hero-text h1 {
  color: white;
}

.ai-creative-hero .article-category {
  background-color: rgba(255,255,255,0.2);
  color: white;
}

.ai-creative-hero .tag {
  background-color: rgba(255,255,255,0.15);
  color: white;
}

/* Paradigm Shift Section */
.shift-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.comparison-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-header {
  padding: 20px;
  color: white;
  text-align: center;
}

.comparison-header.past {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-header.future {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.comparison-card ul {
  padding: 20px;
  margin: 0;
}

.comparison-card li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-card li:last-child {
  border-bottom: none;
}

.comparison-card li i {
  margin-right: 10px;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.impact-stats {
  margin: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #6a11cb;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Company Analysis */
.company-analysis {
  margin: 40px 0;
}

.company-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.company-header {
  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
}

.company-header.adobe {
  background: linear-gradient(135deg, #ed1c24 0%, #f15a29 100%);
}

.company-header.shutterstock {
  background: linear-gradient(135deg, #00b9f1 0%, #0078b0 100%);
}

.company-header.getty {
  background: linear-gradient(135deg, #00c389 0%, #008c5a 100%);
}

.company-logo {
  font-size: 32px;
  margin-right: 15px;
}

.company-info {
  flex: 1;
}

.company-info h3 {
  margin: 0 0 5px 0;
  font-size: 24px;
}

.verdict {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.verdict.positive {
  background: rgba(255,255,255,0.2);
  color: white;
}

.verdict.medium {
  background: rgba(255,193,7,0.9);
  color: #000;
}

.verdict.stable {
  background: rgba(40,167,69,0.9);
  color: white;
}

.company-body {
  padding: 20px;
}

.timeline {
  position: relative;
  margin: 20px 0;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6a11cb;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #6a11cb;
}

.timeline-content h4 {
  margin: 0 0 5px 0;
  color: #333;
}

.timeline-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.strategy-breakdown,
.threat-analysis,
.opportunity-analysis {
  margin: 20px 0;
}

.strategy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.strategy-point {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
}

.strategy-point i {
  margin-right: 10px;
  color: #6a11cb;
  font-size: 16px;
}

.market-segmentation {
  margin: 20px 0;
}

.segmentation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.segment h5 {
  margin: 0 0 10px 0;
  padding-bottom: 5px;
  border-bottom: 2px solid;
}

.segment.maintained h5 {
  border-color: #28a745;
  color: #28a745;
}

.segment.lost h5 {
  border-color: #dc3545;
  color: #dc3545;
}

.segment ul {
  margin: 0;
  padding-left: 20px;
}

.segment li {
  margin-bottom: 5px;
  font-size: 14px;
}

/* Device Obituary */
.device-obituary {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  margin: 40px 0;
  border-left: 5px solid #6a11cb;
}

.obituary-header {
  background: #6a11cb;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
}

.obituary-header i {
  font-size: 24px;
  margin-right: 15px;
}

.obituary-header h3 {
  margin: 0;
}

.obituary-content {
  padding: 20px;
}

.replacement-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 20px 0;
}

.legacy-system,
.ai-replacement {
  padding: 20px;
  border-radius: 8px;
}

.legacy-system {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
}

.ai-replacement {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
}

.system-limitations,
.ai-advantages {
  margin-top: 15px;
}

.limitation,
.advantage {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.limitation i {
  color: #dc3545;
  margin-right: 10px;
}

.advantage i {
  color: #28a745;
  margin-right: 10px;
}

.timeline-prediction {
  margin: 30px 0;
}

.timeline-visual {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

.timeline-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  transform: translateY(-50%);
}

.timeline-phase {
  position: relative;
  text-align: center;
  flex: 1;
  padding: 20px 10px;
}

.timeline-phase::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.timeline-phase.current::before {
  background: #28a745;
  box-shadow: 0 0 0 3px white, 0 0 0 6px #28a745;
}

.timeline-phase.near::before {
  background: #ffc107;
  box-shadow: 0 0 0 3px white, 0 0 0 6px #ffc107;
}

.timeline-phase.obsolete::before {
  background: #dc3545;
  box-shadow: 0 0 0 3px white, 0 0 0 6px #dc3545;
}

.phase-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.phase-description {
  font-size: 12px;
  color: #666;
}

/* Risk Matrix */
.risk-matrix {
  margin: 40px 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.matrix-header {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0.7fr 1.5fr;
  gap: 10px;
  padding: 15px 20px;
  background: #6a11cb;
  color: white;
  font-weight: bold;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0.7fr 1.5fr;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}

.matrix-row:last-child {
  border-bottom: none;
}

.matrix-row.high-risk {
  background: #fff5f5;
}

.matrix-row.medium-risk {
  background: #fffbf0;
}

.matrix-row.low-risk {
  background: #f0fff4;
}

.risk-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.risk-badge.high {
  background: #dc3545;
  color: white;
}

.risk-badge.medium {
  background: #ffc107;
  color: #000;
}

.risk-badge.low {
  background: #28a745;
  color: white;
}

.adaptation-strategies {
  margin: 40px 0;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.strategy-card {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.strategy-icon {
  font-size: 32px;
  color: #6a11cb;
  margin-bottom: 15px;
}

/* Growth Areas */
.growth-sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.sector-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sector-card.high-growth {
  border-top: 4px solid #28a745;
}

.sector-card.medium-growth {
  border-top: 4px solid #ffc107;
}

.sector-header {
  padding: 20px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
}

.sector-header i {
  font-size: 24px;
  margin-right: 15px;
  color: #6a11cb;
}

.sector-header h3 {
  margin: 0;
  font-size: 18px;
}

.sector-content {
  padding: 20px;
}

.opportunity-example {
  background: #e7f3ff;
  padding: 10px;
  border-radius: 4px;
  margin-top: 15px;
  font-size: 14px;
}

/* Historical Comparison */
.historical-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.era-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.era-header {
  padding: 20px;
  color: white;
  text-align: center;
}

.era-header.industrial {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.era-header.digital {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.era-impact,
.era-outcome {
  padding: 20px;
}

.era-impact h4,
.era-outcome h4 {
  margin-top: 0;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.future-workforce {
  margin: 40px 0;
}

.workforce-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.role-card {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.role-icon {
  font-size: 32px;
  color: #6a11cb;
  margin-bottom: 15px;
}

.strategic-implications {
  margin: 40px 0;
}

.implication-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.implication-card {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-left: 4px solid #6a11cb;
}

/* Conclusion */
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.recommendation-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.rec-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #6a11cb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.rec-content h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.rec-content p {
  margin: 0;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .shift-comparison,
  .stats-grid,
  .strategy-points,
  .segmentation-grid,
  .strategy-cards,
  .growth-sectors,
  .historical-comparison,
  .workforce-roles,
  .implication-cards,
  .recommendation-grid {
    grid-template-columns: 1fr;
  }
  
  .matrix-header,
  .matrix-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .category-header,
  .examples-header,
  .risk-header,
  .timeline-header,
  .reason-header {
    font-weight: bold;
    margin-top: 10px;
  }
  
  .timeline-visual {
    flex-direction: column;
    gap: 20px;
  }
  
  .timeline-visual::before {
    display: none;
  }
  
  .timeline-phase::before {
    position: static;
    transform: none;
    margin: 0 auto 10px auto;
    display: block;
  }
  
  .recommendation-item {
    flex-direction: column;
    text-align: center;
  }
  
  .rec-number {
    align-self: center;
  }
}