/**
 * V2 Image Gallery Component Styles
 * Single row image gallery with fixed height and proportional scaling
 */

.v2-image-gallery-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.v2-image-gallery-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.v2-image-gallery-item {
    height: 150px;
    max-width: 200px;
    width: auto;
    object-fit: cover;
    flex-shrink: 1;
    min-width: 0;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    box-sizing: content-box;
}

