/* Bento Grid for Hospital Facilities */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 40px;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-color: #f5f5f5;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
}

.bento-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.bento-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Specific item sizes */
.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.bento-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Responsive */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .bento-item.large, .bento-item.wide, .bento-item.small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-item.large {
        grid-row: span 2;
    }
}

@media (max-width: 479px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .bento-item.large {
        grid-row: span 1;
    }
}

 . w - w e b f l o w - b a d g e   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   }  
 