/* ==========================================================================
   CSS Variables
   ========================================================================== */

.st-product-card-subtitle {
  --st-pcs-font-family: inherit;
  --st-pcs-font-weight: 400;
  --st-pcs-font-style: normal;
  --st-pcs-font-size: 13px;
  --st-pcs-font-size-mobile: 12px;
  --st-pcs-color: #000;
  --st-pcs-text-align: left;
  --st-pcs-line-height: 120%;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.st-product-card-subtitle {
  font-family: var(--st-pcs-font-family);
  font-weight: var(--st-pcs-font-weight);
  font-style: var(--st-pcs-font-style);
  font-size: var(--st-pcs-font-size);
  color: var(--st-pcs-color);
  text-align: var(--st-pcs-text-align);
  line-height: var(--st-pcs-line-height);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.st-product-card-subtitle--empty {
  display: none !important;
}

/* ==========================================================================
   Mobile (max-width: 959px)
   ========================================================================== */

@media (max-width: 959px) {
  .st-product-card-subtitle {
    font-size: var(--st-pcs-font-size-mobile);
  }
}
