.insta-feed-wrapper-6174 {
    width: 100%;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.insta-heading-6174 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.8rem 0;
    color: #6A62D2;
    line-height: 1.2;
}

.insta-description-6174 {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto 2rem auto;
    max-width: 600px;
    line-height: 1.5;
    color: #7A7A7A;
    padding: 0 15px;
}

.insta-container-6174 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.insta-scroller-6174 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 15px 30px 15px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.insta-scroller-6174::-webkit-scrollbar {
    display: none;
}

.insta-item-6174 {
    flex: 0 0 300px;
    width: 300px;
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.insta-item-6174:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 98, 210, 0.2);
}

.insta-item-6174 iframe {
    width: 100%;
    height: 550px;
    min-height: 550px;
    border: none;
    background: #fff;
    display: block;
    border-radius: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .insta-feed-wrapper-6174 {
        padding: 1.5rem 0;
    }

    .insta-heading-6174 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .insta-description-6174 {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .insta-item-6174 {
        flex: 0 0 85vw; /* Adjusts beautifully on mobile */
        width: 85vw;
    }
    
    .insta-item-6174 iframe {
        height: 500px;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .insta-heading-6174 {
        font-size: 1.5rem;
    }
    
    .insta-item-6174 {
        flex: 0 0 90vw;
        width: 90vw;
    }
}
