/* Breaking News Bar */
.bnb-breaking-news-carousel {
	position: relative;
	display: none;
	overflow: hidden;
	width: 100%;
	z-index: 1000;
}

.bnb-breaking-news-slides {
	position: relative;
}

.bnb-breaking-news-slide {
	padding: 12px 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	font-family: Arial, sans-serif;
	line-height: 1.4;
}

.bnb-breaking-news-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	padding: 0 56px 0 20px;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
}

.bnb-breaking-news-label {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	padding: 4px 10px;
	font-weight: 900;
	text-transform: uppercase;
	border-radius: 3px;
	font-size: 22px;
	line-height: 1.1;
	white-space: nowrap;
}

.bnb-breaking-news-title {
	flex: 1 1 auto;
	min-width: 0;
	font-weight: 600;
	text-decoration: none;
	font-size: 20px;
	line-height: 1.3;
	color: inherit;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.bnb-breaking-news-title:hover,
.bnb-breaking-news-title:focus {
	text-decoration: underline;
}

.bnb-breaking-news-title:focus-visible,
.bnb-breaking-news-prev:focus-visible,
.bnb-breaking-news-next:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.bnb-breaking-news-controls {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
}

.bnb-breaking-news-prev,
.bnb-breaking-news-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.45);
	border: 0;
	color: #ffffff;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bnb-breaking-news-prev:hover,
.bnb-breaking-news-next:hover,
.bnb-breaking-news-prev:focus,
.bnb-breaking-news-next:focus {
	background: rgba(0, 0, 0, 0.7);
}

.bnb-breaking-news-prev:active,
.bnb-breaking-news-next:active {
	transform: scale(0.96);
}

@media (max-width: 1024px) {
	.bnb-breaking-news-label {
		font-size: 18px;
	}

	.bnb-breaking-news-title {
		font-size: 17px;
	}
}

@media (max-width: 768px) {
	.bnb-breaking-news-slide {
		padding: 10px 0;
	}

	.bnb-breaking-news-inner {
		padding: 0 14px 0 14px;
		gap: 10px;
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.bnb-breaking-news-label {
		font-size: 15px;
		padding: 4px 8px;
	}

	.bnb-breaking-news-title {
		font-size: 15px;
		width: 100%;
	}

	.bnb-breaking-news-controls {
		position: static;
		transform: none;
		justify-content: flex-end;
		padding: 8px 14px 0;
	}
}

@media (max-width: 480px) {
	.bnb-breaking-news-slide {
		padding: 8px 0;
	}

	.bnb-breaking-news-inner {
		gap: 8px;
	}

	.bnb-breaking-news-label {
		font-size: 13px;
	}

	.bnb-breaking-news-title {
		font-size: 14px;
		line-height: 1.35;
	}

	.bnb-breaking-news-prev,
	.bnb-breaking-news-next {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bnb-breaking-news-prev,
	.bnb-breaking-news-next {
		transition: none;
	}
}