.image-container {
    width: 100%;
    height: auto;
}

.cwa-lightbox-image {
    display: flex;
    float: left;
    padding: 10px;
    width: auto;
    background-color: white;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.image-row img {
    width: 300px;
    height: auto;
    display: block;
}

/* 모바일 대응 (가로폭 768px 이하일 때) */
@media (max-width: 768px) {
    .image-row img {
        width: 100px;
    }
}