/* [project]/app/[locale]/(public)/_components/MarketingLoadingShell.module.css [app-client] (css) */
.MarketingLoadingShell-module__FDKkoa__shell {
  max-width: 1280px;
  margin-inline: auto;
  padding-block: 5rem;
  padding-inline: 2.5rem;
}

.MarketingLoadingShell-module__FDKkoa__hero {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  margin-block-end: 4rem;
  display: grid;
}

.MarketingLoadingShell-module__FDKkoa__heroText {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.MarketingLoadingShell-module__FDKkoa__skeleton {
  background: linear-gradient(90deg,
    var(--color-bg-soft, #f3f4f6) 0%,
    var(--color-border, #e5e7eb) 50%,
    var(--color-bg-soft, #f3f4f6) 100%);
  background-size: 200% 100%;
  border-radius: .5rem;
  animation: 1.5s ease-in-out infinite MarketingLoadingShell-module__FDKkoa__shimmer;
}

.MarketingLoadingShell-module__FDKkoa__skeletonCard {
  background: var(--color-bg-soft, #f3f4f6);
  border-radius: 1rem;
  height: 280px;
  animation: 1.5s ease-in-out infinite MarketingLoadingShell-module__FDKkoa__shimmer;
}

.MarketingLoadingShell-module__FDKkoa__cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  display: grid;
}

@keyframes MarketingLoadingShell-module__FDKkoa__shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .MarketingLoadingShell-module__FDKkoa__skeleton, .MarketingLoadingShell-module__FDKkoa__skeletonCard {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .MarketingLoadingShell-module__FDKkoa__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/*# sourceMappingURL=app_%5Blocale%5D_%28public%29__components_MarketingLoadingShell_module_0xluw9a.css.map*/