.loading-card {
  position: relative;
  display: grid;
  min-height: 82px;
  place-items: center;
  overflow: hidden;
  color: #746b7e;
  font: 800 11px/1 Figtree, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #e6dcc9;
  border: 2px solid transparent;
  border-radius: 16px;
}

.loading-card::after {
  position: absolute;
  right: 12%;
  bottom: 13px;
  left: 12%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #ff6b6b, #ffd45a, transparent);
  border-radius: 999px;
  content: "";
  animation: loading-sweep 1.1s ease-in-out infinite alternate;
}

@keyframes loading-sweep {
  from { opacity: 0.35; transform: scaleX(0.35); }
  to { opacity: 1; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .loading-card::after { animation: none; }
}
