.blog-hero {
  padding: 10rem 3rem 5rem;
  background: var(--black);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.blog-hero-sub {
  color: rgba(245,245,240,0.5);
  max-width: 500px;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(255,122,0,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.blog-card-img {
  width: 100%;
  height: 160px;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.blog-card-img img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.15;
}

.blog-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.blog-categoria {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.blog-card p {
  color: rgba(245,245,240,0.5);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.blog-fecha {
  font-size: 0.78rem;
  color: rgba(245,245,240,0.25);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.blog-leer {
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.blog-card:hover .blog-leer::after {
  content: " →";
}

@media (max-width: 768px) {
  .blog-hero { padding: 8rem 1.5rem 3rem; }
  .blog-grid { padding: 3rem 1.5rem; }
}
body {
  cursor: auto !important;
}
