.pagination {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 10px;
			margin: 40px 0 60px;
			flex-wrap: wrap;
			opacity: 0.8;
		}
		
		.pagination span {
			display: inline-block;
			background: rgba(0, 0, 0, 0.6);
			border: 1px solid rgba(255, 255, 255, 0.3);
			color: rgba(255, 255, 255, 0.8);
			padding: 8px 14px;
			border-radius: 5px;
			text-decoration: none;
			font-size: 16px;
			font-family: 'monumento-st', sans-serif;
			transition: all 0.3s ease;
			cursor: pointer;
		}
		
		.pagination span:hover {
			background: #a32c30;
			border-color: #a32c30;
			color: rgba(255, 255, 255, 0.8);
		}
		
		.pagination span.active {
			background: #a32c30;
			border-color: #a32c30;
			color: #fff;
			cursor: default;
		}
		
		.pagination span.disabled {
			opacity: 0.5;
			cursor: not-allowed;
		}
		
		.pagination span.disabled:hover {
			background: rgba(0, 0, 0, 0.6);
			border-color: rgba(255, 255, 255, 0.3);
			color: rgba(255, 255, 255, 0.8);
		}
		
		/* Скрываем новости на других страницах */
		.news-hidden {
			display: none !important;
		}
		
		@media (max-width: 768px) {
			.pagination span {
				padding: 6px 12px;
				font-size: 14px;
			}
			.pagination {
				gap: 6px;
			}
		}