/* XF WP Bridge - Gallery Grid (promoted from XenForo) */
.xf-gallery {
    margin: 1.5em 0;
}

.xf-gallery__title {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: .75em;
}

.xf-gallery__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.xf-gallery__item {
    flex: 1 1 200px;
    overflow: hidden;
    line-height: 0;
}

.xf-gallery__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
    margin: 0 !important;
}

.xf-gallery__item:hover img {
    transform: scale(1.03);
}

@media (max-width: 480px) {
    .xf-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .xf-gallery__item img {
        height: 140px;
    }
}