.bn-front-page {
	--home-ink: #17222b;
	--home-muted: #5f6b76;
	--home-line: #e2e8ee;
	--home-soft: #f5f8fb;
	--home-primary: var(--bn-primary, #124b65);
	--home-accent: var(--bn-breaking, #e8192c);
	padding: 0;
	background: #fff;
}

.bn-section,
.bn-home-section {
	padding: 30px 0;
	border-bottom: 1px solid var(--home-line);
}

.bn-home-section--soft {
	background: var(--home-soft);
}

.bn-home-section--accent {
	background: linear-gradient(180deg, #fff 0, #fff7f8 100%);
}

.bn-home-section__head,
.bn-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--home-line);
}

.bn-home-section__head h2,
.bn-section-heading h2 {
	position: relative;
	margin: 0;
	color: var(--home-ink);
	font-size: 27px;
	line-height: 1.25;
	font-weight: 800;
}

.bn-home-section__head h2::after,
.bn-section-heading h2::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -13px;
	width: 60px;
	height: 3px;
	background: var(--home-accent);
}

.bn-home-section__more,
.bn-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 1px solid var(--home-line);
	background: #fff;
	color: var(--home-primary);
	padding: 0 15px;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bn-home-section__more:hover,
.bn-more-link:hover {
	border-color: var(--home-primary);
	background: var(--home-primary);
	color: #fff;
}

.bn-home-hero,
.bn-home-lead-grid,
.bn-home-mixed,
.bn-hero-grid,
.bn-feature-block {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
	gap: 24px;
}

.bn-home-hero__side,
.bn-home-mixed__list,
.bn-home-list,
.bn-hero-side,
.bn-feature-list {
	display: grid;
	gap: 14px;
}

.bn-home-card-grid,
.bn-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.bn-home-section--lead-grid .bn-home-card-grid,
.bn-home-section--video .bn-home-card-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bn-home-section--list .bn-container {
	display: grid;
	grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.bn-home-section--list .bn-home-section__head {
	position: sticky;
	top: 18px;
	display: block;
	margin: 0;
	border: 0;
	padding: 0;
}

.bn-home-section--list .bn-home-section__more {
	margin-top: 14px;
}

.bn-home-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 22px;
}

.bn-card,
.bn-news-card {
	min-width: 0;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bn-news-card:hover {
	box-shadow: 0 14px 30px rgba(18, 75, 101, 0.11);
	transform: translateY(-2px);
}

.bn-news-card a,
.bn-card a {
	color: var(--home-ink);
	text-decoration: none;
}

.bn-news-card a:hover,
.bn-card a:hover {
	color: var(--home-primary);
}

.bn-news-card__media,
.bn-card-featured__image,
.bn-card-medium__image,
.bn-card-small__image {
	position: relative;
	display: block;
	overflow: hidden;
	background: linear-gradient(110deg, #edf2f6 8%, #f8fafc 18%, #edf2f6 33%);
	background-size: 200% 100%;
	animation: bn-home-image-placeholder 1.2s linear infinite;
}

.bn-news-card__media {
	aspect-ratio: 16 / 10;
}

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

.bn-news-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 120px;
	color: #7a8590;
	font-weight: 800;
}

.bn-news-card__body {
	padding: 14px;
}

.bn-news-card__category,
.bn-category-badge {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 9px;
	padding: 5px 9px;
	background: var(--category-color, var(--home-accent));
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}

.bn-news-card__category:hover,
.bn-category-badge:hover {
	color: #fff;
}

.bn-news-card__title,
.bn-card-featured h2,
.bn-card-small h3,
.bn-card-list h3,
.bn-card-medium h3 {
	margin: 0;
	color: var(--home-ink);
	font-size: 18px;
	line-height: 1.35;
	font-weight: 800;
}

.bn-news-card__excerpt,
.bn-card-featured p {
	margin: 10px 0 0;
	color: var(--home-muted);
	font-size: 14px;
	line-height: 1.62;
}

.bn-news-card__time,
.bn-post-time {
	display: inline-flex;
	margin-top: 10px;
	color: #7a8590;
	font-size: 14px;
}

.bn-news-card--classic {
	border: 1px solid var(--home-line);
	box-shadow: 0 8px 22px rgba(23, 34, 43, 0.06);
}

.bn-home-hero__lead .bn-news-card--classic .bn-news-card__media,
.bn-home-lead-grid__lead .bn-news-card--classic .bn-news-card__media {
	aspect-ratio: 16 / 9;
}

.bn-home-hero__lead .bn-news-card__title,
.bn-home-lead-grid__lead .bn-news-card__title {
	font-size: clamp(26px, 3vw, 32px);
	line-height: 1.24;
}

.bn-news-card--compact,
.bn-news-card--horizontal {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--home-line);
}

.bn-news-card--compact .bn-news-card__media,
.bn-news-card--horizontal .bn-news-card__media {
	width: 128px;
	aspect-ratio: 4 / 3;
}

.bn-news-card--compact .bn-news-card__body,
.bn-news-card--horizontal .bn-news-card__body {
	padding: 0;
}

.bn-news-card--compact .bn-news-card__title,
.bn-news-card--horizontal .bn-news-card__title {
	font-size: 16px;
}

.bn-news-card--overlay {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	border: 0;
	background: #111821;
}

.bn-news-card--overlay .bn-news-card__media {
	position: absolute;
	inset: 0;
	height: 100%;
	aspect-ratio: auto;
	opacity: 0.86;
}

.bn-news-card--overlay .bn-news-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
}

.bn-news-card--overlay .bn-news-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 260px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px;
}

.bn-news-card--overlay .bn-news-card__title a,
.bn-news-card--overlay .bn-news-card__excerpt,
.bn-news-card--overlay .bn-news-card__time {
	color: #fff;
}

.bn-news-card--list,
.bn-news-card--numbered {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 11px;
	padding: 13px 0;
	border-bottom: 1px solid var(--home-line);
	background: transparent;
}

.bn-news-card--list {
	display: block;
}

.bn-news-card--list:hover,
.bn-news-card--numbered:hover {
	box-shadow: none;
	transform: translateX(3px);
}

.bn-news-card--list .bn-news-card__body,
.bn-news-card--numbered .bn-news-card__body {
	padding: 0;
}

.bn-news-card--numbered .bn-news-card__body {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.bn-news-card--numbered .bn-news-card__title,
.bn-news-card--numbered .bn-news-card__time {
	grid-column: 2;
}

.bn-news-card--list .bn-news-card__title,
.bn-news-card--numbered .bn-news-card__title {
	font-size: 16px;
}

.bn-news-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--home-primary);
	color: #fff;
	font-weight: 800;
}

.bn-news-card--video {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #182331;
}

.bn-news-card--video .bn-news-card__body {
	background: #182331;
}

.bn-news-card--video .bn-news-card__title a,
.bn-news-card--video .bn-news-card__time {
	color: #edf2f7;
}

.bn-news-card__play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 54px;
	height: 54px;
	background: var(--home-accent);
	transform: translate(-50%, -50%);
}

.bn-news-card__play::before {
	content: "";
	position: absolute;
	left: 22px;
	top: 17px;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	border-width: 10px 0 10px 15px;
}

.bn-three-column-grid,
.bn-two-column-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.bn-two-column-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bn-ad-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(300px, 100%);
	aspect-ratio: 6 / 5;
	margin: 0 auto 24px;
	border: 1px solid #d8dee5;
	background: #f6f8fa;
	color: #7a8590;
	font-weight: 700;
}

.bn-home-ad-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	margin-bottom: 18px;
	overflow: hidden;
	border: 1px solid #d4dde5;
	background: #eef3f7;
	color: #7a8590;
	font-weight: 800;
	text-align: center;
}

.bn-home-ad-slot img,
.bn-home-ad-slot iframe {
	display: block;
	max-width: 100%;
}

.bn-home-section__head {
	border-bottom-color: #174b63;
}

.bn-home-section--hero .bn-home-section__head {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.bn-home-section__head h2 {
	border-left: 4px solid #174b63;
	padding-left: 10px;
	color: #174b63;
	font-size: 26px;
}

.bn-home-section__head h2::after {
	display: none;
}

.bn-news-card {
	box-shadow: none;
}

.bn-news-card:hover {
	box-shadow: none;
	transform: none;
}

.bn-news-card--feature,
.bn-news-card--grid,
.bn-news-card--magazine,
.bn-news-card--classic {
	border: 0;
	background: transparent;
}

.bn-news-card--feature .bn-news-card__body,
.bn-news-card--grid .bn-news-card__body,
.bn-news-card--magazine .bn-news-card__body,
.bn-news-card--classic .bn-news-card__body {
	padding: 10px 0 0;
}

.bn-news-card--feature .bn-news-card__title {
	font-size: clamp(24px, 2.6vw, 30px);
}

.bn-news-card--grid .bn-news-card__title {
	font-size: 18px;
}

.bn-news-card--magazine .bn-news-card__title {
	font-size: 19px;
}

.bn-news-card--split,
.bn-news-card--mini_thumb,
.bn-news-card--horizontal {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 14px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid var(--home-line);
	background: transparent;
}

.bn-news-card--mini_thumb {
	grid-template-columns: minmax(0, 1fr) 112px;
	gap: 10px;
}

.bn-news-card--horizontal {
	grid-template-columns: 150px minmax(0, 1fr);
}

.bn-news-card--split .bn-news-card__media,
.bn-news-card--mini_thumb .bn-news-card__media {
	grid-column: 2;
	grid-row: 1;
	width: 100%;
	aspect-ratio: 4 / 3;
}

.bn-news-card--horizontal .bn-news-card__media {
	width: 150px;
	aspect-ratio: 4 / 3;
}

.bn-news-card--split .bn-news-card__body,
.bn-news-card--mini_thumb .bn-news-card__body {
	grid-column: 1;
	grid-row: 1;
	padding: 0;
}

.bn-news-card--horizontal .bn-news-card__body {
	padding: 0;
}

.bn-news-card--split .bn-news-card__title,
.bn-news-card--horizontal .bn-news-card__title {
	font-size: 18px;
}

.bn-news-card--mini_thumb .bn-news-card__title {
	font-size: 16px;
}

.bn-news-card--compact {
	display: block;
	padding: 13px 0;
	border-bottom: 1px solid var(--home-line);
	background: transparent;
}

.bn-news-card--compact .bn-news-card__body {
	padding: 0;
}

.bn-news-card--compact .bn-news-card__title {
	font-size: 16px;
}

.bn-news-card--text_lead {
	border-left: 4px solid #174b63;
	background: transparent;
}

.bn-news-card--text_lead .bn-news-card__body {
	padding: 0 0 0 14px;
}

.bn-news-card--text_lead .bn-news-card__title {
	font-size: clamp(24px, 2.6vw, 30px);
	line-height: 1.28;
}

.bn-news-card--opinion {
	border: 0;
	background: transparent;
	text-align: center;
}

.bn-news-card--opinion .bn-news-card__body {
	padding: 0;
}

.bn-news-card__avatar {
	display: inline-flex;
	margin-bottom: 10px;
}

.bn-news-card__avatar-img {
	width: 76px;
	height: 76px;
	border-radius: 50%;
}

.bn-news-card__author {
	display: block;
	margin-top: 8px;
	color: var(--home-muted);
	font-size: 14px;
}

.bn-home-center-feature {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 1.25fr) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.bn-home-center-feature__lead {
	border-right: 1px solid var(--home-line);
	border-left: 1px solid var(--home-line);
	padding: 0 12px;
}

.bn-home-center-feature__rail,
.bn-home-wide-rails__rail,
.bn-home-lead-trending__list {
	display: grid;
	gap: 0;
}

.bn-home-wide-rails {
	display: grid;
	grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 22px;
}

.bn-home-wide-rails__lead {
	border-right: 1px solid var(--home-line);
	padding-right: 12px;
}

.bn-home-lead-ad,
.bn-home-lead-trending,
.bn-home-editorial {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 24px;
	align-items: start;
}

.bn-home-lead-ad--no-sidebar {
	grid-template-columns: 1fr;
}

.bn-home-lead-trending {
	grid-template-columns: minmax(0, 1fr) 310px;
}

.bn-home-lead-trending__content {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
	gap: 22px;
}

.bn-home-sidebar-list {
	border-left: 1px solid var(--home-line);
	padding-left: 14px;
}

.bn-home-sidebar-list__tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 8px;
	background: #e8eef3;
	color: #174b63;
	font-weight: 800;
	text-align: center;
}

.bn-home-sidebar-list__tabs span {
	padding: 10px;
}

.bn-home-sidebar-list__more {
	display: flex;
	justify-content: center;
	margin-top: 12px;
	padding: 10px;
	background: #174b63;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.bn-home-editorial {
	grid-template-columns: minmax(0, 1fr) 300px;
}

.bn-home-editorial__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: 24px;
	align-items: center;
	margin-bottom: 20px;
}

.bn-home-editorial__sidebar {
	display: grid;
	gap: 18px;
}

.bn-home-opinion-box {
	border-top: 1px solid #174b63;
	padding-top: 12px;
}

.bn-home-opinion-box h2 {
	margin: 0 0 14px;
	border-left: 4px solid #174b63;
	padding-left: 10px;
	color: #174b63;
	font-size: 24px;
}

.bn-home-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bn-home-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bn-home-dual-category {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.bn-home-dual-category__pane:first-child {
	border-right: 1px solid var(--home-line);
	padding-right: 20px;
}

.bn-home-triple-category {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.bn-home-triple-category__pane {
	min-width: 0;
}

.bn-home-triple-category__pane:not(:last-child) {
	border-right: 1px solid var(--home-line);
	padding-right: 18px;
}

.bn-home-magazine-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 22px;
}

.bn-home-section--banner-grid .bn-home-ad-slot {
	min-height: 118px;
	background: #efece2;
}

@keyframes bn-home-image-placeholder {
	to {
		background-position-x: -200%;
	}
}

@media (max-width: 1024px) {
	.bn-home-card-grid,
	.bn-home-card-grid--four,
	.bn-home-card-grid--three,
	.bn-home-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bn-home-section--list .bn-container {
		grid-template-columns: 1fr;
	}

	.bn-home-section--list .bn-home-section__head {
		position: static;
	}

	.bn-home-section__head h2 {
		font-size: 24px;
	}

	.bn-home-hero__lead .bn-news-card__title,
	.bn-home-lead-grid__lead .bn-news-card__title,
	.bn-news-card--feature .bn-news-card__title,
	.bn-news-card--text_lead .bn-news-card__title {
		font-size: 26px;
	}
}

@media (max-width: 900px) {
	.bn-home-hero,
	.bn-home-lead-grid,
	.bn-home-mixed,
	.bn-home-center-feature,
	.bn-home-wide-rails,
	.bn-home-lead-ad,
	.bn-home-lead-trending,
	.bn-home-lead-trending__content,
	.bn-home-editorial,
	.bn-home-editorial__hero,
	.bn-home-dual-category,
	.bn-home-triple-category,
	.bn-home-magazine-grid,
	.bn-hero-grid,
	.bn-feature-block,
	.bn-three-column-grid,
	.bn-two-column-grid {
		grid-template-columns: 1fr;
	}

	.bn-home-center-feature__lead,
	.bn-home-wide-rails__lead,
	.bn-home-dual-category__pane:first-child,
	.bn-home-triple-category__pane:not(:last-child),
	.bn-home-sidebar-list {
		border: 0;
		padding: 0;
	}
}

@media (max-width: 600px) {
	.bn-section,
	.bn-home-section {
		padding: 24px 0;
	}

	.bn-home-section__head {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
		gap: 10px;
	}

	.bn-home-section__head h2 {
		min-width: 0;
		overflow: hidden;
		font-size: 20px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.bn-home-section__more {
		flex: 0 0 auto;
		min-height: 36px;
		padding: 0 12px;
		font-size: 14px;
		white-space: nowrap;
	}

	.bn-home-card-grid,
	.bn-home-card-grid--four,
	.bn-home-card-grid--three,
	.bn-home-section--lead-grid .bn-home-card-grid,
	.bn-home-section--video .bn-home-card-grid,
	.bn-home-list,
	.bn-card-grid {
		grid-template-columns: 1fr;
	}

	.bn-news-card--compact,
	.bn-news-card--horizontal,
	.bn-news-card--split,
	.bn-news-card--mini_thumb {
		grid-template-columns: 104px minmax(0, 1fr);
	}

	.bn-news-card--compact .bn-news-card__media,
	.bn-news-card--horizontal .bn-news-card__media,
	.bn-news-card--split .bn-news-card__media,
	.bn-news-card--mini_thumb .bn-news-card__media {
		grid-column: 1;
		width: 104px;
	}

	.bn-news-card--split .bn-news-card__body,
	.bn-news-card--mini_thumb .bn-news-card__body {
		grid-column: 2;
	}

	.bn-home-hero__lead .bn-news-card__title,
	.bn-home-lead-grid__lead .bn-news-card__title {
		font-size: 23px;
	}

	.bn-news-card__title,
	.bn-card-featured h2,
	.bn-card-small h3,
	.bn-card-list h3,
	.bn-card-medium h3,
	.bn-news-card--feature .bn-news-card__title,
	.bn-news-card--grid .bn-news-card__title,
	.bn-news-card--magazine .bn-news-card__title,
	.bn-news-card--split .bn-news-card__title,
	.bn-news-card--horizontal .bn-news-card__title,
	.bn-news-card--text_lead .bn-news-card__title {
		font-size: 17px;
		line-height: 1.36;
	}

	.bn-news-card--mini_thumb .bn-news-card__title,
	.bn-news-card--compact .bn-news-card__title,
	.bn-news-card--list .bn-news-card__title,
	.bn-news-card--numbered .bn-news-card__title {
		font-size: 15px;
	}

	.bn-news-card__excerpt,
	.bn-card-featured p {
		font-size: 13px;
		line-height: 1.55;
	}
}
