.pg-gallery-container-ab681f96 {
    width: 100%;
}

/* Filter Bar */
.pg-filter-bar-ab681f96 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.pg-filter-btn-ab681f96 {
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Grid Gallery */
.pg-grid-ab681f96 {
    display: grid;
    gap: 20px;
}

.pg-grid-item-ab681f96 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.pg-grid-item-ab681f96:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pg-item-link-ab681f96 {
    text-decoration: none;
    display: block;
}

.pg-image-wrapper-ab681f96 {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    background-color: #f3f4f6;
    overflow: hidden;
}

.pg-image-wrapper-ab681f96 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pg-grid-item-ab681f96:hover .pg-image-wrapper-ab681f96 img {
    transform: scale(1.06);
}

/* Overlay & Title */
.pg-overlay-ab681f96 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 20px 15px 15px 15px;
    display: flex;
    align-items: flex-end;
}

.pg-item-title-ab681f96 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Animations for JS Filtering */
.pg-grid-item-ab681f96 {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.pg-grid-item-ab681f96.pg-hidden-ab681f96 {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    visibility: hidden;
}
