/* The canonical /news/ editorial front end only. */
.bl-news-guide { background: #fff; }
.bl-news-guide__graphic .bl-guide-hero__graphic-title {
  font-size: clamp(3.65rem, 6.65vw, 6.7rem);
}
.bl-news-guide__stories { scroll-margin-top: 112px; }
.bl-news-guide__stories .bl-guide-events__intro { margin-bottom: 1.8rem; }

/* The two lead stories form a full-width row, followed by four complete
   three-column rows of standard cards at the default 14 items per page. */
.bl-news-guide__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2.05rem 1.2rem;
}
.bl-news-guide__card { grid-column: span 2; min-width: 0; }
.bl-news-guide__card:nth-child(-n+2) { grid-column: span 3; }
.bl-news-guide__media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eceeef;
}
.bl-news-guide__card:nth-child(-n+2) .bl-news-guide__media { aspect-ratio: 16 / 9; }
.bl-news-guide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.bl-news-guide__media:hover img { transform: scale(1.025); }
.bl-news-guide__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: #292929;
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.65rem);
  text-align: center;
}
.bl-news-guide__placeholder b { color: #f47a20; }
.bl-news-guide__body { padding: .85rem 0 .1rem; }
.bl-news-guide__card h3 {
  margin: 0;
  color: #1b1b1b;
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
  font-weight: 740;
  line-height: 1.25;
  letter-spacing: -.021em;
  text-wrap: pretty;
}
.bl-news-guide__card:nth-child(-n+2) h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.17;
}
.bl-news-guide__card h3 a { color: inherit; text-decoration: none; }
.bl-news-guide__card h3 a:hover { color: #a84408; }
.bl-news-guide__date {
  margin: .6rem 0 0;
  color: #616970;
  font-size: .86rem;
  line-height: 1.4;
}
.bl-news-guide__excerpt {
  margin: .5rem 0 0;
  color: #565f66;
  font-size: .94rem;
  line-height: 1.57;
}
.bl-news-guide__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 2.8rem 0 0;
  padding: 0;
  list-style: none;
}
.bl-news-guide__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: .5rem .8rem;
  border: 1px solid #e0e2e4;
  border-radius: 999px;
  background: #fff;
  color: #1b1b1b;
  font-size: .87rem;
  font-weight: 750;
  text-decoration: none;
}
.bl-news-guide__pagination a.page-numbers:hover,
.bl-news-guide__pagination a.page-numbers:focus-visible {
  border-color: #a84408;
  color: #a84408;
}
.bl-news-guide__pagination .page-numbers.current {
  border-color: #a84408;
  background: #a84408;
  color: #fff;
}
.bl-news-guide__pagination .page-numbers.dots {
  border: 0;
  background: transparent;
  min-width: 1.5rem;
  padding-inline: .1rem;
}
@media (max-width: 850px) {
  .bl-news-guide__card { grid-column: span 3; }
}
@media (max-width: 620px) {
  .bl-news-guide__stories { scroll-margin-top: 82px; }
  .bl-news-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.65rem .9rem;
  }
  .bl-news-guide__card,
  .bl-news-guide__card:nth-child(-n+2) { grid-column: span 1; }
  .bl-news-guide__card:nth-child(-n+2) .bl-news-guide__media { aspect-ratio: 16 / 10; }
  .bl-news-guide__card h3,
  .bl-news-guide__card:nth-child(-n+2) h3 { font-size: 1.08rem; line-height: 1.26; }
  .bl-news-guide__excerpt { font-size: .85rem; }
}
@media (max-width: 390px) {
  .bl-news-guide__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .bl-news-guide__media img { transition: none; }
}
