.home-story-card.has-product {
  flex-basis: 88px;
  width: 88px;
}

.home-story-product-meta {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 2px;
  margin-top: -3px;
  color: var(--emy-navy);
  font-size: 9.5px;
  line-height: 1.1;
  text-align: center;
}

.home-story-product-meta strong,
.home-story-product-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-story-product-meta strong {
  font-weight: 780;
}

.home-story-product-meta span {
  color: var(--emy-orange);
  font-weight: 850;
}

.home-story-viewer-bars span.is-active.is-loading::before {
  width: 38%;
  animation: home-story-progress-loading .9s ease-in-out infinite;
}

@keyframes home-story-progress-loading {
  0% {
    transform: translateX(-115%);
    opacity: .56;
  }

  55% {
    opacity: 1;
  }

  100% {
    transform: translateX(275%);
    opacity: .56;
  }
}

.home-story-viewer-product {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(0,27,71,.76);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  pointer-events: none;
  text-align: left;
}

.home-story-viewer-product strong {
  overflow: hidden;
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-story-viewer-product span {
  width: fit-content;
  border-radius: 999px;
  background: #fff4e8;
  color: #d85a00;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .home-story-viewer-bars span.is-active.is-loading::before {
    animation-duration: 1.8s;
  }
}
