/* LIVE REAL-TIME INSTAGRAM FEED CAROUSEL (DISCREET & ELEGANT DESIGN) */

.instagram-section {
    position: relative;
    width: 100%;
    background: #F8FAFC;
    padding: 60px 0 70px 0;
    border-top: 1px solid #E2E8F0;
}

.instagram-container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-header {
    text-align: center;
    max-width: 600px;
    margin-bottom: 28px;
}

.instagram-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #07B8A6;
    margin-bottom: 8px;
    display: inline-block;
}

.instagram-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.instagram-header p {
    font-size: 14.5px;
    color: #64748B;
    line-height: 1.55;
}

/* REAL-TIME WIDGET CONTAINER & BEHOLD WIDGET */
.instagram-widget-wrapper {
    width: 100%;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    margin-bottom: 32px;
    box-sizing: border-box;
}

behold-widget {
    width: 100%;
    display: block;
}

/* GLOWING INSTAGRAM ACTION BUTTON */
.instagram-footer-action {
    display: flex;
    justify-content: center;
}

.insta-btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.25);
    transition: all 0.3s ease;
}

.insta-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 39, 67, 0.35);
    filter: brightness(1.08);
}

@media (max-width: 640px) {
    .instagram-section {
        padding: 48px 0 56px 0;
    }
    .instagram-container {
        padding: 0 16px;
    }
    .instagram-header h2 {
        font-size: 22px;
    }
    .instagram-header p {
        font-size: 13.5px;
    }
    .insta-btn-glow {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        font-size: 13.5px;
    }
}
