 .product-intro-text {     max-width: 100%;     margin: 20px 0;     font-family: 'Open Sans', sans-serif; } .intro-description {     font-size: 16px;     line-height: 1.5;     color: #333;     margin-bottom: 24px; } .intro-description strong {     color: #0047AB;     font-weight: 600; } .intro-metrics {     display: grid;     grid-template-columns: repeat(2, 1fr);     gap: 12px;     max-width: 600px;     margin: 0 auto; } .metric-tag {     background: #f0f4fa;     padding: 8px 12px;     border-radius: 30px;     font-size: 14px;     font-weight: 600;     color: #0047AB;     text-align: center;     white-space: nowrap;     overflow: hidden;     text-overflow: ellipsis; } @media (max-width: 640px) {     .intro-metrics {         grid-template-columns: 1fr;         max-width: 280px;     }     .metric-tag {         white-space: normal;         word-break: keep-all;     } } 