.command-staff-page-wrapper {
    margin: 4rem 0;
}

.command-staff-list-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;

    @media (min-width: 768px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.command-list-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.5);
    transition: all 0.1s linear;
    text-decoration: none;
    color: #404040;
    background: #e3e3e3;

    &:hover {
        box-shadow: 15px 15px 15px 0px rgba(0,0,0,0.5);
        transform: scale(1.05);
        transition: all 0.1s linear;
    }

    a {
        text-decoration: none;
        width: 100%;
    }
}

.command-list-image {
    width: 100%;
    margin-bottom: 0;

    img {
        width: 100%;
        height: 25rem;
        object-fit: cover;
        object-position: top;
    }
}

.command-list-text {
    color: var(--text-base);
    padding: 0.5rem 2rem;

    p {
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    h3 {
        font-size: 1.125rem;
        line-height: 1.75rem;
        margin: 0;
    }

    h4 {
        font-size: 1rem;
        line-height: 1.5rem;
        margin: 0;
    }
}