.about-wrapper {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 60px 24px;
}

.about-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  width: 100%;
}

.profile-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

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

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

.about-text a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .about-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }
}
