.documents-grid,
.tools-grid,
.lives-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);

    @media screen and (min-width: 991px) {
        grid-template-columns: repeat(4, 1fr);
    }
    /* grid-template-rows: repeat(2, auto); */

    .document-item,
    .tool-item,
    .live-item {
        background-color: #EBE5DA;
        border: 1px solid #DDE1E6;
        border-radius: 5px;
        position: relative;
        .document-remove,
        .tool-remove,
        .live-remove {
            position: absolute;
            top: 8px;
            right: 8px;
            cursor: pointer;
            z-index: 8;
        }
        .document-image,
        .tool-image,
        .live-image {
            img {
                object-fit: contain;
                aspect-ratio: 4/3;
                width: 100%;
                height: 100%;
            }
        }
        a {
            color: #21272A;
            font-size: 24px;
            font-weight: bold;
        }
    }
}