.virgil-instagram-feed {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow: auto;
}

.virgil-instagram-feed .virgil-instagram-post {
    display: flex;
    min-width: 280px;
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    height: auto;
    aspect-ratio: 2 / 3;
    position: relative;
    align-items: center;
    justify-content: center;
}

.virgil-instagram-feed .virgil-instagram-post img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.virgil-instagram-feed .virgil-instagram-post:hover img {
    transform: scale(1.05);
}
