.custom-two-column-module {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    padding: 2rem;
  }

  .left-column {
    width: 100%;
    max-width: 50%;
    box-sizing: border-box;
    padding-right: 1rem;
  }

  .right-column {
    width: 100%;
    max-width: 50%;
    box-sizing: border-box;
    padding-left: 1rem;
    display: grid;
    gap: 1.5rem;
  }

  {% set count = module.logo_group|length %}
  {% if count == 1 %}
    .right-column {
      grid-template-columns: repeat(1, 1fr);
    }
  {% elif count == 2 %}
    .right-column {
      grid-template-columns: repeat(2, 1fr);
    }
  {% else %}
    .right-column {
      grid-template-columns: repeat(2, 1fr);
    }
  {% endif %}

  .right-column img {
    display: block;
    margin: auto;
    max-height:70px;
  }

  @media (max-width: 768px) {
    .left-column,
    .right-column {
      max-width: 100%;
      padding: 0;
    }
  }