/* public/css/instagram-feed.css */

.instagram-feed-section {
  padding: 60px 0;
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.instagram-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  aspect-ratio: 1 / 1; /* شبه شكل إنستجرام */
}

.instagram-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .instagram-feed-grid {
    grid-template-columns: 1fr;
  }
}
