/* Scoped to .personal so it won't affect other templates */
.personal {
  font-family: system-ui, sans-serif;
  background: #f8f9fa;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.personal .header {
  background: #003e7e;
  color: white;
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.personal .header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.personal .header .tagline {
  font-size: 1.1rem;
  opacity: 0.9;
}

.personal .content {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.personal .intro p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.personal .links {
  margin-top: 2.5rem;
}

.personal .links h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #003e7e;
}

.personal .links ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.personal .links a {
  color: #003e7e;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.personal .links a:hover {
  color: #0055b8;
  border-color: #0055b8;
}

.personal .footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #eaeaea;
  color: #333;
}
