.stafflist {
    padding-top: 60px;
}

/* RESET */
.stafflist ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* MAIN GRID */
.stafflist ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 0;
}

/* EACH CARD */
.stafflist ul li {
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* CARD WRAPPER */
.directory-wrap {
    height: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

/* INNER FLEX */
.flex {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* IMAGE */
.column-1 {
    flex: 0 0 100px;
}

.sphoto img,
.pic img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

/* CONTENT */
.column-2 {
    flex: 1;
    min-width: 0;
}

.stafflist ul li h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #02028c;
    margin: 0 0 5px 0;
    font-size: 28px;
    line-height: 1.2;
}

.stafflist ul li p {
    font-family: 'Roboto', sans-serif;
    margin: 0 0 4px;
    line-height: 1.4;
}

.desg,
.dir-desg,
.sdesg {
    font-weight: 600;
    font-size: 17px;
    color: darkslategray;
    letter-spacing: 0.3px;
}

/* SEARCH BOX */
.input-wrap input {
    width: 50%;
    position: absolute;
    top: 15px;
    height: 50px;
    border: 2px solid #02028C;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    padding-left: 15px;
}

/* PLACEHOLDER */
::placeholder {
    color: #000;
    opacity: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* TELEPHONE NOTE */
.tele-info {
    text-align: right;
    margin: 20px 50px 0 0;
}

.list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.list .staff-card {
    width: 33.3333%;
    list-style: none;
    box-sizing: border-box;
}

/* remove bootstrap float effects */
.list .staff-card > div {
    width: 100%;
}

/* equal card height */
.directory-wrap {
    height: 100%;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
}

/* card inner layout */
.flex {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.column-1 {
    flex: 0 0 100px;
}

.column-2 {
    flex: 1;
}

.pic img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

/* mobile */
@media (max-width: 992px) {
    .list .staff-card {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .list .staff-card {
        width: 100%;
    }

    .flex {
        flex-direction: column;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stafflist ul li {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .stafflist ul {
        display: block;
    }

    .stafflist ul li {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .flex {
        display: block;
    }

    .column-1 {
        margin-bottom: 12px;
    }

    .pic img,
    .sphoto img {
        width: 90px;
        height: 90px;
    }

    .input-wrap input {
        width: 100%;
        left: 0;
    }

    .stafflist ul li h3 {
        font-size: 20px;
    }

    .stafflist ul li p {
        font-size: 14px;
    }
}