/* About Page Styles */

.about-container {
  max-width: 800px;
  margin: 0;
  padding: 3rem 2rem;
}

.about-bio {
  margin-bottom: 3rem;
}

.about-bio p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
}

.about-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
}

.about-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.about-links a:hover {
  color: var(--text);
}

.about-section {
  margin-bottom: 2.5rem;
}

.about-section h2 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1.5rem;
}

.about-list .year {
  color: var(--text);
  font-size: 0.75rem;
  min-width: 3rem;
  flex-shrink: 0;
}

.about-list .description {
  flex: 1;
}

.about-list a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.about-list a:hover {
  color: var(--text-muted);
}

/* Make site-title clickable */
.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title a:hover {
  opacity: 0.8;
}

/* Active nav link */
.nav-link.active {
  color: var(--bg);
}