.circulo_persona {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    aspect-ratio: 0.8;
    background-color: #eee;
    display:flex;
    align-items: center;
    justify-content: center;
    border:solid 1px #fff;
}
.circulo_persona i{
    opacity:.1;
}
.circulo_persona i:before{
    font-size: 14rem;
    color:#68a6df;
}
.circulo_persona .overlay_persona {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 25px;
    opacity: 0;
    z-index: 10;
    transition: all ease 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.persona_wrap {
    text-align: center;
    padding:0 10px;
}
.persona_wrap:hover .overlay_persona {
    opacity: 1;
    text-decoration: none;
}
.persona_wrap .img_persona {
    object-fit: cover;
    height: 100%;
    display: flex;
    align-items: center;
}
.persona_wrap .img_persona img {
    width: auto;
    object-fit: cover;
    height: 100%;
}
.persona_wrap .info_persona {
    text-align: left;
    padding-top: 20px;
    line-height: 1.1em;
    font-size: 0.9rem;
}
.persona_wrap .info_persona .puesto_persona {
    font-weight: 600;

}
.persona_wrap .info_persona .nombre_persona {
    font-weight: 500;
    color:#3B5C7D;
    font-size: 1rem;
    margin:5px 0;
}

@media (max-width: 767px) {
    .persona_wrap .info_persona .puesto_persona {
        font-size: 0.8rem;
    }
    .persona_wrap .info_persona .nombre_persona {
        font-size: 1rem;
    }
}
