
    :root {
      --bg: #f8f7f4;
      --text: #1a1a1a;
      --accent: #b08968;
      --muted: #6b6b6b;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
    }

    header {
      padding: 2rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
    }

    header h1 {
      font-size: 1.5rem;
      letter-spacing: 1px;
    }

    nav a {
      margin-left: 1.5rem;
      text-decoration: none;
      color: var(--muted);
      font-size: 0.9rem;
    }
    
    nav a:hover {
      color: var(--text)
    }
    
    .hero {
      padding: 8rem 5% 6rem;
      max-width: 900px;
    }
    
    .hero h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      color: var(--muted);
      margin-bottom: 2rem;
      max-width: 500px;
    }

    .btn {
      background: var(--text);
      color: white;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      font-size: 0.9rem;
      transition: 0.3s;
    }

    .btn:hover {
      background: var(--accent);
    }

    .catalogo {
      padding: 4rem 5%;
    }

    .catalogo h3 {
      margin-bottom: 2rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
    }

    .libro {
      padding-top: 1rem;
    }

    .libro h4 {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
    }

    .libro span {
      font-style: italic;
    }

    footer {
      padding: 3rem 5%;
      font-size: 0.8rem;
      color: var(--muted);
      border-top: 1px solid #ddd;
    }
  .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  max-width: 700px;
}

.hero-text {
  font-size: 1rem;
  max-width: 500px;
}

.revista {
  padding: 6rem 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.revista-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.articulo h3 a {
  text-decoration: none;
  color: var(--text);
  display: inline-block;
}

.articulo h3 a:hover {
  color: var(--accent);
}

.articulo img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.articulo h3 {
  font-size: 3rem;
  margin-bottom: 0.3rem;
}

.articulo .autor {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.articulo {
  margin-bottom: 0;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.texto {
  max-width: 700px;
  margin: 6rem auto;
  padding: 0 5%;
  line-height: 1.8;
}

.texto h1 {
  margin-bottom: 1rem;
}

.autor {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--muted);
}

.back-link {
  display: inline-block;
  margin: 3rem 5% 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  position: relative;
}

.back-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  margin-top: 3px;
  opacity: 0.3;
}

.poema {
  white-space: pre-wrap;
  max-width: 520px;
  margin: 8rem auto;
  line-height: 2;
  font-size: 1rem;
}

.poema--centrado {
  white-space: pre-wrap;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dedicatoria {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.epigrafe {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 300px;
  margin-left: auto;
  text-align: right;
}

.fuente {
  display: block;
  margin-left: 75%;
  font-size: 0.8rem;
}

.libro img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.subtitulo {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0.3rem 0 0.5rem;
}
.banner {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 2.5rem;
}

.hero_article {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  max-height: 800px;
  margin-bottom: 3rem;
  overflow: hidden;
}

.hero_article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* overlay oscuro */
.hero_article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 45%,
    transparent 75%
  );
}

/* texto encima */
.hero_article-texto {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  color: white;
  z-index: 2;
  max-width: 700px;
}

.hero_article-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero_article-texto .autor {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.hero_article::after {
  z-index: 1;
}

.hero_article img {
  position: absolute;
  inset: 0;
  z-index: 0;
}