.employee-wrapper .box {
    background-color: var(--color-white);
    box-shadow: 0 24px 24px rgba(0, 0, 0, 0.08);
    padding: 1rem;
}

@media screen and (min-width: 64rem) {
    .employee-wrapper .box {
        padding: 2rem;
    }
}

.employee-wrapper .box .flex-wrapper {
    display: block;
}

@media screen and (min-width: 64rem) {
    .employee-wrapper .box .flex-wrapper {
        align-items: center;
        display: flex;
    }
}

.employee-wrapper .box .flex-wrapper .image-container {
    height: 80px;
    margin: 0 auto 1rem;
    min-width: 80px;
    width: 80px;
}

@media screen and (min-width: 64rem) {
    .employee-wrapper .box .flex-wrapper .image-container {
        margin: 0 1.5rem 0 0;
    }
}

.employee-wrapper .box .flex-wrapper .image-container .image {
    border: 1px solid var(--color-primary-5);
    border-radius: 50%;
    height: 100%;
}

.employee-wrapper .box .flex-wrapper .inner {
    display: block;
    text-align: center;
}

@media screen and (min-width: 64rem) {
    .employee-wrapper .box .flex-wrapper .inner {
        text-align: left;
    }
}

.employee-wrapper .box .flex-wrapper .name {
    margin: 0;
}

.employee-wrapper .box .btn {
    margin: 2rem 0 0;
    width: 100%;
}