.bento-grid-35d577d4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 20px;
    width: 100%;
}
.bento-item-35d577d4 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
}
.bento-item-35d577d4:hover {
    transform: translateY(-5px);
}
.bento-bg-35d577d4 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}
.bento-item-35d577d4:hover .bento-bg-35d577d4 {
    transform: scale(1.05);
}
.bento-overlay-35d577d4 {
    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-item-35d577d4:hover .bento-overlay-35d577d4 {
    opacity: 0.8;
}
.bento-content-35d577d4 {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
}
.bento-title-35d577d4 {
    margin: 0;
    font-size: 1.2rem;
}
.bento-title-35d577d4 a {
    color: #fff;
    text-decoration: none;
}
.size-1x1 { grid-column: span 1; grid-row: span 1; }
.size-2x1 { grid-column: span 2; grid-row: span 1; }
.size-1x2 { grid-column: span 1; grid-row: span 2; }
.size-2x2 { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1024px) {
    .bento-grid-35d577d4 { grid-template-columns: repeat(2, 1fr); }
    .size-2x1, .size-2x2 { grid-column: span 2; }
    .size-1x1, .size-1x2 { grid-column: span 1; }
}

@media (max-width: 767px) {
    .bento-grid-35d577d4 { grid-template-columns: 1fr; }
    .bento-item-35d577d4 { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 300px; }
}