.big-tiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 2px solid white;
}

.big-tiles-grid .big-tile {
    border-right: 2px solid white;
    position: relative;
    min-height: 300px;
    overflow: hidden;
    aspect-ratio: 9 / 14;
}

.big-tiles-grid .big-tile:nth-child(3n) {
    border-right: none;
}
.big-tile__name {
    color: white;
    font-size: var(--font-size-h5);
    position: absolute;
    top: 20px;
    left: 20px;
    text-transform: lowercase;
    z-index: 5;
}
.big-tile img, .big-tile video {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.big-tile img {
    transition-duration: 0.7s;
}
.big-tile:hover img {
    transform: scale(1.2);
    transition: transform 5s cubic-bezier(0.4, 0.0, 0.2, 1), object-position 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.big-tile {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .big-tiles-grid {
        grid-template-columns: 1fr;
    }
    .big-tiles-grid .big-tile {
        border-right: none;
        border-bottom: 2px solid white;
    }
    .big-tiles-grid .big-tile:nth-child(3n) {
        border-bottom: none;
    }
    .big-tile__name {
        font-size: var(--font-size-h3);
    }
}
.big-tiles__mini-header {
    font-size: var(--font-size-h5);
    text-align: center;
}
h2.big-tiles__header {
    font-size: var(--font-size-normal);
    font-weight: 400;
    text-align: center;
    margin: 0;
}
.with-header .big-tiles__headers {
    padding: 10px max(var(--padding), calc((100vw - var(--width)) / 2));
    padding-top: 150px;
    position: relative;
}
.big-tiles__headers::before {
    content: "";
    display: block;
    position: absolute;
    height: 130px;
    width: 1px;
    top: 10px;
    left: calc(50% - 1px);
    background-color: black;
}