.profile-header {
  margin-bottom: 3rem;
}

.profile-header .container {
  margin-bottom: 1rem;
}

.profile-header h1 {
  margin-bottom: 0.1rem;
}

.profile-header p.subheading {
  color: var(--pico-muted-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.profile-header p {
  color: var(--pico-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.profile-image-container {
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--pico-primary-background);
  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;
}