.tow-instagram-snapshot {
    --tow-ig-cols: 4;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--tow-ig-cols) - 1) * 8px) / var(--tow-ig-cols));
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    padding: 0 0 8px;
    margin: 0;
    list-style: none;
}

.tow-instagram-snapshot li {
    scroll-snap-align: start;
    min-width: 0;
    margin: 0;
}

.tow-instagram-snapshot img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f2f2f2;
    border: 0;
}

.tow-instagram-snapshot-notice {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: #666;
    text-align: right;
}

.tow-instagram-snapshot-error {
    margin: 0.65rem 0;
}

@media (max-width: 1024px) {
    .tow-instagram-snapshot {
        --tow-ig-cols: 3;
    }
}

@media (max-width: 640px) {
    .tow-instagram-snapshot {
        --tow-ig-cols: 2;
    }
}
