.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.grid-cell {
    width: 100%;
    overflow: hidden;
}

.grid-cell img {
    width: 100%;
    height: auto;
    display: block;
}