/* Revista / editorial — noticias */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

body.page-noticias {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f6f1ea;
  color: #2a2420;
}

.page-noticias main {
  flex: 1;
}

.hero-mag {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-mag {
    grid-template-columns: 1fr;
  }
}

.hero-mag h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 400;
}

.hero-mag .lead {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #5c534c;
  margin: 0;
}

.hero-mag figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42, 36, 32, 0.18);
}
.hero-mag img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.grid-articles {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .grid-articles {
    grid-template-columns: 1fr;
  }
}

.card-article {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(42, 36, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(42, 36, 32, 0.12);
}
.card-article img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.card-article .body {
  padding: 18px 20px 22px;
  font-family: "DM Sans", sans-serif;
}
.card-article .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b45309;
  font-weight: 700;
}
.card-article h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  margin: 8px 0 10px;
  font-weight: 400;
  line-height: 1.3;
}
.card-article p {
  margin: 0;
  font-size: 0.92rem;
  color: #6b625a;
  line-height: 1.55;
}
