.instagram-feed-area {
    padding: 80px 0;
}

.instagram-feed-grid {
    margin-top: 50px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-placeholder-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #666;
    font-size: 48px;
}


.instagram-placeholder {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.instagram-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.instagram-icon {
    font-size: 64px;
    color: white;
    opacity: 0.8;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@media (max-width: 767px) {
    .instagram-feed-area {
        padding: 60px 0;
    }

    .instagram-placeholder {
        padding: 40px 20px;
    }

    .instagram-icon {
        font-size: 48px;
    }

    .instagram-item {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .instagram-item {
        border-radius: 6px;
    }

    .instagram-feed-grid .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .instagram-feed-grid .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media print {
    .instagram-feed-area {
        display: none;
    }
}