<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">    .gallery__title {
        text-align: center;
        margin-bottom: 64px;
        padding: 0 24px;
    }

    .main__container {
        max-width: 1440px;
        margin: auto;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        margin-top: 64px;
        margin-bottom: 64px;
    }

    .gallery__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 0;
    }

    @media(min-width: 768px) {
        .gallery__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .gallery__item {
        /* width: calc(100%/4); */
        position: relative;
    }

    .gallery__item img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .gallery__link {
        position: relative;
        display: block;
    }

    .gallery__item-title {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        font-size: 16px;
        color: inherit;
        margin: inherit;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        opacity: 0;
        transition: .3s all;
    }

    @media(min-width: 1024px) {
        .gallery__link:hover .gallery__item-title {
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 1;
        }
    }

    .fps-gallery__container {
        width: 100%;
        max-width: 1140px;
        margin: auto;
        padding: 24px;
    }</pre></body></html>