.bn-r-card {
	background: #fff;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.bn-r-card a {
	color: #17222b;
	text-decoration: none;
}

.bn-r-card a:hover {
	color: #124b65;
}

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

.bn-r-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 90px;
	background: #eef2f5;
	color: #7a8590;
	font-weight: 700;
	backdrop-filter: blur(8px);
}

.bn-r-card-large__media,
.bn-r-card-medium__media,
.bn-r-card-video__media,
.bn-card-featured__image,
.bn-card-medium__image,
.bn-card-small__image {
	background: linear-gradient(110deg, #edf2f6 8%, #f8fafc 18%, #edf2f6 33%);
	background-size: 200% 100%;
	animation: bn-image-placeholder 1.2s linear infinite;
}

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

.bn-line-clamp-2,
.bn-line-clamp-3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bn-line-clamp-2 {
	-webkit-line-clamp: 2;
}

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

.bn-r-title {
	margin: 0;
	line-height: 1.35;
}

.bn-r-time,
.bn-r-meta {
	color: #7a8590;
	font-size: 14px;
}

.bn-r-card-large {
	overflow: hidden;
	border: 1px solid #e6eaee;
}

.bn-r-card-large__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #eef2f5;
}

.bn-r-card-large__body {
	padding: 18px;
}

.bn-r-card-large .bn-r-title {
	margin: 10px 0;
	font-size: 26px;
}

.bn-r-excerpt {
	margin: 0 0 14px;
	color: #5f6b76;
	font-size: 15px;
	line-height: 1.62;
}

.bn-r-category {
	display: inline-flex;
	padding: 5px 10px;
	background: var(--category-color, #e8192c);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.bn-r-category:hover {
	color: #fff;
}

.bn-r-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.bn-r-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.bn-r-card-medium {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 12px;
	padding: 12px;
	border: 1px solid #e6eaee;
}

.bn-r-card-medium__media {
	width: 130px;
	height: 90px;
	overflow: hidden;
	background: #eef2f5;
}

.bn-r-card-medium .bn-r-title {
	margin: 5px 0 8px;
	font-size: 17px;
}

.bn-r-card-category {
	color: var(--category-color, #e8192c);
	font-size: 13px;
	font-weight: 700;
}

.bn-r-card-small {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px solid #e6eaee;
}

.bn-r-card-small:hover {
	box-shadow: none;
	transform: translateX(3px);
}

.bn-r-card-small__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--category-color, #124b65);
	color: #fff;
	font-weight: 800;
}

.bn-r-card-small .bn-r-title {
	margin-bottom: 6px;
	font-size: 16px;
}

.bn-r-card-video__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #eef2f5;
}

.bn-r-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(232, 25, 44, 0.92);
	color: #fff;
	transform: translate(-50%, -50%);
}

.bn-r-video-category {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 8px;
	background: var(--category-color, #e8192c);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.bn-r-duration {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 4px 8px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.bn-r-card-video .bn-r-title {
	padding: 12px 0 6px;
	font-size: 18px;
}

@media (max-width: 900px) {
	.bn-r-card-large .bn-r-title {
		font-size: 24px;
	}

	.bn-r-excerpt {
		font-size: 14px;
		line-height: 1.58;
	}
}

@media (max-width: 560px) {
	.bn-r-card-large .bn-r-title {
		font-size: 22px;
	}

	.bn-r-card-medium .bn-r-title,
	.bn-r-card-video .bn-r-title {
		font-size: 16px;
	}

	.bn-r-card-small .bn-r-title {
		font-size: 15px;
	}

	.bn-r-card-medium {
		grid-template-columns: 104px minmax(0, 1fr);
	}

	.bn-r-card-medium__media {
		width: 104px;
		height: 78px;
	}
}
