
.cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.cat-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s;
	overflow: hidden;
}

.cat-card:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}

.cat-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.cat-card-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cat-card-body h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: #111;
	margin: 0;
}

.cat-card-body p {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.cat-pagination {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin: 20px 0 40px;
}

.cat-page-btn {
	display: inline-block;
	background: #fff;
	color: #00357b;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 50px;
	border: 2px solid #00357b;
	text-decoration: none;
	transition: background 0.2s;
}

.cat-page-btn:hover {
	background: #f0f4ff;
}

@media (max-width: 768px) {
	.cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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