.staff_box {
    width: 96%;
    height: auto;
    margin: auto;
    padding: 1rem 0px;
    position: relative;

    .sta_title {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-top: 1rem;

        .title {
            width: 10rem;
            height: 3rem;
            text-align: center;
            line-height: 2rem;
            font-size: 1.35rem;
            font-weight: bold;
            letter-spacing: 4px;
            background: url(/assets/img/title_bg.png) no-repeat;
            background-size: 100% 100%;
        }
    }

    .base_bg {
        font-size: 12rem;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.5rem;
        color: #f9f9f9;
        font-style: italic;
    }

    .staff_info {
        position: relative;
        top: -15rem;
        left: 5rem;
        transition: opacity 0.3s ease-in-out, left 0.3s ease-in-out;
        max-width: calc(100% - 5rem);
        width: auto;

        .staff_name {
            font-size: 1.75rem;
            font-weight: bold;
            display: flex;
            flex-direction: column;
            align-content: flex-start;
            align-items: flex-start;
            gap: 1rem;

            .striping {
                width: 35%;
                height: 1rem;
                margin-top: -2rem;
                background: linear-gradient(45deg, #89371f3d, transparent);
            }
        }

        .staff_brief {
            font-size: 1.25rem;
            line-height: 2.5;
            color: #999;
        }
    }

    .sta_cut {
        width: 95%;
        height: 6rem;
        background: #86381F;
        margin-top: -8rem;
        margin-bottom: 3rem;
        border-radius: 0 1rem 1rem 0;
        position: relative;

        .staff_list {
            position: absolute;
            top: -7rem;
            left: 5rem;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-start;
            align-items: flex-end;
            gap: 2.5rem;
        }

        .staff_item {
            width: 8.5rem;
            height: 12rem;
            background: #fff;
            border: 1px #eee solid;
            border-radius: 0.5rem;
        }

        .staff_item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.5rem;
        }

        .staff_item.active {
            width: 10rem;
            height: 15rem;
        }
    }

    .staff_photo {
        position: absolute;
        bottom: 0px;
        right: 8rem;
        width: auto;
        height: 42rem;
        z-index: 5;

        img {
            width: 100%;
            height: 100%;
            transition: opacity 0.3s ease-in-out;
        }
    }

    .sta_cutbut {
        position: absolute;
        top: 50%;
        right: 28%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: row;
        gap: 1rem;
        z-index: 10;

        iconify-icon {
            font-size: 3rem;
            color: #ffffff50;
            cursor: pointer;
        }

        iconify-icon:hover {
            color: #f0f0f0;
        }
    }
}