/*
* FooGallery Custom CSS
* This file is created by adding custom CSS on FooGallery Settings page in wp-admin
* Created : 10 Sep 2026, 4:56 pm
*/

.foogallery-album-header {
  text-align: center;
}

/* ====================================
** Put banners over the first 3 photos in the WAG galleries
*/

#foogallery-gallery-2913 .fg-item:nth-child(-n+3),
#foogallery-gallery-2927 .fg-item:nth-child(-n+3) {
    position: relative;
}
#foogallery-gallery-2913 .fg-item:nth-child(-n+3)::before,
#foogallery-gallery-2927 .fg-item:nth-child(-n+3)::before {
    content: "JURIED";
    position: absolute;
    top: 24px;
    left: -28px;
    background: #b8860b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 32px;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    pointer-events: none;
}

/* 
** center align gallery thumbs on a phone
*/
.foogallery-album-gallery-list,
.fg-gallery-list,
.album-list,
.fooGallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}