/** At this monitor size it is wider than Figma */
.profile {
  gap: 1rem;
  padding-block-start: 1.5rem;
}
@media (min-width: 50.001rem) {
.profile {
    display: flex;
}
  }
.profile .profile--image {
    width: 60px;
    aspect-ratio: 1;
  }
.profile .profile--image img {
      border-radius: 1e3px;
    }
.profile .profile-info {
    --paragraph-size: 14px;

    display: grid;
    grid-gap: .6rem;
    gap: .6rem;
  }
.profile .profile-info p {
      margin-block: 0;
      font-size: 1rem;
    }
.profile .profile-info p.profile-name {
      margin-top: .5rem;
      line-height: 1rem;
      text-transform: uppercase;
    }
.profile .profile-info .profile-bio p {
      line-height: 1.2rem;
    }
.profile[data-variant="center"] {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
.profile[data-variant="center"] .profile-info p.profile-name {
        margin-top: 0;
      }
