/* About page */

.about-page {
  padding: 4rem 2rem;
}

.about-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.about-header h1 {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.about-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9375rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.about-social {
  display: flex;
  gap: 1rem;
}

.about-social a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
}

.about-social a:hover {
  color: var(--primary);
}

.about-credentials-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about-credentials-inline span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.375rem 1rem;
  border-radius: 1rem;
}

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

.about-narrative p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-narrative strong {
  color: var(--text);
}

.about-newsletter {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.about-newsletter h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.about-newsletter p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.about-newsletter .form-message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.about-newsletter .form-message.success {
  color: var(--emerald);
}

.about-newsletter .form-message.error {
  color: var(--coral);
}

@media (max-width: 768px) {
  .about-header {
    flex-direction: column;
    text-align: center;
  }

  .about-social {
    justify-content: center;
  }

  .about-credentials-inline {
    justify-content: center;
  }
}
