.catalogues-hero {
	text-align: center;
	padding: 4rem 8%;
	background-color: #faf8d1;
}

.hero-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f2c14f;
	margin: 0 auto 2rem auto;
	display: block;
}

.hero-circle-small {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #f2c14f;
	display: block;
}

.hero-circles-container {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 2rem auto 0 auto;
}

.catalogues-hero h1 {
	font-size: 3rem;
	letter-spacing: 0.1em;
	color: #a64f25;
	margin-bottom: 1rem;
	text-align: center;
}

.catalogues-hero p {
	font-size: 1.2rem;
	color: #a64f25;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.catalogues-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	padding: 4rem 8%;
}

.catalogue-card {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.catalogue-card img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 1rem;
}

.catalogue-card h2 {
	color: #a64f25;
	margin-bottom: 0.5rem;
}

.catalogue-card p {
	color: #444;
	margin-bottom: 1rem;
}
