.team-avatars{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.team-avatar{
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    perspective: 3000px;
}
.team-avatar-front{
    justify-content: space-between;
}
.team-avatar-back{
    opacity: 0;
    z-index: 1;
    justify-content: flex-start;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(210px) rotateX(-90deg);
}
.team-avatar-front, .team-avatar-back{
    width: 18rem;
    height: 25rem;
    padding: 1.5rem;
    text-align: center;
    /* background: #FFFFFF; */
    /* background-color: #E0B06C; */
    background: linear-gradient(-0.01turn, #ffffcc, #ddbb6a);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.team-avatar:hover .team-avatar-front{
    opacity: 0;
    transform: translateY(-210px) rotateX(-90deg);
}
.team-avatar:hover .team-avatar-back{
    opacity: 1;
    transform: translateY(0) rotateX(0);
}
.team-avatar-front img{
    width: 15rem;
    height: 20rem;
    border-radius: 0.5rem;
}
.team-avatar-back img{
    width: 12rem;
    height: 16rem;
    border-radius: 0.5rem;
}
.team-avatar-name{
    font-size: 1.5rem;
    font-weight: bold;
    /* margin-top: 1rem; */
    margin-top: 0.25rem;
    /* color: #FEFAF4; */
    font-family: Almendra;
}
.team-avatar-role{
    /* color: #465A18;
    font-weight: bold;
    background-color: #E9B762;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    font-size: 1.1rem;
    /* color: #6C6C6C; */
    color: #ffffcc;
    /* font-family: "Noto Sans"; */
    background-color: #BF8D4E;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-family: Belleza;
}
.team-avatar-description{
    text-align: justify;
    font-family: "Belleza";
    /* font-size: 1.2rem; */
    font-size: 0.8rem;
    line-height: 150%;
    /* line-height: 125%; */
    color: #6F4113;
    font-weight: bold;
}