.profile-hero {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 0 32px;
}

.profile-hero img {
  width: 180px;
  height: 180px;
  border: 6px solid #eff6ff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.profile-content {
  max-width: 820px;
  padding-bottom: 56px;
}

.two-col-list {
  display: grid;
  gap: 0 18px;
}

.profile-social {
  margin-top: 10px;
}

@media (min-width: 720px) {
  .profile-hero {
    grid-template-columns: 220px 1fr;
  }

  .profile-hero img {
    width: 220px;
    height: 220px;
  }

  .two-col-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
