/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/info/info.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
.info-page {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f4f1eb 0%, #e8e4de 100%);
  color: #2c3e50;
  line-height: 1.7;
  min-height: 100vh;
}

.info-serif {
  font-family: 'Crimson Text', serif;
}

.info-hero-title {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-toc {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
}

.info-toc a {
  display: block;
  padding: 0.5rem 0;
  color: #34495e;
  text-decoration: none;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  margin-left: -1rem;
  transition: all 0.3s ease;
}

.info-toc a:hover {
  color: #3498db;
  border-left-color: #3498db;
  background: rgba(52, 152, 219, 0.05);
}

.info-toc a.active {
  color: #3498db;
  border-left-color: #3498db;
  background: rgba(52, 152, 219, 0.1);
}

.info-content {
  margin-left: 340px;
  max-width: 900px;
  padding: 2rem;
}

.info-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-highlight-box {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left: 4px solid #3498db;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.info-citation {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  text-decoration: none;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}

.info-citation:hover {
  background: #34495e;
  transform: translateY(-1px);
}

.info-comparison-table {
  width: 100%;
  margin: 2rem 0;
}

.info-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-comparison-table th {
  background: #2c3e50;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.info-comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.info-comparison-table tr:nth-child(even) {
  background: #f8f9fa;
}

.info-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f4f1eb;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #34495e;
}

.info-strength-badge {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.info-challenge-badge {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.info-opportunity-badge {
  background: rgba(243, 156, 18, 0.1);
  color: #f39c12;
}

.info-pull-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: #34495e;
  border-left: 4px solid #3498db;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(52, 152, 219, 0.05);
  border-radius: 8px;
}

@media (max-width: 1280px) {
  .info-toc {
    display: none;
  }
  .info-content {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .info-hero-title {
    font-size: 2rem;
  }
  .info-section {
    padding: 1.5rem;
  }
}

