*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  background: #0a0a0a;
  color: #eaeaea;
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

.about {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-photo-wrap {
  width: 100%;
}

.about-photo {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #b0b0b0;
  margin: 0;
}

.about-text a {
  color: #eaeaea;
  text-underline-offset: 3px;
}
