/* ===== Card Product Name — Nomelly =====
 * The product name is the card's headline, so it takes the display serif.
 * Kombos ships this element with `text-sm-medium md:text-md-medium`, and
 * global.css binds every `text-*` utility to the body face — component CSS wins
 * on specificity (it loads last and carries the single component scope), so the
 * serif is reasserted here on purpose rather than by accident.
 */

.cc_ybju7jv0_card_product_name .kombos-card-product-name {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.cc_ybju7jv0_card_product_name .kombos-card-product-name__link {
  display: block;
  max-width: 100%;
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--kombos-gray-800);
  /* the underline grows rather than blinks */
  background-image: linear-gradient(var(--kombos-gray-800), var(--kombos-gray-800));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 340ms cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 1px;
}

.cc_ybju7jv0_card_product_name .kombos-card-product-name__link:hover {
  text-decoration: none;
  background-size: 100% 1px;
}

.cc_ybju7jv0_card_product_name .kombos-card-product-name__link--single-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .cc_ybju7jv0_card_product_name .kombos-card-product-name__link { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cc_ybju7jv0_card_product_name .kombos-card-product-name__link { transition: none; }
  .cc_ybju7jv0_card_product_name .kombos-card-product-name__link:hover { text-decoration: underline; text-underline-offset: 3px; }
}
