/* Small interaction layer replacing legacy WordPress/plug-in JavaScript. */
.kkcc-gallery {
    display: block !important;
    margin: 2rem auto;
}

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

.kkcc-gallery-grid .fg-noscript-item {
    margin: 0;
    aspect-ratio: 1;
    overflow: hidden;
}

.kkcc-gallery-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kkcc-gallery-grid a {
    cursor: default;
}

.kkcc-gallery-more {
    display: block;
    margin: 1.5rem auto 0;
    padding: .7rem 1.15rem;
    border: 1px solid currentColor;
    border-radius: 2px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.kkcc-gallery-more:hover,
.kkcc-gallery-more:focus-visible {
    background: #222;
    border-color: #222;
    color: #fff;
}
