.bento-grid-container-5b132e67 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bento-card-5b132e67 {
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.bento-card-content-5b132e67 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-card-5b132e67.icon-pos-top .bento-card-content-5b132e67 {
    justify-content: flex-start;
}

.bento-card-5b132e67.icon-pos-bottom .bento-card-content-5b132e67 {
    justify-content: flex-start;
}

.bento-card-5b132e67.icon-pos-bottom .bento-card-icon-5b132e67 {
    margin-top: auto;
    padding-top: 20px;
}

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

.bento-card-title-5b132e67 {
    margin: 10px 0;
    font-size: 24px;
    line-height: 1.2;
}

.bento-card-subtitle-5b132e67 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bento-card-desc-5b132e67 {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.bento-card-icon-5b132e67 {
    margin-bottom: 20px;
    font-size: 30px;
}

.bento-card-icon-5b132e67 svg {
    width: 30px;
    height: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
    .bento-grid-container-5b132e67 {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-col-span-2 { grid-column: span 2; }
    .bento-row-span-2 { grid-row: auto; } /* reset vertical span */
}

/* Mobile */
@media (max-width: 767px) {
    .bento-grid-container-5b132e67 {
        grid-template-columns: 1fr;
    }
    .bento-col-span-1, 
    .bento-col-span-2 { 
        grid-column: 1 / -1; 
    }
}