/* Rozszerzenie galerii: zdjęcia i logo pochodzą z oficjalnej strony METAFORA. */
img.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain
}
.gallery {
    background: #e9e3d7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery figure {
    margin: 0;
    min-height: 180px;
    background: #17231f;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.gallery figure:first-child {
    grid-column: span 1;
}

.gallery img {
    width: 100%;
    height: 180px;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery figure:hover img {
    transform: scale(1.04);
}

.gallery figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 2rem 0.8rem 0.8rem;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
    color: #fff;
    font-size: .8rem;
    line-height: 1.35;
}

.gallery-source {
    margin: 1rem 0 0;
    color: #46524d;
    font-size: .75rem;
}

.gallery .section-heading p {
    color: #46524d;
}


/* TABLET */

@media(max-width:1100px) {

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* TELEFON */

@media(max-width:760px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem;
    }

    .gallery figure {
        min-height: 160px;
    }

    .gallery img {
        height:160px;
    }

}


/* MAŁE TELEFONY */

@media(max-width:460px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery figure {
        min-height:220px;
    }

    .gallery img {
        height:220px;
    }

}
