/* Estética unificada con el sitio */
#ig-reels {
  background-color: #090A20;
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

#ig-reels .ig-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

#ig-reels .ig-subtitle {
  font-size: 1.5rem;
  color: #F5851D;
  margin-bottom: 2rem;
}

/* Grid con transición suave */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  padding: 0 1rem;
}

/* Tarjeta embebida con estilo más suave */
.ig-card {
  background-color: #12132e;
  border-radius: 12px;
  padding: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ig-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ig-embed {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

/* Asegura que el contenido embebido no tenga bordes */
.ig-embed blockquote {
  margin: 0 auto !important;
  border: none !important;
  max-width: 100% !important;
}

/* Botón toggle: estilizado y animado */
.ig-actions {
  margin-top: 2rem;
}

.ig-toggle {
  background-color: #F5851D;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 133, 29, 0.3);
}

.ig-toggle:hover {
  background-color: #cf6a13;
}

/* Responsive: mejor lectura en móviles */
@media (max-width: 600px) {
  #ig-reels .ig-title {
    font-size: 1.75rem;
  }

  #ig-reels .ig-subtitle {
    font-size: 1.2rem;
  }

  .ig-toggle {
    width: 100%;
  }
}