.noticias-page {
  min-height: calc(100vh - 230px);
  background: #fff;
  padding: 1.2rem 0 2rem;
}

.noticias-page__crumb {
  margin: 0 0 1rem;
  color: #8a8f98;
}

.noticias-page__crumb a {
  color: #004D9D;
}

.noticias-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.4rem;
  align-items: start;
}

.noticia-destacada {
  background: #f7f8fa;
  border: 1px solid #e0e4eb;
  border-radius: 0.6rem;
  overflow: hidden;
}

.noticia-destacada__media {
  aspect-ratio: 16 / 9;
  background: #d8dde6;
}

.noticia-destacada__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.noticia-destacada__body {
  padding: 1rem 1.1rem 1.2rem;
}

.noticia-destacada__body small {
  color: #8a8f98;
}

.noticia-destacada__body h1 {
  margin: 0.4rem 0 0.65rem;
  color: #20335d;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.noticia-destacada__summary {
  margin: 0 0 0.65rem;
  color: #334257;
  font-weight: 600;
}

.noticia-destacada__body p {
  margin: 0;
  color: #2f3136;
  line-height: 1.45;
}

.noticia-destacada--empty {
  max-width: 760px;
}

.noticias-listado {
  background: #f7f8fa;
  border: 1px solid #e0e4eb;
  border-radius: 0.6rem;
  padding: 0.9rem;
}

.noticias-listado h2 {
  margin: 0 0 0.75rem;
  color: #20335d;
  font-size: 1.35rem;
}

.noticias-listado__items {
  display: grid;
  gap: 0.5rem;
}

.noticias-listado__item {
  position: relative;
  border: 1px solid #d4d9e2;
  border-radius: 0.45rem;
  background: #fff;
  text-align: left;
  padding: 0.65rem 0.72rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.noticias-listado__item::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  bottom: 0.48rem;
  left: 0;
  width: 3px;
  border-radius: 99px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.noticias-listado__item:hover,
.noticias-listado__item:focus-visible {
  transform: translateY(-2px);
  border-color: #0d58a6;
  box-shadow: 0 10px 20px rgba(32, 51, 93, 0.14);
  background: #f8fbff;
}

.noticias-listado__item:hover::before,
.noticias-listado__item:focus-visible::before {
  background: #0d58a6;
}

.noticias-listado__item strong {
  color: #2f3136;
  font-size: 0.98rem;
}

.noticias-listado__item small {
  color: #8a8f98;
}

.noticias-listado__item.is-active {
  border-color: #004D9D;
  box-shadow: 0 0 0 2px rgba(13, 88, 166, 0.14), 0 10px 20px rgba(32, 51, 93, 0.12);
  background: #f8fbff;
}

.noticias-listado__item.is-active::before {
  background: #004D9D;
}

@media (max-width: 991px) {
  .noticias-page__layout {
    grid-template-columns: 1fr;
  }
}
