﻿.staffList {
    display: grid;
    grid-template-columns: 10rem repeat(5, 1fr);
    gap: .75em;
    margin-left: 2em;
    /* Center content inside every grid cell */
    justify-items: start;
    align-items: center;
}
    


.staffListNoImage {
    display: grid;
    grid-template-columns: 10rem repeat(4, 1fr);
    gap: .75em;
    margin-left: 2em;
    /* Center content inside every grid cell */
    justify-items: start;
    align-items: center;
}

.staffList > div, staffListNoImage > div {
    text-align: left;
}
/* Text cells in each row */
.staffRow > * {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Image box */
.staffImage {
    width: 10rem;
    height: 10rem;
    border-radius: 4px;
    overflow: hidden;
}

    /* Fill the box if an actual image exists */
    .staffImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Placeholder look */
    .staffImage.is-missing {
        border: 2px solid #ccc;
        background: #f7f7f7;
        color: #666;
        font-style: italic;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Header look (optional) */
.staffHeader {
    font-weight: bold;
    text-align: center;

}
