/* Instagram Widget Styles */
/* max-width: 935px; */
.instagram-widget {
    margin: 0 auto;
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  /* Header Section */
  .instagram-header {
    padding: 20px;
    border-bottom: 1px solid #dbdbdb;
  }
  
  .instagram-profile {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .instagram-profile-pic {
    flex-shrink: 0;
  }
  
  .instagram-profile-pic img {
    width: 77px;
    height: 77px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .instagram-profile-info {
    flex: 1;
    min-width: 0;
  }
  
  .instagram-username-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }
  
  .instagram-username {
    font-size: 20px;
    font-weight: 400;
    color: #262626;
    text-decoration: none;
    word-break: break-word;
  }
  
  .instagram-username:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  
  .instagram-category {
    font-size: 14px;
    color: #8e8e8e;
    font-weight: 400;
  }
  
  .instagram-bio {
    font-size: 14px;
    color: #262626;
    line-height: 20px;
    margin-bottom: 12px;
    word-wrap: break-word;
  }
  
  .instagram-stats {
    display: flex;
    gap: 40px;
    margin-top: 16px;
  }
  
  .instagram-stat {
    display: flex;
    gap: 4px;
    font-size: 16px;
  }
  
  .instagram-stat-value {
    font-weight: 600;
    color: #262626;
  }
  
  .instagram-stat-label {
    color: #262626;
    font-weight: 400;
  }
  
  /* Posts Grid */
  .instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  
  .instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fafafa;
  }
  
  .instagram-post-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  
  .instagram-post-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .instagram-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Video Icon */
  .instagram-video-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  .instagram-video-icon svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  }
  
  /* Pinned Icon */
  .instagram-pinned-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  .instagram-pinned-icon svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  }
  
  /* Hover Overlay */
  .instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .instagram-post:hover .instagram-post-overlay {
    opacity: 1;
  }
  
  .instagram-post-stats {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .instagram-post-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }
  
  .instagram-post-stat svg {
    width: 19px;
    height: 19px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .instagram-widget {
      border: none;
      border-radius: 0;
    }
  
    .instagram-header {
      padding: 16px;
    }
  
    .instagram-profile {
      gap: 16px;
    }
  
    .instagram-profile-pic img {
      width: 56px;
      height: 56px;
    }
  
    .instagram-username {
      font-size: 16px;
    }
  
    .instagram-bio {
      font-size: 14px;
    }
  
    .instagram-stats {
      gap: 20px;
      margin-top: 12px;
    }
  
    .instagram-stat {
      font-size: 14px;
    }
  
    .instagram-posts-grid {
      gap: 2px;
    }
  }
  
  @media (max-width: 480px) {
    .instagram-profile {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .instagram-stats {
      justify-content: center;
    }
  
    .instagram-post-stats {
      gap: 20px;
    }
  
    .instagram-post-stat {
      font-size: 14px;
    }
  
    .instagram-posts-grid {
      gap: 1px;
    }
  }
  
  