/**
 * About Page Specific Styles
 */

/* Timeline Styles */
.timeline-preview {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.timeline-preview h4 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #e2e8f0;
  transition: all 0.3s ease;
}

.timeline-item.active {
  border-left-color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.05);
}

.timeline-item .year {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.125rem;
}

.timeline-item .event {
  color: var(--text-primary);
  font-weight: 500;
}

/* Story Content */
.story-content {
  padding: 2rem 0;
}

.story-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

/* Map Visualization */
.map-visualization {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.map-visualization h4 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.coverage-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.stat {
  text-align: center;
}

/* Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.leader-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.leader-image {
  height: 250px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 3rem;
}

.leader-info {
  padding: 2rem;
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.leader-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-bio {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-blue);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Culture Section */
.culture-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.culture-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.culture-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.culture-card h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.culture-card ul {
  list-style: none;
  padding: 0;
}

.culture-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.culture-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .story-highlights {
    margin-top: 1rem;
  }
  
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  
  .culture-features {
    grid-template-columns: 1fr;
  }
}