.custom-insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.custom-insta-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.custom-insta-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.custom-insta-card:hover video {
    transform: scale(1.03);
}