.cdm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.cdm-card {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	height: 100%;
}

.cdm-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.cdm-card__image {
	width: 100%;
	height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cdm-card__body {
	padding: 20px;
}

.cdm-card__title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
	transition: color 0.2s ease;
}

.cdm-card__subtitle {
	margin: 0 0 8px;
	font-size: 16px;
	color: #2b2b2b;
}

.cdm-card__date {
	font-size: 14px;
	color: #666;
}
