/* Contenedor general */
.ine-blog {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Cabecera */
.ine-blog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.ine-blog__header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d3557;
  position: relative;
}

.ine-blog__header h2::before {
  content: "•";
  color: #e63946;
  font-size: 2rem;
  margin-right: 10px;
}

.ine-blog__btn {
  padding: 10px 20px;
  border: 2px solid #1d3557;
  border-radius: 30px;
  font-weight: 600;
  color: #1d3557;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ine-blog__btn:hover {
  background: #1d3557;
  color: #fff;
}

/* Grid */
.ine-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Tarjetas */
.ine-blog__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}
.ine-blog__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.ine-blog__content {
  padding: 16px;
}
.ine-blog__content h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}
.ine-blog__leer {
  display: inline-block;
  background: linear-gradient(45deg, #457b9d, #1d3557);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s;
}
.ine-blog__leer:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Animación al hacer scroll */
.ine-blog__card.visible {
  transform: translateY(0);
  opacity: 1;
}
