.ce-members-teaser {
    padding: 15px 0;

    .header {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .headline {
        margin-bottom: 20px;
    }
    
    .member-wrapper {
        margin-bottom: 40px;
    }

    .member-item {
        position: relative;
        padding: 0 10px;
        text-align: center;

        figure {
            margin: 0;
            height: 100px;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: center;
    
            img {
                object-fit: contain;
                max-width: 100%;
                max-height: 100px;
                width: auto;
                height: auto;
            }
        }
    
        .title {
            display: block;
            font-size: 15px;
            line-height: 21px;
            text-align: center;
            color: #000;
            margin-top: 8px;
            margin-bottom: 10px;
        }

        .member-link {
            text-decoration: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            font-size: 0;
        }
    }
}

@media (max-width: 768px) {
    .member-wrapper:nth-child(2n+1) {
        clear: both;
    }
}

/* md */
@media (min-width: 769px) {
    .ce-members-teaser {
        padding: 30px 0;
    }
    
    .ce-members-teaser .header {
        margin-bottom: 30px;
    }
    
    .ce-members-teaser .member-item {
        padding: 0 30px;
    }
    
    .ce-members-teaser .member-item figure img {
        max-width: 208px;
    }
    
    .member-wrapper:nth-child(3n+1) {
        clear: both;
    }
}

/* lg */
@media (min-width: 992px)  {
}