.pest-gallery {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 120px, 1fr ) );
    gap: 10px;
}

.pest-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
}

.pest-gallery__link {
    display: block;
    cursor: pointer;
    box-shadow: none;
}

.pest-gallery__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.25s ease;
}

.pest-gallery__link:hover .pest-gallery__image {
    transform: scale( 1.04 );
}

/* Single mode: one visible image that expands into the gallery lightbox. */
.pest-gallery--single {
    display: block;
    position: relative;
}

.pest-gallery__hidden {
    display: none;
}

.pest-gallery__more {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba( 0, 0, 0, 0.65 );
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
}
