.olmia-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;           /* Centers the grid container itself on the page */
    justify-items: center;    /* Centers each item (the person) horizontally inside its grid cell */
    align-items: start;       /* Keeps items aligned to the top of the row */
}
.olmia-team-member{display:flex;flex-direction:column;align-items:center}
.olmia-photo{width:100%;max-width:250px;aspect-ratio:1/1;border-radius:15px;overflow:hidden;margin-bottom:15px}
.olmia-photo img{width:100%;height:100%;object-fit:cover}
.olmia-name{
    color: #EF7300;
    font-size: 35px;
    font-weight: 600;
    margin: 5px 0;
    display: block;
    width: min-content;
    min-width: 160px;
    margin-left: auto;
    margin-right: auto;
    line-height: 38px;
    text-transform: capitalize;
}
.olmia-role{font-size:22px;color:#053A62;margin-bottom:5px}
.olmia-email{font-size:22px;color:#053A62;text-decoration:underline}
@media(max-width:900px){.olmia-team-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.olmia-team-grid{grid-template-columns:1fr}}