.personaCard { width: 100%; position: relative; }
.personaCard .image {
    width: 100%;
    height: 414px;
    object-fit: cover;
    object-position: top;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: .3s all linear;
}
.personaCard .textCont { padding: 32px 16px; }
.personaCard .title {
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    transition: .3s all linear;
}
.personaCard .cargo * {
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}
.personaCard .excerpt {
    max-height: 0;
    overflow: hidden;
    transition: .3s all linear;
    transform: scaleY(0);
    padding-inline: 16px;
    position: absolute;
}
.personaCard .excerpt * {
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}
.personaCard:hover .excerpt {
    max-height: inherit;
    transform: scaleY(1);
    transform-origin: bottom center;
}
.personaCard:hover .image { height: 207px; filter: grayscale(0%); -webkit-filter: grayscale(0%); transform: scale(1.2) }
.personaCard:hover .title { color: #74D3C7; }

/* BLOCK M13 (V2) VARIATIONS */
.M13.v2 .personaCard .image { height: 360px; }
.M13.v2 .personaCard:hover .image { transform: scale(1.1); }
.M13.v2 .personaCard .textCont { padding: 24px 16px 0 16px; }
.M13.v2 .personaCard .title, .M13.v2 .personaCard .cargo * { color: #00205B; }
.M13.v2 .personaCard .excerpt { display: none; }
.M13.v2 .linkedin {
    display: block;
    width: fit-content;
    padding-left: 16px;
}


@media screen and (max-width: 800px) {
    /* MOBILE FOR M13 (V1) */
    .M13.v1 .personaCard .image { height: 197px; -webkit-filter: grayscale(0%); filter: grayscale(0%); }
    .M13.v1 .personaCard .excerpt { position: static; transform: none; max-height: 100%; }
    .M13.v1 .personaCard .image { object-position: top; }
}