.profile-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.profile-image-col {
  flex: 0 0 200px;
}

.profile-text-col {
  flex: 1;
  min-width: 0;
}

.profile-image img,
img.profile-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.profile-image figure {
  margin: 0;
}

@media (max-width: 768px) {
  .profile-row {
    flex-direction: column;
  }

  .profile-image-col {
    flex: none;
  }
}