.profile-loader {
  display: flex;
  align-items: start;
  gap: 80px;
  width: 100%;
  max-width: 700px;
}

.loader-image {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    #e5e5e5 25%,
    #f5f5f5 50%,
    #e5e5e5 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

.loader-content {
  flex: 1;
}

.loader-name,
.loader-position {
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    #e5e5e5 25%,
    #f5f5f5 50%,
    #e5e5e5 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

.loader-name {
  width: 70%;
  height: 46px;
  margin-bottom: 16px;
}

.loader-position {
  width: 45%;
  height: 18px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 640px) {
  .profile-loader {
    flex-direction: column;
    align-items: flex-start;
  }

  .loader-image {
    width: 100%;
    max-width: 250px;
  }

  .loader-content {
    width: 100%;
  }
}