.errors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
}

.error-card {
	background: white;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
	display: flex;
}

.error-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	border-color: #2a5bd7;
}

.error-code {
	background: #2a5bd7;
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
}

.error-content {
	padding: 20px;
	flex: 1;
}

.error-content h3 {
	margin: 0 0 10px 0;
	font-size: 1.2rem;
}

.error-content h3 a {
	color: #333;
	text-decoration: none;
}

.error-content h3 a:hover {
	color: #2a5bd7;
}

.error-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.brand, .service {
	background: #f0f5ff;
	color: #2a5bd7;
	padding: 3px 8px;
	border-radius: 3px;
}

.complexity {
	padding: 3px 8px;
	border-radius: 3px;
	font-size: 0.8rem;
	font-weight: 600;
}

.complexity.prostaya { background: #d4edda; color: #155724; }
.complexity.srednyaya { background: #fff3cd; color: #856404; }
.complexity.slozhnaya { background: #f8d7da; color: #721c24; }

.error-preview {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 15px;
}

.error-price {
	color: #ff6b00;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.error-link {
	color: #2a5bd7;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
}

.error-link:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.errors-grid {
		grid-template-columns: 1fr;
	}

	.error-card {
		flex-direction: column;
	}

	.error-code {
		min-width: auto;
		padding: 15px;
	}
}