:root {
  --bn-navy: #001a4d;
  --bn-red: #d60000;
  --bn-white: #ffffff;
  --bn-ink: #0b1431;
  --bn-slate: #4a5777;
  --bn-sky: #f4f6fb;
  --bn-border: #d9deeb;
  --bn-radius: 0.75rem;
  --bn-shadow: 0 12px 30px rgba(0, 20, 77, 0.08);
  --bn-header-gradient: linear-gradient(180deg, #0a214a 0%, #081837 100%);
  --bn-header-highlight: rgba(255, 255, 255, 0.2);
  --bn-header-offset: clamp(7rem, 10vw, 9rem);
  --bn-serif-heading: 'Times New Roman', 'Georgia', serif;
  --bn-serif-body: 'Georgia', 'Times New Roman', serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--bn-serif-body);
  font-size: 18px;
  background: var(--bn-sky);
  color: var(--bn-ink);
  line-height: 1.6;
  padding-top: var(--bn-header-offset);
}

h1,
h2,
h3,
h4 {
  font-family: var(--bn-serif-heading);
  margin: 0 0 0.5rem;
  color: var(--bn-ink);
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--bn-navy);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font: inherit;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--bn-border);
  border-radius: 0.5rem;
  background: var(--bn-white);
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--bn-navy);
  box-shadow: 0 0 0 2px rgba(0, 26, 77, 0.15);
  outline: none;
}

input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  border: 1px solid var(--bn-border);
  appearance: none;
  display: inline-grid;
  place-content: center;
  background: var(--bn-white);
  cursor: pointer;
}

input[type="checkbox"]::after {
  content: '';
  width: 0.4rem;
  height: 0.2rem;
  border: 2px solid var(--bn-white);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}

input[type="checkbox"]:checked {
  background: var(--bn-navy);
  border-color: var(--bn-navy);
}

input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bn-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  background: var(--bn-red);
  color: var(--bn-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bn-button:hover,
.bn-button:focus-visible,
.button:hover,
.button:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(214, 0, 0, 0.25);
}

.bn-button--primary {
  background: var(--bn-navy);
  border-color: var(--bn-navy);
}

.bn-button--outline,
.button--secondary {
  background: transparent;
  color: var(--bn-navy);
  border-color: var(--bn-navy);
  box-shadow: none;
}

.bn-button--outline:hover,
.bn-button--outline:focus-visible,
.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--bn-navy);
  color: var(--bn-white);
}

.bn-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bn-header-gradient);
  color: var(--bn-white);
  box-shadow: 0 18px 34px rgba(8, 24, 55, 0.22);
  transition: box-shadow 0.3s ease;
}

.bn-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem clamp(1.25rem, 4vw, 2.75rem) 0.95rem;
  background: transparent;
  color: inherit;
  transition: padding 0.3s ease;
}

.bn-header--compact .bn-header__top {
  padding-top: 0.75rem;
  padding-bottom: 0.55rem;
}

.bn-header__brand {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: inherit;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.bn-header__flag {
  height: 34px;
  width: auto;
  border-radius: 0.35rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
  object-fit: cover;
}

.bn-header__brand-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.18em;
}

.bn-header__top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bn-header__auth {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bn-header__auth .bn-utility__link[aria-current="page"] {
  color: var(--bn-white);
  border-color: var(--bn-red);
}

.bn-header__welcome {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.bn-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bn-header-highlight);
  color: var(--bn-white);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.bn-header__search svg {
  width: 18px;
  height: 18px;
}

.bn-header__search:hover,
.bn-header__search:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transform: translateY(-1px);
}

.bn-header__clock {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  min-width: max-content;
}

.bn-header__toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--bn-white);
  cursor: pointer;
  border: 1px solid var(--bn-header-highlight);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.bn-header__toggle:hover,
.bn-header__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transform: translateY(-1px);
}

.bn-header__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bn-header__nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding: 0 1.5rem 1.2rem;
  color: inherit;
  background: transparent;
  border: 0;
  transition: padding 0.3s ease;
}

.bn-header--compact .bn-header__nav-container {
  padding-bottom: 0.7rem;
}

.bn-nav__list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.bn-nav__item {
  position: relative;
}

.bn-nav__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  transition: color 0.3s ease;
}

.bn-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 3px;
  background: var(--bn-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 999px;
}

.bn-nav__item.is-active .bn-nav__link,
.bn-nav__link:hover,
.bn-nav__link:focus-visible {
  color: var(--bn-white);
  text-decoration: none;
}

.bn-nav__item.is-active .bn-nav__link::after,
.bn-nav__link:hover::after,
.bn-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.bn-nav__item--has-submenu .bn-nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(6, 25, 55, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
  display: none;
  min-width: 220px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bn-nav__item--has-submenu:hover .bn-nav__submenu,
.bn-nav__item--has-submenu:focus-within .bn-nav__submenu {
  display: block;
}

.bn-nav__submenu-item {
  list-style: none;
}

.bn-nav__submenu-link {
  display: block;
  padding: 0.5rem 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bn-nav__submenu-link:hover,
.bn-nav__submenu-link:focus-visible,
.bn-nav__submenu-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bn-white);
  text-decoration: none;
}

.bn-utility__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  margin-left: auto;
}

.bn-utility__link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.bn-utility__item.is-active .bn-utility__link,
.bn-utility__link:hover,
.bn-utility__link:focus-visible {
  color: var(--bn-white);
  border-color: var(--bn-red);
  text-decoration: none;
}

.bn-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2rem;
  display: grid;
  gap: 2.75rem;
}

.bn-main--article {
  max-width: 960px;
  gap: 2.5rem;
}

.bn-article {
  --bn-article-padding: 2.5rem;
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  box-shadow: var(--bn-shadow);
  padding: var(--bn-article-padding);
  display: grid;
  gap: 1.5rem;
  color: var(--bn-ink);
  text-align: left;
  line-height: 1.65;
  overflow: hidden;
}

.bn-article > *:last-child {
  margin-bottom: 0;
}

.bn-article__header {
  display: block;
  margin-bottom: 1.25rem;
}

.bn-article__title {
  font-family: var(--bn-serif-heading);
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bn-ink);
  margin: 0;
  overflow-wrap: anywhere;
  max-width: none;
  width: 100%;
  text-wrap: balance;
}

.bn-article__subheading {
  font-family: var(--bn-serif-body);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 600;
  color: var(--bn-ink);
  margin: 0.65rem 0 0.35rem;
  letter-spacing: -0.01em;
}

.bn-article-hed .bn-article-title,
.bn-article-hed .bn-article-standfirst {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .bn-article-hed {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .bn-article-hed .bn-article-title {
    font-family: var(--bn-serif-heading);
    font-weight: 700;
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 10px 0 12px;
    max-width: none;
    width: 100%;
  }

  .bn-article-hed .bn-article-standfirst {
    font-family: var(--bn-serif-body);
    font-weight: 400;
    font-size: 19px;
    line-height: 1.34;
    color: #2a2a2a;
    margin: 8px 0 16px;
    max-width: 70ch;
  }

  .bn-article-hed,
  .bn-article-hed * {
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

@media (max-width: 380px) {
  .bn-article-hed .bn-article-title {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    max-width: none;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .bn-article-hed .bn-article-title {
    max-width: none;
  }
}

.bn-article img:not(.bn-article__share-icon) {
  width: 100%;
  height: auto;
  border-radius: calc(var(--bn-radius) / 1.5);
}

.bn-article__header + .bn-article__hero {
  margin-top: 0;
}

.bn-article__hero {
  display: block;
  margin: calc(-1 * var(--bn-article-padding)) calc(-1 * var(--bn-article-padding)) 20px;
  padding: 0;
  width: calc(100% + (var(--bn-article-padding) * 2));
  max-width: none;
  border-radius: var(--bn-radius) var(--bn-radius) 12px 12px;
  overflow: hidden;
}

.bn-article__hero img,
.bn-article__hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0 0 12px 12px;
  box-shadow: none;
}

.bn-article__hero--placeholder {
  position: relative;
}

.bn-article__hero-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(135deg, rgba(0, 26, 77, 0.08), rgba(0, 26, 77, 0.02));
  box-shadow: none;
}

.bn-article figure.inline-photo {
  display: block;
  margin: 2em auto;
  text-align: center;
  max-width: 100%;
}

.bn-article figure.inline-photo img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: var(--bn-shadow);
}

.bn-article__timestamp {
  display: block;
  font-size: 0.528125rem;
  color: #777;
  padding-top: 0.5rem;
  margin: 0;
  text-align: left;
}

.bn-article__author {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--bn-ink);
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.3;
}

.bn-article__meta {
  margin: 0;
  margin-top: 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

@media (min-width: 768px) {
  .bn-article__author {
    font-size: 16px;
  }
}



.bn-article__share {
  margin: 0;
  padding: 0;
  text-align: left;
}

.bn-share-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bn-article__share-mobile-anchor {
  display: block;
  width: 100%;
}

.bn-article__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.bn-article__share-link:focus-visible {
  outline: 2px solid rgba(24, 119, 242, 0.4);
  outline-offset: 2px;
}

.bn-article__share-icon {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.bn-article__share-link:hover .bn-article__share-icon,
.bn-article__share-link:focus-visible .bn-article__share-icon {
  filter: brightness(1.1);
}

.bn-btn-x {
  --bn-btn-bg: #000;
  --bn-btn-fg: #fff;
  --bn-btn-divider: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--bn-btn-bg, #000);
  color: var(--bn-btn-fg, #fff);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.bn-btn-x:hover,
.bn-btn-x:active {
  opacity: 0.92;
}

.bn-btn-x:focus-visible {
  outline: 2px solid #4c9aff;
  outline-offset: 2px;
  opacity: 1;
}

.bn-btn-x__icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: inherit;
}

.bn-btn-x__divider {
  width: 1px;
  height: 18px;
  background: var(--bn-btn-divider, rgba(255, 255, 255, 0.16));
  flex: 0 0 1px;
}

.bn-btn-x__label {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.bn-article figure figcaption,
.bn-article__hero figcaption {
  font-size: 0.9em;
  font-style: italic;
  color: #666;
  margin-top: 0.5em;
}

@media (max-width: 768px) {
  .bn-article {
    --bn-article-padding: 1.75rem;
  }

  .bn-article__hero {
    margin: calc(-1 * var(--bn-article-padding)) calc(-1 * var(--bn-article-padding)) 20px;
  }

  .bn-article__share {
    margin: 12px auto;
    padding: 0;
    text-align: center;
  }

  .bn-article__share.bn-share-row {
    justify-content: center;
  }

  .bn-article figure.inline-photo {
    margin: 1.5em 0;
  }

  .bn-article figure.inline-photo img {
    border-radius: 0.25rem;
  }
}

.bn-article p {
  margin: 0 0 1.25em;
}

.bn-article p,
.bn-article li {
  line-height: 1.7;
}

.bn-article ul,
.bn-article ol {
  margin: 0;
  padding-left: 1.25rem;
}

.bn-article h1,
.bn-article h2,
.bn-article h3 {
  line-height: 1.3;
}

.bn-hero {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 2.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: var(--bn-shadow);
}

.bn-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bn-red);
  margin-bottom: 0.5rem;
}

.bn-hero__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.bn-hero__link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.bn-hero__link:focus,
.bn-hero__link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--bn-red);
  text-decoration-skip-ink: auto;
}

.bn-hero__summary {
  font-size: 1.05rem;
  color: var(--bn-slate);
}

.bn-hero__meta {
  font-size: 0.28125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  line-height: 1.2;
}

.bn-hero__side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.bn-hero__thumb-link,
.bn-hero__thumb-placeholder {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto;
}

.bn-hero__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  border: none;
}

.bn-hero__thumb-placeholder {
  background: linear-gradient(135deg, rgba(0, 26, 77, 0.07), rgba(0, 26, 77, 0.18));
  border-radius: 0;
  border: none;
}

.bn-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bn-section-header__link {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.bn-latest-news {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 1.5rem;
  box-shadow: var(--bn-shadow);
  margin-bottom: 2rem;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.news-list__item {
  margin: 0;
}

.news-list__link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--bn-sky);
  padding: 0.75rem 1rem;
  border-radius: var(--bn-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-list__link:hover,
.news-list__link:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 26, 77, 0.15);
}

.news-list__thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: calc(var(--bn-radius) / 1.5);
  box-shadow: 0 6px 12px rgba(0, 26, 77, 0.12);
}

.news-list__headline {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bn-ink);
  display: block;
  height: auto;
  max-height: none;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
}

.bn-story-section {
  display: grid;
  gap: 1rem;
}

.bn-story-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  align-items: start;
}

.bn-story-row--top {
  grid-auto-flow: initial;
  grid-auto-columns: unset;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  overflow: visible;
  padding-bottom: 0;
}

.bn-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--bn-radius);
  border: 1px solid var(--bn-border);
  background: var(--bn-white);
  box-shadow: var(--bn-shadow);
}

.bn-pagination__summary {
  font-weight: 600;
  color: var(--bn-ink);
}

.bn-pagination__controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.bn-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--bn-navy);
  color: var(--bn-navy);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bn-pagination__link:hover,
.bn-pagination__link:focus-visible {
  background: var(--bn-navy);
  color: var(--bn-white);
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 26, 77, 0.18);
}

.bn-pagination__link--disabled {
  border-color: var(--bn-border);
  color: var(--bn-slate);
  cursor: not-allowed;
  background: rgba(244, 246, 251, 0.6);
  box-shadow: none;
}

.bn-pagination__link--disabled:hover,
.bn-pagination__link--disabled:focus-visible {
  background: rgba(244, 246, 251, 0.6);
  color: var(--bn-slate);
  text-decoration: none;
  box-shadow: none;
}

@media (max-width: 640px) {
  .bn-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .bn-pagination__controls {
    width: 100%;
    justify-content: space-between;
  }

  .bn-pagination__link,
  .bn-pagination__link--disabled {
    width: 100%;
  }
}

.bn-story-row--top .bn-story-card {
  min-height: auto;
  height: auto;
  gap: 0.75rem;
}

.bn-story-row--top .bn-story-card__link {
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .bn-story-row--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }
}

@media (max-width: 640px) {
  .bn-story-row--top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bn-story-section {
    gap: 1.25rem;
  }

  .bn-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .bn-section-header h2 {
    font-size: 1.4rem;
  }

  .bn-section-header__link {
    font-size: 0.75rem;
  }

  .bn-story-row {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: unset;
    overflow-x: visible;
    gap: 1.25rem;
    scroll-snap-type: none;
  }

  .bn-story-row--top {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .bn-story-card {
    padding: 1.35rem;
  }

  .bn-story-card__link {
    width: 100%;
  }

  .bn-story-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
  }

  .bn-story-card__title {
    font-size: 1rem;
  }

  .bn-story-card__excerpt {
    font-size: 0.9rem;
  }

  .bn-article {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .bn-article {
    --bn-article-padding: 1.5rem;
  }
}

.bn-story-row::-webkit-scrollbar {
  height: 6px;
}

.bn-story-row::-webkit-scrollbar-thumb {
  background: rgba(0, 26, 77, 0.25);
  border-radius: 999px;
}

.bn-story-card {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 1.5rem;
  box-shadow: var(--bn-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  scroll-snap-align: start;
  height: auto;
  min-height: auto;
  overflow: visible;
}

.bn-story-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  flex: initial;
  height: auto;
  min-height: auto;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

.bn-story-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bn-red);
  letter-spacing: 0.08em;
}

.bn-story-card__image-wrapper {
  width: 100%;
  display: block;
}

.bn-story-card__image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--bn-radius) - 4px);
  background: linear-gradient(135deg, rgba(0, 26, 77, 0.12), rgba(0, 26, 77, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 20, 49, 0.65);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.bn-story-card__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0,
    rgba(255, 255, 255, 0.25) 14px,
    rgba(255, 255, 255, 0) 14px,
    rgba(255, 255, 255, 0) 28px
  );
  opacity: 0.55;
}

.bn-story-card__image-placeholder span {
  position: relative;
  z-index: 1;
}

.bn-story-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--bn-radius) - 4px);
}

.bn-story-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  width: 100%;
  margin: 0;
  height: auto;
  max-height: none;
  min-height: auto;
  white-space: normal;
  line-height: 1.45;
  overflow: visible;
  text-overflow: unset;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
  color: var(--bn-ink);
}

.bn-story-card--placeholder {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bn-story-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.bn-story-card__placeholder-logo {
  width: 6rem;
  max-width: 100%;
  height: auto;
}

.bn-story-card__placeholder-text {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bn-ink);
}

.top-story-title {
  display: block;
  height: auto;
  max-height: none;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
}

.bn-story-card__excerpt {
  font-size: 0.95rem;
  color: var(--bn-slate);
}

.bn-story-card__meta {
  font-size: 0.975rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bn-slate);
}

.bn-story-section__empty {
  text-align: center;
  color: var(--bn-slate);
  font-weight: 500;
  padding: 2rem 0;
}

.bn-story-card--compact {
  min-height: auto;
  box-shadow: none;
  border: 1px solid var(--bn-border);
}

.bn-membership {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: var(--bn-shadow);
}

.bn-membership__highlight ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--bn-slate);
}

.bn-campaign {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: var(--bn-shadow);
}

.search__form {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.search__input {
  grid-column: 1 / -1;
}

.cards,
.bn-petitions .cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 1.75rem;
  box-shadow: var(--bn-shadow);
  display: grid;
  gap: 1rem;
  height: auto;
  min-height: fit-content;
}

.card__title {
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 0;
  display: block;
  height: auto;
  max-height: none;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
}

.card__summary {
  font-size: 0.95rem;
  color: var(--bn-slate);
}

.card__meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bn-slate);
  font-weight: 600;
}

.card__meta--date {
  font-size: 1.04rem;
}

.card__button {
  justify-self: start;
}

.cards__error {
  background: var(--bn-white);
  padding: 1.25rem;
  border-radius: var(--bn-radius);
  color: var(--bn-red);
  font-weight: 600;
}

.progress {
  width: 100%;
  height: 0.5rem;
  background: rgba(0, 26, 77, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  background: var(--bn-red);
}

.bn-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.bn-stat {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--bn-shadow);
}

.bn-stat__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bn-slate);
  font-size: 0.75rem;
}

.bn-stat__value {
  display: block;
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bn-navy);
}

.bn-reflection {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: var(--bn-shadow);
}

.bn-reflection__list {
  display: grid;
  gap: 1rem;
}

.bn-category-hero {
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  padding: 2.5rem;
  box-shadow: var(--bn-shadow);
  display: grid;
  gap: 1rem;
}

.bn-category-hero__summary {
  font-size: 1.05rem;
  color: var(--bn-slate);
}

.bn-category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bn-category-grid {
  display: grid;
  gap: 1.5rem;
}

.bn-category-grid .bn-story-row {
  grid-auto-columns: minmax(260px, 1fr);
}

.bn-testimonial {
  display: flex;
  justify-content: center;
}

.bn-testimonial__card {
  max-width: 620px;
  background: var(--bn-white);
  border-left: 4px solid var(--bn-red);
  padding: 1.75rem;
  border-radius: var(--bn-radius);
  box-shadow: var(--bn-shadow);
  font-style: italic;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  display: block;
  background-color: #001a44;
}

.bn-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #001a44;
  color: var(--bn-white);
  padding-top: 3rem;
  margin-top: 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  pointer-events: none;
  z-index: 30;
}

.bn-footer--visible {
  transform: translateY(0);
  pointer-events: auto;
}

body.has-sticky-footer {
  padding-bottom: var(--bn-footer-space, 0);
}

.bn-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  gap: 2rem;
}

.bn-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bn-footer__brand .bn-footer__tagline {
  margin: 0;
}

.bn-footer__brand .bn-button {
  align-self: flex-start;
}

.bn-footer__title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.bn-footer__tagline {
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem 0;
}

.bn-footer__columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

@media (min-width: 768px) {
  .bn-footer__inner {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    align-items: start;
  }

  .bn-footer__brand {
    padding-right: 1rem;
  }
}

@media (max-width: 767.98px) {
  .bn-footer__brand {
    text-align: center;
  }

  .bn-footer__brand .bn-button {
    align-self: center;
  }
}

.bn-footer__heading {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.bn-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.bn-footer__list a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.bn-footer__list a:hover,
.bn-footer__list a:focus-visible {
  color: var(--bn-white);
  text-decoration: none;
}

.bn-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  background: var(--bn-white);
  border-radius: var(--bn-radius);
  box-shadow: var(--bn-shadow);
}

.page h1 {
  margin-bottom: 1.5rem;
}

@media (max-width: 960px) {
  :root {
    --bn-header-offset: clamp(7rem, 18vw, 10rem);
  }

  .bn-header__toggle {
    display: inline-flex;
  }

  .bn-header__nav-container {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    width: 100%;
    padding: 1.1rem clamp(1.1rem, 6vw, 2.25rem) 1.5rem;
    background: rgba(8, 24, 55, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  #bn-nav-toggle:checked ~ .bn-header__nav-container {
    display: flex;
  }

  .bn-nav__list,
  .bn-utility__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.25rem;
    margin-left: 0;
  }

  .bn-nav__link {
    font-size: 0.95rem;
  }

  .bn-nav__link::after {
    bottom: -0.25rem;
  }

  .bn-nav__item--has-submenu .bn-nav__submenu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0.5rem 0 0.25rem;
    width: 100%;
    background: transparent;
  }

  .bn-nav__submenu-link {
    padding-left: 0;
    color: rgba(255, 255, 255, 0.75);
  }
}

@media (max-width: 720px) {
  :root {
    --bn-header-offset: clamp(7.5rem, 28vw, 11.5rem);
  }

  .bn-main {
    padding: 1.5rem 1rem 1.5rem;
  }

  .bn-header__top {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .bn-header__welcome {
    order: 3;
    width: 100%;
  }

  .bn-header__clock {
    order: 4;
    width: 100%;
  }

  .bn-header__search {
    order: 2;
  }
}

/* Cookie consent */
.bn-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000;
  background: var(--bn-navy);
  color: var(--bn-white);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 22px 44px rgba(0, 18, 58, 0.25);
  max-width: 520px;
  width: calc(100% - 2rem);
  font-size: 0.95rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bn-cookie-banner[hidden] {
  display: none !important;
}

.bn-cookie-banner--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
}

.bn-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bn-cookie-banner__message {
  margin: 0;
  color: var(--bn-white);
}

.bn-cookie-banner__message a,
.bn-cookie-banner__link {
  color: var(--bn-white);
  text-decoration: underline;
  font-weight: 600;
}

.bn-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.bn-cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bn-cookie-button:focus-visible {
  outline: 2px solid var(--bn-white);
  outline-offset: 2px;
}

.bn-cookie-button--primary {
  background: var(--bn-red);
  border-color: var(--bn-red);
  color: var(--bn-white);
  box-shadow: 0 12px 20px rgba(214, 0, 0, 0.35);
}

.bn-cookie-button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--bn-white);
}

.bn-cookie-button:hover,
.bn-cookie-button:focus-visible {
  transform: translateY(-1px);
}

.bn-cookie-button--secondary:hover,
.bn-cookie-button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 640px) {
  .bn-cookie-banner {
    bottom: 1rem;
    width: calc(100% - 1.5rem);
    padding: 1rem 1.2rem;
  }

  .bn-cookie-banner__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .bn-cookie-button {
    width: 100%;
  }
}

.bn-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 14, 35, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bn-cookie-modal[hidden] {
  display: none;
}

.bn-cookie-modal--visible {
  opacity: 1;
  pointer-events: auto;
}

.bn-cookie-modal__dialog {
  background: var(--bn-white);
  color: var(--bn-ink);
  border-radius: 1.25rem;
  box-shadow: var(--bn-shadow);
  padding: 2rem;
  width: min(560px, calc(100% - 2rem));
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  position: relative;
}

.bn-cookie-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: var(--bn-ink);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.bn-cookie-modal__intro {
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--bn-slate);
}

.bn-cookie-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bn-cookie-modal__group {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--bn-border);
  border-radius: 0.9rem;
  background: rgba(244, 246, 251, 0.7);
}

.bn-cookie-modal__group legend {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.bn-cookie-modal__group p {
  margin: 0;
  color: var(--bn-slate);
  font-size: 0.95rem;
}

.bn-cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.bn-cookie-toggle span {
  font-size: 1rem;
}

.bn-cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .bn-cookie-modal__dialog {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .bn-cookie-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

body.bn-cookie-modal-open {
  overflow: hidden;
}

.bn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.bn-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bn-top-stories-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 1.75rem;
}

.bn-top-stories-grid__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-content: start;
}

.bn-top-stories-grid__aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-content: start;
  align-items: start;
  grid-auto-flow: row dense;
}

@media (min-width: 1024px) {
  .bn-top-stories-grid__aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bn-top-stories-grid__aside > [data-sidebar-desktop-group="latest"] {
    order: 0;
  }

  .bn-top-stories-grid__aside > [data-sidebar-desktop-group="older"] {
    order: 1;
  }
}

.bn-card--featured {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding-bottom: 1.5rem;
  height: 100%;
}

.bn-card--featured-secondary {
  height: auto;
}

.bn-card--featured .bn-card__image,
.bn-card__image--featured {
  aspect-ratio: 16 / 9;
  border-radius: 16px 16px 0 0;
}

.bn-card__image--featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bn-card__body--featured {
  padding: 1.75rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1 1 auto;
  min-height: 0;
}

.bn-card__title--featured {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
}

.bn-card__summary--featured {
  font-size: 1rem;
  color: var(--bn-slate);
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.bn-card--featured .bn-card__meta {
  margin-top: auto;
  font-size: 0.4753125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #6b7280;
  line-height: 1.2;
}


.bn-card--support {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: auto;
  overflow: visible;
}

.bn-card--support .bn-card__image,
.bn-card__image--support {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.bn-card--support .bn-card__image img,
.bn-card__image--support img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bn-card__body--support {
  padding: 1.05rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-width: 0;
}

.bn-card--support .bn-card__meta {
  margin: 0;
  font-size: 1.352rem;
  line-height: 1.25;
  color: rgba(11, 20, 49, 0.55);
  font-weight: 400;
}

@media (max-width: 1024px) {
  .bn-top-stories-grid {
    grid-template-columns: 1fr;
  }

  .bn-top-stories-grid__main {
    gap: 1.5rem;
  }

  .bn-card--featured {
    padding: 0 0 1.5rem;
  }

  .bn-card__body--featured {
    padding: 1.25rem;
    padding-top: 1.25rem;
  }

  .bn-card__body--support {
    padding: 1rem 1.05rem 1.05rem;
  }

  .bn-card__summary--featured {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

@media (max-width: 640px) {
  .bn-top-stories-grid {
    gap: 1.5rem;
  }

  .bn-card__title--featured {
    font-size: 1.6rem;
  }

  .bn-card__title--support a {
    overflow-wrap: anywhere;
  }
}

.top-stories,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: -0.5rem;
}

.top-stories .card,
.top-stories .bn-card,
.category-grid .card,
.category-grid .bn-card {
  flex: 1 1 calc(25% - 1rem);
  max-width: calc(25% - 1rem);
  margin: 0.5rem;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .top-stories .card,
  .top-stories .bn-card,
  .category-grid .card,
  .category-grid .bn-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .top-stories .card,
  .top-stories .bn-card,
  .category-grid .card,
  .category-grid .bn-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.bn-card:hover,
.bn-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.bn-card__image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16 / 9;
}

.bn-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}


.bn-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bn-card__category {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bn-red);
}

.bn-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  display: block;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
  word-break: normal;
}

.bn-card__title a {
  color: inherit;
  text-decoration: none;
}

.bn-card__title a:hover,
.bn-card__title a:focus {
  color: #1d4ed8;
}

.bn-card--support .bn-card__title,
.bn-card__title--support {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0;
  height: auto;
  max-height: none;
}

.bn-card--support .bn-card__title a,
.bn-card__title--support a {
  display: block;
  white-space: normal;
  overflow: visible;
  word-break: normal;
  overflow-wrap: anywhere;
}

.bn-card__summary {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
}

.bn-card__meta {
  font-size: 0.63375rem;
  color: #6b7280;
  margin-top: auto;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bn-card:not(.bn-card--featured) .bn-card__meta {
  font-size: 0.4753125rem;
  line-height: 1.2;
}

.bn-carousel {
  position: relative;
  margin-top: 1.5rem;
  overflow: hidden;
}

.bn-carousel__viewport {
  overflow: hidden;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 0 0 1.5rem;
  touch-action: pan-y;
}

.bn-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.bn-carousel__viewport {
  scrollbar-width: none;
}

.bn-carousel__container {
  --bn-carousel-gap: 1.5rem;
  display: flex;
  gap: var(--bn-carousel-gap);
  align-items: stretch;
  width: max-content;
  padding: 0;
}

.bn-carousel__slide {
  flex: 0 0 280px;
  min-width: 240px;
  max-width: 100%;
}

.bn-carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(12, 25, 64, 0.9);
  color: var(--bn-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.bn-carousel__button:hover,
.bn-carousel__button:focus-visible {
  background: rgba(12, 25, 64, 1);
  transform: translateY(-50%) scale(1.05);
}

.bn-carousel__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.bn-carousel__button--prev {
  left: 0.5rem;
}

.bn-carousel__button--next {
  right: 0.5rem;
}

@media (max-width: 768px) {
  .bn-carousel__button {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 640px) {
  .bn-card__image img {
    height: 180px;
  }
}
