.members__items {
    display: grid;
    max-width: 50vw;
    gap: 4rem;
}

.member__profile {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
    color: var(--primary-dark);}
    
.member__picture {
    border-radius: 50%;
    object-fit: cover;
    width: 10rem !important;
    height: 10rem !important;
    transition: .5s;
}

.members__phrase {
    font-size: 1.5em;
    font-weight: 400;
    line-height: 28px;
}

.members__phrase > * {
    margin-block: 0;
}

.members__phrase mark {
    background: linear-gradient(to top, transparent 24%, var(--secondary-main) 24%, var(--secondary-main) 45%, transparent 45%);
}

.member__picture.show {
    animation: fade-expand .5s linear 0s 1;
}

.member__name {
    margin-top: 0;
    margin-bottom: .125rem;
    transition: .5s;
    line-height: 2rem;
}

.member__name.show {
    opacity: 1;
    animation-name: fade-left;
    animation-duration: .5s;
    animation-timing-function: ease-out;
}

.member__pronoum.show {
    animation: fade-left .5s 1 linear;
    opacity: 1;
}

.member__phrase {
    margin-bottom: 1.5rem;
    border-left: 1px solid var(--secondary-main);
    padding-left: 1rem;
    color: var(--primary-dark);
}

.member__phrase.show {
    animation: slide-left .5s 1 linear;
}

.member__description {
    line-height: 1.5rem;
    color: var(--primary-dark);
}

.member__description.show {
    animation: slide-in 1s 1 linear;
}

.member__social {
    margin-top: .75rem;
    display: flex;
    gap: .95rem;
}

.member__social.show a {
    animation: fade-up .75s 1 linear;
    opacity: 1;
}

.member__social a {
    transition: .25s;
    background-color: var(--primary-main);
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.member__social img {
    object-fit: cover;
    height: 18px;
    max-width: 18px;
    width: auto;
    filter: invert(1);
}

.member__social a:hover {
    background-color: var(--primary-dark);
}

.members__all-btn {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    cursor: pointer;
    position: relative;
}

.members__all-btn button {
    font-weight: 600;
    margin-top: 1rem;
}

@media screen and (max-width: 45rem) {
    .member__profile {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
}
