  /* Base/Desktop Styles (Screen width 768px and up) */
  .badge-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Desktop: Align Left */
    
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #737373;
    text-align: center;
  }

  .icon-wrapper {
    display: flex;
    align-items: center;
    margin-right: 12px;
  }



  .separator {
    margin: 0 6px;
  }

  /* Mobile Styles (Screen width below 768px) */
  @media (max-width: 767px) {
    .badge-container {
      justify-content: center; /* Mobile: Align Center */
      font-size: 9px;
    }

    .icon-wrapper {
      margin-right: 8px;
    }



    .separator {
      margin: 0 4px;
    }
  }
