.cpt-entry-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.cpt-entry-card {
	border: 1px solid var(--wp--preset--color--light-gray, #ddd);
	border-radius: 12px;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cpt-entry-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.cpt-entry-link {
	display: block;
	padding: 1.25rem 1.25rem 1rem;
	text-decoration: none;
	color: inherit;
}

.cpt-entry-title {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	line-height: 1.5;
}

.cpt-entry-excerpt {
	margin: 0;
	color: #555;
	line-height: 1.7;
}

.cpt-entry-arrow {
	display: inline-block;
	margin-top: 0.75rem;
	font-size: 1rem;
	color: #777;
}