/* Página de noticia */
.news-page {
  padding: 1rem 0 5rem;
}

/* Layout principal */
.layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  align-items: start;
}

/* Título */
.news-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: .8rem;
}

/* Metadatos */
.news-meta {
  color: var(--muted);
  margin-bottom: 1.8rem;
}

/* Portada general */
.news-cover {
  height: 420px;
  border-radius: 28px;
  margin-bottom: 2rem;
  background-position: center;
  background-size: cover;
}

/* Portada Boyfriend */
.news-cover-boyfriend {
  width: 100%;
  height: 380px;
  border-radius: 22px;
  margin: 1.2rem 0 2rem;
  background-image: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)), url('../img/boyfriend3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Portada Seventeen */
.news-cover-seventeen {
  width: 100%;
  height: 380px;
  border-radius: 22px;
  margin: 1.2rem 0 2rem;
  background-image: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)), url('../img/v81.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Portada One Hundred */
.news-cover-onehundred {
  width: 100%;
  height: 380px;
  border-radius: 22px;
  margin: 1.2rem 0 2rem;
  background-image: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)), url('../img/one1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Portada IOI */
.news-cover-ioi {
  width: 100%;
  height: 380px;
  border-radius: 22px;
  margin: 1.2rem 0 2rem;
  background-image: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)), url('../img/ioi1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Contenido */
.news-content {
  background: white;
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
  line-height: 1.9;
  font-size: 1.06rem;
}

/* Párrafos */
.news-content p {
  margin-bottom: 1.5rem;
}

/* Subtítulos */
.news-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  margin-bottom: .8rem;
}

/* Citas */
.news-content blockquote {
  border-left: 4px solid var(--pink);
  padding-left: 1rem;
  margin: 1.8rem 0;
  color: var(--muted);
  font-style: italic;
}

/* Sidebar */
aside {
  background: var(--blue-soft);
  border-radius: 28px;
  padding: 1.4rem;
  position: sticky;
  top: 96px;
}

/* Título sidebar */
aside h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--bluee);
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

/* Responsive */
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  aside {
    position: static;
  }

  .news-cover {
    height: 300px;
  }

  .news-title {
    font-size: 2.3rem;
  }
}