.profile-card {
  container-type: inline-size;

  .profile-card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px;

    @container (min-width: 700px) {
      flex-direction: row;
      text-align: left;
      padding-top: 10cqw;
      padding-bottom: 5cqw;
    }
  }

  .avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;

    @container (min-width: 700px) {
      width: 160px;
      height: 160px;
    }
  }

  .title {
    color: var(--color-heading);
    margin: 0;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: -10px;
  }

  .subtitle {
    display: block;
    margin: 0;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .subtitle-2 {
    color: #aaa;
  }

  p {
    margin: 0;
  }
}
