.staff_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px auto 0 auto;
}

.staff_card {
    background: #ffffff;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.staff_card .flx {
    justify-content: normal;
    gap: 20px;
    margin-bottom: 20px;
}

.staff_photo {
    width: 70%;
    padding-top: 70%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 16px;
}

.staff_photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff_name {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    width: 30%;
}

.staff_name span {
    display: block;
    font-size: 90%;
}

@media (max-width:1000px) {
    .staff_box {
        gap: 30px;
    }

    .staff_name {
        text-align: center;
        width: 100%;
    }
}

@media(max-width:767px) {
    .staff_box {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}