._testimony {
    cursor: pointer;
    display: flex;
    background-color: #F3F4F6;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
    border-radius: .8rem;
    align-items: center;
    flex-direction: column;
    width: 22%;
    margin: 1rem;
    min-width: 20rem;
    min-height: 21rem;
    overflow: hidden;
    transition: all .25s;
}

._testimonyHeader {
    margin: 1rem;
}

._testimonyText {
    text-align: center;
    flex: 1;
    height: 15vh;
}

._testimonyAuthor {
    font-weight: 700;
    color: black;
}

._blogLink {
    display: flex;
    flex-direction: column;
    flex:1;
}

._blogDescription {
    font-weight: 600;
    margin-bottom: 1rem;
}

._testimonyQuote {
    height: 16px;
    width: 16px;
}


._testimonyMainContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .75rem;
}

._blogDate {
    flex:1;
    font-size: 1rem;
    text-align: justify;
}

._testimonyImageContainer {
    overflow: hidden;
    margin-top: 3vh;
    border-radius: 32px;
}

._testimonyFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

._testimonyImage {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    transition: all .4s;
    object-fit: cover;
}

._testimony:hover {
    box-shadow: 5px 5px 6px rgba(0,0,0,0.25);
}

._testimony:hover ._testimonyImage {
    transform: scale(1.1);
}

._testimonyBottomDiv {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}