.bento-grid-wrapper-d1cfe50c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .bento-grid-wrapper-d1cfe50c {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    
    .bento-card-d1cfe50c.size-1-1 {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .bento-card-d1cfe50c.size-2-1 {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .bento-card-d1cfe50c.size-1-2 {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .bento-card-d1cfe50c.size-2-2 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.bento-card-d1cfe50c {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.bento-card-inner-d1cfe50c {
    flex: 1;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card-d1cfe50c:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bento-card-icon-d1cfe50c {
    font-size: 32px;
    margin-bottom: 16px;
    color: #fff;
}

.bento-card-icon-d1cfe50c svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.bento-card-title-d1cfe50c {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.bento-card-desc-d1cfe50c {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
}
.bento-card-desc-d1cfe50c ul {
    padding-left: 20px;
    margin-top: 10px;
}