/* STE Guide Template CSS - Professional styling with maximum specificity */

/* STE information card styling */
html body .ste-info-card {
  background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Statistics display */
html body .ste-stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

html body .ste-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
}

html body .ste-stat-label {
  font-size: 1rem;
  color: var(--muted-text-color);
  margin-top: 0.5rem;
}

/* Benefits grid layout */
html body .benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

html body .benefit-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Timeline styling */
html body .timeline {
  position: relative;
  padding-left: 2rem;
}

html body .timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

html body .timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

html body .timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-color);
}

/* Category overview sections */
html body .category-overview {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

html body .category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

html body .category-emoji {
  font-size: 2rem;
}

html body .category-count {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}
