.bento-grid-wrapper-1b087f1e {
    width: 100%;
}
.bento-filter-bar-1b087f1e {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.bento-filter-btn-1b087f1e {
    background: #f3f4f6;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.bento-filter-btn-1b087f1e:hover,
.bento-filter-btn-1b087f1e.active {
    background: #111111;
    color: #ffffff;
}

/* Grid layout */
.bento-grid-container-1b087f1e {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}

.bento-card-1b087f1e {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #222;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
    min-height: 180px;
}

/* Aspect-ratio sizing rules */
.bento-card-1b087f1e.size-1-1 {
    grid-column: span 1;
    grid-row: span 1;
}
.bento-card-1b087f1e.size-2-1 {
    grid-column: span 2;
    grid-row: span 1;
}
.bento-card-1b087f1e.size-1-2 {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 380px;
}
.bento-card-1b087f1e.size-2-2 {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 380px;
}

/* Hover Zoom & Elevation */
.bento-bg-image-1b087f1e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}
.bento-overlay-1b087f1e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: filter 0.4s ease;
}
.bento-card-1b087f1e:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.bento-card-1b087f1e:hover .bento-bg-image-1b087f1e {
    transform: scale(1.08);
}

/* Card Content Styling */
.bento-card-content-1b087f1e {
    position: relative;
    z-index: 3;
    padding: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-tag-1b087f1e {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}
.bento-title-1b087f1e {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}
.bento-title-1b087f1e a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.bento-title-1b087f1e a:hover {
    opacity: 0.9;
}
.bento-excerpt-1b087f1e {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 12px 0;
}
.bento-excerpt-1b087f1e p {
    margin: 0 0 8px 0;
}
.bento-excerpt-1b087f1e p:last-child {
    margin-bottom: 0;
}
.bento-meta-1b087f1e {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Link overlay styles */
.bento-link-overlay-1b087f1e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

/* Responsive breakdowns */
@media (max-width: 1024px) {
    .bento-grid-container-1b087f1e {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card-1b087f1e.size-2-2,
    .bento-card-1b087f1e.size-2-1,
    .bento-card-1b087f1e.size-1-2 {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
}
@media (max-width: 767px) {
    .bento-grid-container-1b087f1e {
        grid-template-columns: 1fr;
    }
    .bento-card-1b087f1e {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 220px !important;
    }
}
