#cc-membersLogos-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#cc-membersLogos-wrapper .expand {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: solid 1px #eaeaea;
    padding: 5%;
}

#cc-membersLogos-wrapper a.expand:hover img {
    transform: scale(1.2);
}

#cc-membersLogos-wrapper img {
    width: 160px;
    margin: 0;
    transition: transform 0.2s ease-in-out;
}

#cc-membersLogos-wrapper img .expand {
    display: flex;
    align-items: center;
    justify-content: center;
}

#cc-membersLogos-wrapper img .image-responsive {
    display: block;
    max-width: 100%;
}

.member-grid {
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    grid-column-gap: 50px;
}

/*Sticky Fix*/
body.page {
    overflow: unset;
}

.member-list-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 90px;
    align-self: start;
    margin-top: -110px;
    background-color: white;
    padding: 20px;
}

.cc-members_list_item {
    display: grid;
    grid-template-columns: 2fr 10fr;
    grid-template-rows: 1fr;
    gap: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 35px;
    margin-bottom: 35px;
}

.cc-members_list_item:last-child {
    border-bottom: none;
}

.cc-members_list_item > div:first-child {
    align-self: center;
}

.cc-members_list_item > div > a {
    padding: 9px 24px;
    border-radius: 4px;
    color: white;
    background-color: var(--btn-background);
    font-size: 12px;
    font-weight: bold;
}

@media only screen and (max-width: 1500px) {
    #cc-membersLogos-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 1000px) {
    .cc-members_list_item, .member-grid {
        grid-template-columns: 1fr;
    }

    .member-list-sticky {
        display: none;
    }

    #cc-membersLogos-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 700px) {
    #cc-membersLogos-wrapper {
        grid-template-columns: 1fr;
    }

    #cc-membersLogos-wrapper .expand {
        min-height: 205px;
    }
}