.news {
  /* base (móvil) */
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding: 2rem 1rem 3rem;

  @media (min-width: 768px) {
    padding: 2.75rem 2rem 3.5rem;
  }

  @media (min-width: 1024px) {
    padding: 3.5rem 2.5rem 4rem;
  }
}

.news__head {
  /* base (móvil) */
  margin-bottom: 2rem;

  @media (min-width: 1024px) {
    margin-bottom: 3rem;
  }
}

.news__title {
  /* base (móvil) */
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-navy);

  @media (min-width: 768px) {
    font-size: 2.2rem;
  }

  @media (min-width: 1024px) {
    font-size: 2.6rem;
  }
}

/* ---- Lista de artículos ---- */
.news__list {
  /* base (móvil) */
  display: flex;
  flex-direction: column;
  gap: 2rem;

  @media (min-width: 1024px) {
    gap: 2.5rem;
  }
}

.news__item {
  /* base (móvil) — separador sutil entre artículos */
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);

  @media (min-width: 1024px) {
    padding-bottom: 2.5rem;
  }
}

.news__item:last-child {
  /* sin borde en el último */
  border-bottom: none;
  padding-bottom: 0;
}

.news__date {
  /* base (móvil) */
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-soft);
  margin-bottom: 0.6rem;
}

.news__item-title {
  /* base (móvil) */
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-navy);
  margin-bottom: 0.6rem;

  @media (min-width: 1024px) {
    font-size: 1.5rem;
  }
}

.news__excerpt {
  /* base (móvil) */
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-soft);
  margin-bottom: 0.85rem;

  @media (min-width: 1024px) {
    font-size: 1rem;
  }
}

.news__read-more {
  /* base (móvil) */
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.news__read-more:hover {
  color: var(--color-navy);
}