.instagram-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.instagram-section {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background: #f1f1f1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-section h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1320px;
}

.carousel-track {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ig-card {
  flex: 0 0 180px;
  height: 180px;
  background: #eee;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-card img,
.ig-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ig-card:hover img,
.ig-card:hover video {
  transform: scale(1.05);
}
