/* about.css */

.about-content {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-text p {
  font-family: "Aktiv Grotesk Regular", sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.5;
  max-width: 60ch;
}

.pdf-download {
  display: inline-block;
  font-family: "Aktiv Grotesk Regular", sans-serif;
  font-size: 0.9rem;
  color: #111;
  border: 1px solid #111;
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  width: fit-content;
}

.pdf-download:hover {
  background: #111;
  color: #f5f4f0;
}