/* Hero */
.hero {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  background: var(--negro);
}
.hero-link { display: block; position: relative; }
.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 40px 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--blanco);
}
.hero-badge {
  display: inline-block;
  background: var(--rojo);
  color: var(--blanco);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.hero-date {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Sections */
.latest-section {
  padding: 48px 0;
}

/* Category page hero */
.category-hero {
  background: var(--negro);
  padding: 48px 0;
  margin-bottom: 0;
}
.category-badge {
  display: inline-block;
  background: var(--rojo);
  color: var(--blanco);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.category-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blanco);
}
