.card-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.section-header {
	margin-bottom: 30px;
	text-align: center;
}

.section-image {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.card-container {
	display: grid;
	grid-template-columns: repeat(var(--card-columns, 3), 1fr);
	gap: 20px;
}

.card {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.card:hover .card-image img {
	transform: scale(1.05);
}

.card-content {
	padding: 20px;
}

.card-title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.2em;
	color: #333;
}

.card-description {
	margin-bottom: 15px;
	font-size: 0.9em;
	color: #666;
	line-height: 1.5;
}

.card-link {
	display: inline-block;
	padding: 8px 15px;
	background-color: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.card-link:hover {
	background-color: #0056b3;
}

.card-date {
	display: block;
	margin-top: 10px;
	font-size: 0.8em;
	color: #888;
}

@media (max-width: 992px) {
	.card-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.card-container {
		grid-template-columns: 1fr;
	}
}