.challenge-profile .profile-picture {
  position: absolute;
  bottom: -50px;
  left: 50px;
  z-index: 1030;
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1rem;
}

.challenge-profile .profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.challenge-profile .info-overlay {
  position: absolute;
  bottom: 20px;
  left: 250px;
  color: white;
  z-index: 1030;
}

.challenge-profile .navbar-gym-profile {
  padding-left: 250px !important;
}

@media (max-width: 768px) {
  .challenge-profile .profile-picture {
    width: 80px;
    height: 80px;
    bottom: 20px;
    left: 20px;
    padding: 0.25rem !important;
  }

  .challenge-profile .info-overlay {
    bottom: auto;
    bottom: 20px;
    left: 110px;
    font-size: 14px;
  }
  
  .challenge-profile .info-overlay h1 {
    font-size: 16px;
  }

  .challenge-profile .navbar-gym-profile {
    padding-left: 0 !important;
  }
} 