.ppp-featured-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media ( min-width: 768px ) {
  .ppp-featured-product {
    grid-template-columns: 1fr 1fr;
  }
}

.ppp-featured-product-title {
  margin: 0 0 8px;
  color: var(--e-global-color-secondary) text-decoration: none;
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 35px;
  font-weight:700;
}

.ppp-featured-product-excerpt {
 font-size: 18px;
  color: var( --e-global-color-text );
  margin: 0 0 4px;
 display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ppp-quickspecs-row .ppp-spec-label {
   
    font-size: 16px;
    font-weight: 400;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    
}
ul.ppp-quickspecs-row li .ppp-spec-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--e-global-color-secondary);
}
.ppp-featured-product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 14px 0;
}

.ppp-price-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--e-global-color-primary);
}

.ppp-price-disclaimer {
   font-size: 16px;
    font-weight: 400;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
  color: var( --e-global-color-text );
}

.ppp-featured-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

