.ce-sample-gallery-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ce-sample-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ce-sample-gallery-item {
    display: block;
    flex: 0 0 auto;
    width: 100px;
    aspect-ratio: 1 / 1;
}

.ce-sample-gallery-item--hidden {
    display: none;
}

.ce-sample-gallery--expanded .ce-sample-gallery-item--hidden {
    display: block;
}

.ce-sample-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ce-sample-gallery-expand {
    margin-top: 12px;
    padding: 8px 16px;
    background: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: background-color 0.2s ease;
}

.ce-sample-gallery-expand:hover {
    background: #f5f5f5;
}
