.c-kanban {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.c-kanban-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
}

.c-kanban-header-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    /* position: sticky; */
    padding: 0.25rem;
}

.c-kanban-header-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 48px;
    font-weight: 600;
    border: 1px solid var(--gg-grey300);
    border-radius: 0.275rem;
    background-color: var(--gg-white-70);
}

.c-kanban-body-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.25rem 0.25rem 0 0.25rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: hidden;
}

.c-kanban-grouped {
    height: 100%;
    overflow-y: scroll;
}

    .c-kanban-grouped .c-kanban-header-container {
        position: sticky;
        top: 0;
        left: 0;
        /* background-color: blueviolet;*/
        background-image: linear-gradient(135deg, #4292EA, #83D1E1);
        background-size: cover;
        background-position: center;
        z-index: 1;
        /* padding bottom: 8px; */
    }

.c-kanban-body-grouped {
    display: flex;
    flex-direction: column;
    /*    overflow-y: scroll;*/
}

    .c-kanban-body-grouped .c-kanban-body-container {
        /* overflow-y: unset;*/
        padding-inline: 0.25rem;
    }

.c-kanban-group-container {
    position: relative;
}

.c-kanban-group-header-container {
    position: sticky;
    top: 56px; /* 60px; */
    left: 0;
    padding-block: 4px;
    /* background-color: blueviolet;*/
    background-image: linear-gradient(135deg, #4596EA, #86D5E0);
    background-size: cover;
    background-position: center;
}

.c-kanban-group-header-container {
    position: sticky;
    top: 56px; /* 60px; */
    left: 0;
}

.c-kanban-group-header {
    margin: 0.25rem;
    padding-block: 0.5rem;
    font-weight: 600;
    border: 1px solid var(--gg-grey300);
    border-radius: 0.275rem;
    background-color: var(--gg-white-70);
}

    .c-kanban-group-header h3 {
        padding-left: 2rem;
    }

.c-kanban-body-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    /*border-top: 0.5rem solid var(--gg-white-20);
    border-radius: 0.275rem;*/
}

.c-kanban-body-column-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
    /*padding-bottom: 0.25rem;*/
    background-color: var(--gg-white-20);
    border-block: 0.5rem solid transparent;
    border-radius: 0.275rem;
    scroll-snap-type: y mandatory;
}

    .c-kanban-body-column-container:hover {
        overflow-y: auto;
    }

.c-kanban-card {
    width: calc(100% - 1rem);
    /*margin: 0 8px 8px 8px;*/
    margin-inline: 0.5rem;
    /*padding: 1rem;
    min-height: 200px;
    background-color: #fff;
    border: 1px solid var(--gg-grey400);*/
    border-radius: 0.275rem;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
}

.subject__card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 1rem;
    min-height: 200px;
    background-color: #fff;
    border: 1px solid var(--gg-grey400);
    border-radius: 0.275rem;
}

.avatars {
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

    .avatars > li {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 24px;
        width: 24px;
        list-style-type: none;
        font-size: 14px;
        font-weight: 600;
        border-radius: 10000px;
        background-color: var(--_avatar, #004377);
    }

        .avatars > li > * {
            color: #fff;
        }
