

.card-rrhh{
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 1px solid var(--color-light-grey);
    background-color: var(--bg-body);
    color:var(--color-title);
    border-radius: 2px;
    width: 100%;
    max-width: 280px;
    height: 380px;
    max-height: 380px;
    margin-right:24px;
    margin-bottom: 24px;
}

.img-rrhh{
    width: 100%;
    height: 300px;
    max-height: 280px;
    min-height: 280px;
    object-fit: cover;
    margin-bottom: 16px;
}

.text-rrhh{
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    align-items:  center;

}
.text-rrhh p{
    font-size: var(--size-text-body);
    line-height: 0;
}
.text-rrhh h4{
    font-size: var(--h4);
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width: 700px){
    .card-rrhh{
    /* flex-direction: row; */
    align-items: center;
    padding: 0;
    max-width: 100%;
    padding: 0;
    }
    .img-rrhh{
    width: auto;
    height: 80px;
    max-height: 80px;
    object-fit: cover;
    }
    .text-rrhh{
    flex-direction: column;
    }
}