/* .insta-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4px;
            max-width: 900px;
            margin: auto;
        }

        .insta-wrapper {
            display: flex;
            flex-direction: column;
        }

        .insta-wrapper p {
            font-size: 13px;
        }

        .insta-item {
            position: relative;
            width: 100%;
            padding-top: 100%;
            overflow: hidden;
        }

        .insta-item img,
        .insta-item video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .insta-item video {
            opacity: 0;
            transition: opacity 0.3s;
        }

        .insta-item:hover video {
            opacity: 1;
        }
        .insta-caption {
            max-height: 4.6em;
            overflow: hidden;
            position: relative;
        }

        .see-more {
            color: #3897f0;
            font-weight: bold;
            cursor: pointer;
            margin-left: 4px;
        }

        .insta-caption.expanded {
            max-height: none;
            overflow: visible;
        } */
         
        /* .ig-embed-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 16px;
        } */

        #ig-embed-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            justify-items: center;
            padding: 1rem;
          }
          
          #ig-embed-grid iframe {
            width: 100%;
            max-width: 320px;
            height: 440px;
            border-radius: 6px;
            background: #fff;
            border: 0;
          }