.bento-grid-2820e2c1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

.bento-card-2820e2c1 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f4f4f4;
}

/* Hover Effects */
.bento-card-2820e2c1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.bento-bg-img-2820e2c1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.bento-bg-img-placeholder-2820e2c1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ddd;
    z-index: 1;
}

.bento-card-2820e2c1:hover .bento-bg-img-2820e2c1,
.bento-card-2820e2c1:hover .bento-bg-img-placeholder-2820e2c1 {
    transform: scale(1.05);
}

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

.bento-content-2820e2c1 {
    position: relative;
    z-index: 3;
    padding: 24px;
    color: #fff;
}

.bento-tag-2820e2c1 {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}

.bento-title-2820e2c1 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.bento-title-2820e2c1 a {
    color: inherit;
    text-decoration: none;
}

.bento-meta-2820e2c1 {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.bento-excerpt-2820e2c1 {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.bento-card-2820e2c1:hover .bento-excerpt-2820e2c1 {
    opacity: 1;
    max-height: 100px;
}

/* Span Classes */
.bento-col-1 { grid-column: span 1; }
.bento-col-2 { grid-column: span 2; }
.bento-col-3 { grid-column: span 3; }
.bento-row-1 { grid-row: span 1; }
.bento-row-2 { grid-row: span 2; }
.bento-row-3 { grid-row: span 3; }

/* Responsive Breakdowns */
@media (max-width: 1024px) {
    .bento-grid-2820e2c1 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .bento-col-2, .bento-col-3 { grid-column: span 2; }
}

@media (max-width: 767px) {
    .bento-grid-2820e2c1 {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 300px;
    }
    .bento-col-1, .bento-col-2, .bento-col-3 { grid-column: span 1; }
    .bento-row-1, .bento-row-2, .bento-row-3 { grid-row: span 1; }
}