/* ===== SEZIONE INSTAGRAM ===== */
.instagram-section {
  background-color: var(--warm-bg, #F5F4F1);
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.instagram-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.instagram-header {
  margin-bottom: 2.5rem;
}

.instagram-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.instagram-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark, #1A1A1A);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.instagram-header p {
  font-size: 1.1rem;
  color: var(--text-medium, #555555);
  max-width: 520px;
  margin: 0 auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 660px;
  margin: 0 auto 2.5rem auto;
}

.instagram-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.88);
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.25);
}

.instagram-cta:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* Contenitore widget Behold */
[id^="behold-widget-"] {
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
}

@media (max-width: 520px) {
  .instagram-grid {
    gap: 6px;
  }
  .instagram-header h2 {
    font-size: 1.75rem;
  }
  .instagram-header p {
    font-size: 1rem;
  }
}
