.member-wrapper{
    display: flex;
    flex-direction: row;
}

.member-card-holder{
    width: 150px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 0;
}

.member-card-wrapper-v3 {
    /* display: grid;
    grid-template-columns: repeat(5,1fr);
    width: fit-content;
    height: fit-content; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 760px;
    max-width: 50%;
}

.member-card-wrapper-v3 .member-card {
    width: 100px;
    height: 210px;
    padding: 0;
    margin: 0;
}

.member-card-wrapper-v3 .member-card-holder:first-child .member-card {
    margin: 0;
}

.member-card-wrapper-v3 .member-card-background {
    display: none;
    background: transparent;
}

.member-image-holder {
    width: 100px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
}



.member-card-wrapper-v3 .member-image {
    width: 75px;
    height: 75px;
    width: 150px;
    height: 150px;
    filter: grayscale(1);
    transition: 0.4s;
}

.member-card-wrapper-v3 .member-card-holder.open .member-image,
.member-card-wrapper-v3 .member-image:hover {
    filter: grayscale(0);
    transform: scale(1.1);
    transition: 0.2s;
}



.member-card-wrapper-v3 .member-name-holder {
    height: unset;
}

.member-card-wrapper-v3 .member-name {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}

.member-card-wrapper-v3 .member-job-title-holder {
    display: none;
}

/* **************** */
/* **************** */
/* **************** */

.member-display-wrapper {
    position: relative;
    width: calc(100% - 760px);
    height: 500px;
    margin: auto;
    overflow: hidden;
}

.member-display {
    position: absolute;
    right: -100%;
    opacity: 0;
    transition: 0.4s;
    width: 100%;
    background-color: #012F6B;
    
    border-radius: 16px;
    padding: 20px;
}

.member-display.open {
    opacity: 1;
    right: 0%;
}

/* ************** */

.member-display-header {
    display: flex;
    flex-direction: row;
    /* height: 200px; */
    width: 100%;
}

.member-display-header-left {
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;


    display: none;
}

.member-display-header-right {
    width: calc(100% - 200px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.member-display-header-image {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
}

.member-display-name h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 10px;
}

.memeber-display-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
}

.memeber-display-title p{
    margin-bottom: 0;
}
.member-display-content {
    color: #ffffff;
    font-size: 14px;
}

.member-display-content p {
    margin-bottom: 10px;
}

