.bento-grid-30d53aeb {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    width: 100%;
}

.bento-card-30d53aeb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #222;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card-30d53aeb:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.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; }

.bento-image-wrap-30d53aeb {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bento-img-30d53aeb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card-30d53aeb:hover .bento-img-30d53aeb {
    transform: scale(1.05);
}

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

.bento-content-30d53aeb {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
}

.bento-cat-tag-30d53aeb {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 10px;
}

.bento-title-30d53aeb {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.2;
}

.bento-title-30d53aeb a {
    color: inherit;
    text-decoration: none;
}

.bento-meta-30d53aeb {
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.bento-excerpt-30d53aeb {
    font-size: 14px;
    opacity: 0.9;
    display: none;
}

.size-2x2 .bento-excerpt-30d53aeb,
.size-1x2 .bento-excerpt-30d53aeb {
    display: block;
}

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

@media (max-width: 767px) {
    .bento-grid-30d53aeb {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .size-1x1, .size-2x1, .size-1x2, .size-2x2 {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-excerpt-30d53aeb {
        display: none;
    }
}
