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

.cpt-taxonomy-item {
	border: 1px solid #ddd;
	border-radius: 12px;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.cpt-taxonomy-title {
	margin: 0 0 0.45rem;
	font-size: 1.05rem;
	line-height: 1.5;
}

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

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