.profile-image-container {
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #3B82F6;
  width: 100px;
  height: 100px;
}

@media (max-width: 768px) {
  .profile-image-container {
    width: 75px;
    height: 75px;
  }
}

.profile-image-container.post {
  width: 50px;
  height: 50px;
}

.profile-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}