.bento-grid-wrapper-68c2d709 {
    width: 100%;
}

.bento-filter-68c2d709 {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.bento-filter-btn-68c2d709 {
    padding: 8px 16px;
    border: none;
    background: #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bento-filter-btn-68c2d709.active,
.bento-filter-btn-68c2d709:hover {
    background: #333;
    color: #fff;
}

.bento-grid-container-68c2d709 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.bento-card-68c2d709 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease;
    text-decoration: none !important;
}

.bento-card-68c2d709:hover {
    transform: translateY(-5px);
}

.bento-card-68c2d709.size-1x1 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card-68c2d709.size-2x1 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-card-68c2d709.size-1x2 {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-card-68c2d709.size-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card-bg-68c2d709 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.placeholder-bg {
    background: linear-gradient(45deg, #a0aec0, #cbd5e1);
}

.bento-card-68c2d709:hover .bento-card-bg-68c2d709 {
    transform: scale(1.05);
}

.bento-card-overlay-68c2d709 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.bento-card-68c2d709:hover .bento-card-overlay-68c2d709 {
    opacity: 0.8;
}

.bento-card-content-68c2d709 {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
}

.bento-cat-badge-68c2d709 {
    display: inline-block;
    background: #5447F6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: bold;
}

.bento-title-68c2d709 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid-container-68c2d709 {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card-68c2d709.size-2x2,
    .bento-card-68c2d709.size-2x1 {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .bento-grid-container-68c2d709 {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .bento-card-68c2d709.size-1x1,
    .bento-card-68c2d709.size-2x1,
    .bento-card-68c2d709.size-1x2,
    .bento-card-68c2d709.size-2x2 {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-card-68c2d709.size-1x2,
    .bento-card-68c2d709.size-2x2 {
        grid-row: span 2;
    }
}