.loading {
  padding: 2rem 0;
}

.loading__skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-field);
}

.loading__skeleton--title {
  height: 2rem;
  width: 40%;
  margin-bottom: 1rem;
}

.loading__skeleton--line {
  height: 1rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.loading__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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