.bento-grid-9ef208f0 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    width: 100%;
}

.bento-card-9ef208f0 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #222;
}

.bento-card-9ef208f0:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.bento-card-bg-9ef208f0 {
    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-card-9ef208f0:hover .bento-card-bg-9ef208f0 {
    transform: scale(1.05);
}

.bento-card-overlay-9ef208f0 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.bento-card-content-9ef208f0 {
    position: relative;
    z-index: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.bento-cat-9ef208f0 {
    align-self: flex-start;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.bento-title-9ef208f0 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
}

.bento-meta-9ef208f0 {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.bento-excerpt-9ef208f0 {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sizes */
.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; }

.size-2x2 .bento-title-9ef208f0 { font-size: 28px; }

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid-9ef208f0 { 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-9ef208f0 { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .size-1x1, .size-2x1, .size-1x2, .size-2x2 {
        grid-column: span 1;
        grid-row: span 1;
    }
}
