.ddc-card {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease;
	max-width: 400px;
	margin: 0 auto;
}

.ddc-card:hover {
	transform: translateY(-5px);
}

.ddc-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.ddc-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ddc-content {
	padding: 25px;
	text-align: center;
}

.ddc-title {
	margin: 0 0 10px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #333333;
}

.ddc-desc {
	margin: 0 0 20px;
	font-size: 0.95rem;
	color: #666666;
	line-height: 1.5;
}

.ddc-button {
	display: inline-block;
	padding: 12px 24px;
	background-color: #0073aa;
	color: #ffffff;
	font-weight: 500;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.ddc-button:hover {
	opacity: 0.9;
	color: #ffffff;
}