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

.bento-item-a06f3a17 {
    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;
}

.bento-item-a06f3a17:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bento-bg-a06f3a17 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.bento-bg-a06f3a17 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item-a06f3a17:hover .bento-bg-a06f3a17 img {
    transform: scale(1.05);
}

.bento-item-a06f3a17::before {
    content: '';
    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: opacity 0.3s ease;
}

.bento-item-a06f3a17:hover::before {
    opacity: 0.85;
}

.bento-cat-wrap-a06f3a17 {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
}

.bento-cat-a06f3a17 {
    display: inline-block;
    background: #2fae8f; /* Mona Teal */
    color: #050505; /* Dark text for contrast */
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.bento-content-a06f3a17 {
    position: relative;
    z-index: 3;
    padding: 24px;
    color: #fff;
    pointer-events: none;
}

.bento-title-a06f3a17 {
    margin: 0 0 8px 0;
    font-size: 22px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.bento-excerpt-a06f3a17 {
    font-size: 14px;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-link-overlay-a06f3a17 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 4;
}

/* Sizes */
.bento-size-1x1 {
    grid-column: span 1;
    grid-row: span 1;
}

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

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

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

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

@media (max-width: 767px) {
    .bento-grid-a06f3a17 {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(250px, auto);
    }
    .bento-item-a06f3a17 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}