﻿.group-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0.15625rem 0.21875rem;
}
.people-item{
    background: #FFFFFF;
    border-radius: 0.0521rem;
    border: 1px solid #EBB850;
    padding:0.1042rem 0.09375rem 0.0625rem;
    transition: all ease 0.3s;
}
.people-item:hover{
    transform: translateY(-8px);
}
.people-item:hover img{
    transform: scale(1.1);
}
.people-img{
    overflow: hidden;
    height: 1.224rem;
}
.people-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:all ease 0.3s;
}
.people-info{
    display: flex;
    justify-content: space-between;
    margin-top:0.0521rem
}
.people-info .people-name{
    font-weight: bold;
    font-size: 0.125rem;
    color: #870A0F;
}
.people-tags{
    display: flex;
    flex-direction: column;
    padding-top:0.03125rem;
}
.people-tag{
    font-weight: 400;
    font-size: 0.09375rem;
    color: #454545;
}
.people-tag+.people-tag{
    margin-top:0.03125rem
}

.people-text{
    font-weight: 400;
    font-size: 0.0729rem;
    color: #7E7E7E;
    line-height: 0.1042rem;
    margin-top:0.1042rem
}