.loading {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}

.skeletonOverview {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.skeletonCircle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--surface-muted);
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}

.skeletonLines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skeletonLine {
  height: 14px;
  border-radius: 8px;
  background: var(--surface-muted);
  animation: pulse 1.4s ease-in-out infinite;
}

.skeletonCard {
  height: 96px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
