.cpe-wrapper {
	display: grid;
	gap: 30px;
}
.cpe-wrapper-full_content {
	grid-template-columns: 1fr !important;
}

.cpe-article {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.cpe-article-classic {
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.cpe-article-classic:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.cpe-article-cards {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}
.cpe-article-cards:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cpe-image-link {
	display: block;
	width: 100%;
}
.cpe-image-link img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 16/9;
}

.cpe-content-wrap {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.cpe-article-classic .cpe-content-wrap,
.cpe-article-full_content .cpe-content-wrap {
	padding: 20px 0 0 0;
}

.cpe-title {
	margin: 0 0 15px 0;
	font-size: 1.5rem;
}
.cpe-title a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}
.cpe-title a:hover {
	text-decoration: underline;
}

.cpe-excerpt p {
	margin: 0;
	color: inherit;
	line-height: 1.6;
}
