/* SEO Analysis Specific Styles */
.seo-analysis-hero {
  background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
  color: white;
  padding: 6rem 0 3rem;
}

.seo-analysis-hero .hero-text h1 {
  color: white;
  font-family: 'Source Serif Pro', serif;
  font-weight: 700;
}

.seo-analysis-hero .article-category {
  background: rgba(255,255,255,0.2);
  color: white;
}

.seo-analysis-hero .article-meta {
  color: rgba(255,255,255,0.8);
}

.seo-analysis-hero .tag {
  background: rgba(255,255,255,0.2);
  color: white;
}

.analysis-section {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-top: 5px solid;
}

.section-positive {
  border-top-color: #2ecc71;
}

.section-negative {
  border-top-color: #e74c3c;
}

.section-balanced {
  border-top-color: #3498db;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.section-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 28px;
}

.positive-icon {
  background: #d5f4e6;
  color: #27ae60;
}

.negative-icon {
  background: #ffeaea;
  color: #c0392b;
}

.balanced-icon {
  background: #e3f2fd;
  color: #2980b9;
}

.section-title h2 {
  margin: 0;
  font-family: 'Source Serif Pro', serif;
  font-weight: 600;
}

.section-subtitle {
  color: #7f8c8d;
  font-style: italic;
  margin-top: 5px;
}

.dichotomy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  position: relative;
}

.scale-container {
  width: 100%;
  max-width: 800px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.scale-bar {
  height: 60px;
  background: linear-gradient(to right, #2ecc71, #f1c40f, #e74c3c);
  border-radius: 30px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.scale-marker {
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.8);
}

.scale-label {
  position: absolute;
  top: 70px;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 600;
}

.scale-label.left {
  color: #27ae60;
}

.scale-label.right {
  color: #c0392b;
}

.scale-label.center {
  color: #f39c12;
}

.benefits-grid, .risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.benefit-card, .risk-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.benefit-card:hover, .risk-card:hover {
  transform: translateY(-5px);
}

.benefit-card {
  border-left: 4px solid #2ecc71;
}

.risk-card {
  border-left: 4px solid #e74c3c;
}

.benefit-header, .risk-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.benefit-icon, .risk-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.benefit-icon {
  background: #d5f4e6;
  color: #27ae60;
}

.risk-icon {
  background: #ffeaea;
  color: #c0392b;
}

.data-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.data-point {
  background: white;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.data-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
}

.positive-data {
  color: #27ae60;
}

.negative-data {
  color: #c0392b;
}

.neutral-data {
  color: #3498db;
}

.evolution-timeline {
  position: relative;
  padding-left: 30px;
  margin: 40px 0;
}

.evolution-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #0c2461, #4a69bd);
}

.evolution-phase {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}

.phase-marker {
  position: absolute;
  left: -11px;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #0c2461;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #0c2461;
}

.phase-year {
  font-weight: 700;
  color: #0c2461;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.phase-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.ethical-framework {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  border-left: 5px solid #27ae60;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.framework-item {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.framework-icon {
  width: 60px;
  height: 60px;
  background: #d5f4e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #27ae60;
  font-size: 24px;
}

.expert-quote {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 5px solid #3498db;
}

.quote-content p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 20px;
}

.quote-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  background: #3498db;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.author-info h4 {
  margin: 0;
  color: #2c3e50;
}

.author-title {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.references-section {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin: 40px 0;
}

.reference-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reference-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.reference-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.reference-item a {
  color: #3498db;
  text-decoration: none;
}

.reference-item a:hover {
  text-decoration: underline;
}

.reference-meta {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .scale-container {
    padding: 15px;
  }
  
  .scale-bar {
    height: 40px;
  }
  
  .benefits-grid, .risks-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
  }
  
  .section-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .evolution-timeline {
    padding-left: 20px;
  }
  
  .evolution-phase {
    padding-left: 20px;
  }
  
  .phase-marker {
    left: -8px;
  }
}