.from-staff ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.from-staff li {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid lightgray;
}

.from-staff li:first-of-type {
    padding-top: 0;
}

.staff-img img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.staff-img .tags {
    color: grey;
    margin: 0;
}

.staff-name {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    margin: 0 0 0 30px;
    padding: 0;
}

.staff-icon-div {
    width: 45px;
    height: 45px;
    margin: 0 10px 0 0;
    padding: 0;
    border: 1px solid lightgray;
    border-radius: 50%;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
}

.staff-name img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: 0 0;
    border: 1px solid grey;
    border-radius: 50%;
    margin: 0 10px 0 0;
    padding: 0;
}

.staff-name span {
    font-size: 1.1rem;
    font-weight: bold;
}

.staff-name p {
    margin: 10px 0 0 0;
    width: 100%;
}

.white .from-staff li {
    display: block;
}

.white .staff-img img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.white .staff-img .tags {
    text-align: center;
    margin-bottom: 20px;
}

.white .staff-name {
    margin: 0;
}