@salesmind-ai/design-system 0.1.8 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3701,6 +3701,31 @@
3701
3701
  aspect-ratio: 16/9;
3702
3702
  }
3703
3703
  }
3704
+ .ds-article-card--no-image .ds-article-card__placeholder {
3705
+ position: relative;
3706
+ width: 100%;
3707
+ aspect-ratio: 16/9;
3708
+ overflow: hidden;
3709
+ background:
3710
+ linear-gradient(
3711
+ 135deg,
3712
+ var(--hc-surface-subtle) 0%,
3713
+ var(--hc-surface) 50%,
3714
+ rgba(var(--accent-rgb), 0.08) 100%);
3715
+ display: flex;
3716
+ align-items: center;
3717
+ justify-content: center;
3718
+ }
3719
+ .ds-article-card__placeholder-icon {
3720
+ width: 48px;
3721
+ height: 48px;
3722
+ opacity: 0.15;
3723
+ color: var(--text-tertiary);
3724
+ transition: opacity var(--transition-base);
3725
+ }
3726
+ .ds-article-card:hover .ds-article-card__placeholder-icon {
3727
+ opacity: 0.25;
3728
+ }
3704
3729
 
3705
3730
  /* src/components/ArticleLayout/ArticleLayout.css */
3706
3731
  .ds-article-layout {