/* --- Left Gallery (Masonry via CSS) --- */
.side-gallery-wrapper {
    padding: 5px;
}

.side-gallery-grid {
    column-count: 2;
    column-gap: 8px;
}

.side-gallery-item {
    break-inside: avoid;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.side-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.side-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.side-gallery-item:hover img {
    transform: scale(1.08);
    /* Subtle zoom effect */
}