/* The Card Container */
.staff-list-item {
    border: 1px solid #e0e0e0;
    border-left: 5px solid #002e5b; /* Universal School Blue accent */
    padding: 15px;
    margin-bottom: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.staff-list-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
}

/* Staff Name */
.staff-list-item h4 {
    margin: 0 0 5px 0 !important;
    color: #002e5b !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}

/* Title and Department */
.staff-list-item p {
    margin: 0 !important;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* Email Link */
.staff-list-item a {
    color: #002e5b;
    font-size: 13px;
    text-decoration: none;
    margin-top: 8px;
    font-weight: 600;
}