/* Bento Gallery Styles */
.kaho-bento-gallery-wrapper {
    width: 100%;
}

.kaho-bento-header {
    text-align: center;
    margin-bottom: 60px;
}

.kaho-bento-header h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #888888;
    font-family: 'Inter', sans-serif;
}

.kaho-bento-header p {
    font-size: 18px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.kaho-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    overflow: hidden;
    position: relative;
    background-color: transparent;
    border-radius: 20px;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 10px;
}

.bento-item:hover img {
    transform: scale(1.08);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .kaho-bento-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .kaho-bento-grid {
        gap: 15px;
        grid-auto-rows: minmax(150px, auto);
        /* Flexible row height on mobile */
    }

    .bento-item {
        border-radius: 10px;
    }

    .bento-item img {
        border-radius: 10px;
    }

    .kaho-bento-header h2 {
        font-size: 28px;
    }

    .kaho-bento-header {
        margin-bottom: 40px;
    }

    .kaho-bento-gallery-wrapper {
        padding: 40px 10px;
    }
}