/*Block Gallery v1.0.0*/
.tc-block-gallery {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}
.tc-block-gallery > img {
    width: 100%;
    height: 400px;

    object-fit: cover;
    object-position: center;
}
.tc-block-gallery > img:nth-child(1),
.tc-block-gallery > img:nth-child(4n+1) {
    grid-column: span 3;
}