/* ═══════════════════════════════════════════════════════
   Всички новини (микс) — filter bar, badges, load more
   ═══════════════════════════════════════════════════════ */

.news-mix-archive {
	padding-top: 30px;
}

/* Filter bar */
.news-mix-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.news-mix-filter-btn {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 30px;
	background: #f0f0f0;
	color: #4d4d4f !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.news-mix-filter-btn:hover {
	background: #e0e0e0;
}

.news-mix-filter-btn.active {
	background: #c8102e;
	color: #fff !important;
}

/* Category badge on cards */
.news-mix-badge {
	display: inline-block;
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 3px;
	margin-bottom: 10px;
}

/* Company news — filled, so "our own" news stands out from the other three */
.news-mix-badge-company {
	background: #c8102e;
	color: #fff;
}

.news-mix-badge-admin {
	background: rgba(200, 16, 46, 0.08);
	color: #c8102e;
}

.news-mix-badge-docs {
	background: rgba(77, 77, 79, 0.08);
	color: #4d4d4f;
}

.news-mix-badge-langs {
	background: rgba(0, 137, 176, 0.08);
	color: #0089b0;
}

.news-mix-date {
	margin-bottom: 10px;
}

/* Load more */
.news-mix-load-more-wrapper {
	margin-top: 40px;
	text-align: center;
}

.news-mix-load-more {
	display: inline-block;
	background: #c8102e;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 14px 36px;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

.news-mix-load-more:hover {
	background: #a30d26;
}

.news-mix-load-more:disabled {
	opacity: 0.7;
	cursor: default;
}

/* Mobile */
@media (max-width: 600px) {

	.news-mix-filter {
		gap: 8px;
	}

	.news-mix-filter-btn {
		padding: 8px 16px;
		font-size: 13px;
	}

}
