.strip.strip-timeline {
  background-color: #fff;
}

.timeline-container {
  font-family: Arial, sans-serif;
  color: #000;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-title {
  color: #010101;
  text-align: center;
  margin-bottom: 2rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.timeline-item {
  background-color: #d6d6d7;
  border-left: 5px solid #FFCC00;
  padding: 1rem;
  transition: background-color 0.3s ease;
  cursor: default; /* Changed from pointer to default */
  color: #000;
}

.timeline-item:hover {
  background-color: #ebebeb; /* Slightly lighter background */
  /* Removed transform and box-shadow to avoid clickable feel */
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

.timeline-item:hover .timeline-year,
.timeline-item:hover .timeline-text {
  color: #000; /* Keep text black */
}

.timeline-year {
  color: #000;
  text-align: center;
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  margin: 1rem 0;
}

.timeline-text {
  text-align: center;
  padding-bottom: 0.5rem;
}
