.cig-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    box-sizing: border-box;
}

.cig-grid-item {
    overflow: hidden;
    background-color: #f4f4f5; /* zinc-200 */
    position: relative;
    width: 100%;
    height: 100%;
}

.cig-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cig-item-large {
    grid-row: span 2 / span 2;
}

.cig-item-small {
    /* Auto-placed into remaining grid cells */
}
