.bento-grid-8a93293d {
    display: grid;
    grid-auto-flow: dense;
    width: 100%;
}

.bento-card-8a93293d {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #f5f5f5;
}

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

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

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

.bento-card-8a93293d:hover .bento-bg-8a93293d img {
    transform: scale(1.05);
}

.bento-overlay-8a93293d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: background 0.3s ease;
}

.bento-content-8a93293d {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.bento-text-8a93293d {
    margin-top: auto;
}

.bento-title-8a93293d {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
}

.bento-subtitle-8a93293d {
    margin: 0 0 20px 0;
    font-size: 16px;
    opacity: 0.9;
}

.bento-button-wrapper-8a93293d {
    margin-top: 15px;
}

.bento-button-8a93293d {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

/* Grid Spans */
.bento-size-1x1-8a93293d {
    grid-column: span 1;
    grid-row: span 1;
}

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

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

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

/* Responsive Overrides */
@media (max-width: 1024px) {
    .bento-size-2x1-8a93293d, 
    .bento-size-2x2-8a93293d {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .bento-size-1x1-8a93293d,
    .bento-size-2x1-8a93293d,
    .bento-size-1x2-8a93293d,
    .bento-size-2x2-8a93293d {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .bento-grid-8a93293d {
        grid-auto-rows: minmax(250px, auto) !important;
    }
}