.gallery__card {
    /* width: calc((100vw - 90px) / 3); */
    max-width: 450px;
    height: calc((100vw - 90px) / 3.375);
    max-height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.main-gallery {
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(10, 1fr); */
    gap: 16px;
    margin: 0 auto;
    padding: 0 29px;
    box-sizing: border-box;
}

.gallery__img {
    height: 100%;
}

.gallery__title {
    font-weight: 300;
    font-size: 36px;
    padding: 85px 8px 0;
    margin: 24px auto;
    text-transform: uppercase;
    max-width: 1440px;
    width: 100%;
    box-sizing: border-box;
}

.gallery__card-link {
    text-align: center;
}

@media (max-width: 900px) {
    .main-gallery {
        max-width: 900px;
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__card {
        height: calc((100vw - 90px) / 2.025);
        max-height: 400px;
    }
}

@media (max-width: 500px) {
    .main-gallery {
        max-width: 500px;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
        margin: 0 auto;
        padding: 0;
    }

    .gallery__card {
        height: 89vw;
        max-width: 100%;
        padding: 8px 0;
    }
}