.lifestyle-section {
    padding: 60px 20px;
    background-color: var(--sls-bg, #ffffff);
    color: var(--sls-text, #333333);
    font-family: var(--sls-font, inherit);
}

.lifestyle-section h2.section-title {
    color: var(--sls-title, #111111);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.lifestyle-section p.section-subtitle {
    color: var(--sls-subtitle, #666666);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    grid-template-rows: 1fr 1fr 1fr;
    /* 3 Equal Rows */
    height: 75vh;
    /* Force container to fit in screen */
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.bento-item {
    position: relative;
    border-radius: var(--sls-radius, 12px);
    overflow: hidden;
    box-shadow: var(--sls-shadow, 0 4px 6px rgba(0, 0, 0, 0.05));
    /* min-height removed */
    background: #f0f0f0;
    height: 100%;
}

.bento-item img {
    width: 100%;
    height: 100%;
    /* Fill cell */
    display: block;
    object-fit: cover;
    /* Crop to fit */
    transition: transform 0.5s ease;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    pointer-events: none;
}

.bento-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.25rem;
    color: #fff !important;
}

/* Specific item overrides */
.item-tall {
    grid-row: span 2;
    /* Height = Sum of 2 small items */
}

.item-wide {
    grid-column: span 2;
}

/* =========================================
   MOBILE APP POLISH
   ========================================= */
@media (max-width: 768px) {
    .bento-grid {
        display: flex;
        height: auto;
        /* Reset fixed height for mobile */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;
        padding-right: 20px;
        /* Padding end */

        /* Hide Scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .bento-grid::-webkit-scrollbar {
        display: none;
    }

    .bento-item {
        min-width: 85vw;
        /* Peek effect */
        width: 85vw;
        height: 320px;
        /* Taller immersive cards */
        border-radius: 20px;
        scroll-snap-align: center;
        flex-shrink: 0;
        grid-column: auto !important;
        grid-row: auto !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    /* Reset Spans on Mobile */
    .item-tall,
    .item-wide {
        grid-row: auto;
        grid-column: auto;
    }

    /* Text Polish */
    .bento-overlay h3 {
        font-size: 1.5rem;
    }

    .bento-overlay p {
        font-size: 1rem;
        opacity: 0.9;
    }
}