    .featured-brands-container {
      max-width: 1368px;
      margin: 0 auto;
      position: relative;
      background: url('https://static.globalindustrial.com/site42/htmlsection/shop-by-brand/global-bins-resized.webp') top/cover no-repeat;
      color: #FFF;
      padding: 2rem 2rem;
    }

    /* Overlay */
    .featured-brands-container::before {
      content: "";
      position: absolute;
      inset: 0;
      /* background-color: rgba(0, 45, 80, 0.85);  */
      /* #002D50 with 85% transparency */
      z-index: 1;
    }

    .featured-brands-content {
      position: relative;
      z-index: 1;
    }

    .featured-brands-container h2 {
      text-align: center;
      margin-bottom: 1rem;
      font-size: 1.5rem;
      font-weight: 600;
      color: #FFF;
    }

    /* Grid container */
    .common-grid-style {
      display: grid;
      gap: 1rem;
      margin: 1rem 0;
    }

    .card-grid-mobile {
      grid-template-columns: repeat(3, 1fr); /* Mobile first: 3 columns */
    }

    /* Card */
    .card-featured-brands {
      background: white;
      color: #000;
      border-radius: 4px;
      border: #BCBEC0 1px solid;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-align: center;
      transition: transform 0.2s;
    }

    .card-featured-brands:hover {
      transform: scale(1.03);
    }

    .card-featured-brands img {
      width: 100%;
      height: auto;
      display: block;
    }

    .card-featured-brands a {
      display: block;
      padding: 1rem;
      text-decoration: none;
      color: #002D50;
      font-weight: bold;
    }

    /* Larger screens */
    @media screen and (min-width: 768px) {
      .featured-brands-container h2 {
        font-size: 1.625rem;
        margin-top: 0;
      }

      .card-grid-mobile {
        display: grid;
        grid-template-columns: repeat(5, 1fr); 
      }
    }

    @media screen and (min-width: 1200px) {
      .card-grid-5 {
        grid-template-columns: repeat(5, 1fr); 
      }

      .card-grid-10 {
        grid-template-columns: repeat(10, 1fr);
      }
      
      .card-grid-20 {
        grid-template-columns: repeat(10, 1fr); /* always 10 columns */
        grid-auto-rows: auto; /* rows expand to fit content */
      }
    }
