/* Approved pastel portrait, scoped to the About page. */
.profile-sidebar {
  min-width: 0;
  align-self: start;
  display: grid;
  gap: 1.5rem;
}

.profile-portrait {
  width: min(100%, 20rem);
  margin: 0 auto;
  padding: 0.5rem;
  background: #f5eee2;
  border: 1px solid #e2d7c6;
  border-radius: 4px;
}

.profile-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.profile-sidebar .fact-panel {
  width: 100%;
}

@media (max-width: 600px) {
  .profile-portrait {
    width: min(100%, 17rem);
  }
}
