.bento-filters-046b39e9 {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.bento-filter-btn {
    padding: 8px 16px;
    border: none;
    background: #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.bento-filter-btn.active, .bento-filter-btn:hover {
    background: #333;
    color: #fff;
}
.bento-grid-container-046b39e9 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}
.bento-item-046b39e9 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
}
.bento-item-046b39e9:hover {
    transform: translateY(-5px);
}
.bento-item-046b39e9.size-1x1 { grid-column: span 1; grid-row: span 1; }
.bento-item-046b39e9.size-2x1 { grid-column: span 2; grid-row: span 1; }
.bento-item-046b39e9.size-1x2 { grid-column: span 1; grid-row: span 2; }
.bento-item-046b39e9.size-2x2 { grid-column: span 2; grid-row: span 2; }

.bento-bg-046b39e9 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}
.bento-item-046b39e9:hover .bento-bg-046b39e9 {
    transform: scale(1.05);
}
.bento-overlay-046b39e9 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
    z-index: 2;
    transition: opacity 0.3s ease;
}
.bento-item-046b39e9:hover .bento-overlay-046b39e9 {
    opacity: 0.8;
}
.bento-content-046b39e9 {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
}
.bento-cat-046b39e9 {
    background: #ff5e5e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}
.bento-title-046b39e9 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 20px;
}
.bento-meta-046b39e9 {
    font-size: 13px;
    color: #ddd;
}

@media (max-width: 1024px) {
    .bento-grid-container-046b39e9 { grid-template-columns: repeat(2, 1fr); }
    .bento-item-046b39e9.size-2x1, .bento-item-046b39e9.size-2x2 { grid-column: span 2; }
}
@media (max-width: 767px) {
    .bento-grid-container-046b39e9 { grid-template-columns: 1fr; }
    .bento-item-046b39e9 { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 250px; }
}