.pg-e91cbadd-wrapper {
    width: 100%;
}

.pg-e91cbadd-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.pg-e91cbadd-filter {
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pg-e91cbadd-filter.active {
    border-bottom: 3px double currentColor;
}

.pg-e91cbadd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pg-e91cbadd-item {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    transition: all 0.4s ease;
}

.pg-e91cbadd-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.pg-e91cbadd-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pg-e91cbadd-item:hover .pg-e91cbadd-overlay {
    transform: translateY(0);
}

.pg-e91cbadd-title {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 20px;
}

.pg-e91cbadd-cat {
    color: #ddd;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile responsive defaults */
@media (max-width: 767px) {
    .pg-e91cbadd-grid {
        grid-template-columns: 1fr !important;
    }
}
