.content {
    width: 100%;
}

 /* .group {
    width: 100%;
    margin-bottom: 10px;
    display: grid;
    justify-content: center; 
    grid-template-columns: repeat(3, 1fr); 
    box-sizing: border-box;
    column-gap: 10px;
    row-gap:10px;
}  */


.group {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center incomplete lines horizontally */
}

.gr3 {
    grid-template-columns: repeat(3, 1fr); /* Three columns */
}

.gr1 {
    grid-template-columns: repeat(1, 1fr); /* Three columns */
}

.gr2 {
    grid-template-columns: repeat(2, 1fr); /* Three columns */
}

.gr4 {
    grid-template-columns: repeat(4, 1fr); /* Three columns */
}

.group h2 {
    margin-bottom: 10px;
}

.hidden {
    display: none;
}
.person {
    width: 24%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 40%;
    margin-right: 10px;
    display:flex;
    align-items: center;
    justify-content: center; 
}

/* Additional styling for the avatar image if you want to add real images */
.avatar img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}


.details p{
    margin:0;
    line-height: 1;
    display:flex;
    text-align: left;
    font-size: 1em;
}

.details p.role{
   font-weight: bold;
   font-size: 0.7em;
}

.details p.school{
    font-size: 0.7em;
 }
 


