.initial-skel { padding: 0; }
.initial-skel-bar {
  height: 56px;
  border-bottom: 1px solid rgba(26, 20, 16, 0.14);
  background: var(--ds-cream-deep, #F1E8D3);
}
.initial-skel-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.initial-skel-block {
  background: linear-gradient(
    90deg,
    var(--ds-cream-deep, #F1E8D3) 0%,
    var(--ds-cream, #FBF6EB) 50%,
    var(--ds-cream-deep, #F1E8D3) 100%
  );
  background-size: 200% 100%;
  animation: initial-skel-sweep 1.5s infinite linear;
  border-radius: 4px;
}
.initial-skel-block.h-eyebrow { height: 12px; width: 120px; margin-bottom: 24px; }
.initial-skel-block.h-title-1 { height: 56px; width: 100%; max-width: 720px; margin-bottom: 12px; }
.initial-skel-block.h-title-2 { height: 56px; width: 70%; max-width: 520px; margin-bottom: 24px; }
.initial-skel-block.h-line    { height: 16px; width: 100%; max-width: 600px; margin-bottom: 8px; }
.initial-skel-block.h-line-sm { height: 16px; width: 75%; max-width: 460px; margin-bottom: 32px; }
.initial-skel-block.h-cta     { height: 44px; width: 180px; border-radius: 9999px; }
@keyframes initial-skel-sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .initial-skel-block {
    animation: none;
    background: var(--ds-cream-deep, #F1E8D3);
  }
}
.initial-skel .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
