/**
 * Post cards – [blog_posts] & archive
 */

/* Equal height – full chain từ row → col → card */
.cuuho-post-cards-row.row,
#post-list .row.cuuho-post-cards-row {
	align-items: stretch !important;
}

.cuuho-post-cards-row > .col.cuuho-post-item,
.cuuho-post-cards-row > .col.post-item {
	display: flex !important;
	flex-direction: column;
}

.cuuho-post-cards-row .post-item .col-inner {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
}

.cuuho-post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--cuuho-white);
	border-radius: var(--cuuho-radius);
	border: 1px solid var(--cuuho-border);
	box-shadow: var(--cuuho-shadow);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cuuho-post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cuuho-shadow-hover);
	border-color: rgba(245, 166, 35, 0.35);
}

.cuuho-post-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--cuuho-navy);
	flex-shrink: 0;
}

.cuuho-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.cuuho-post-card:hover .cuuho-post-card__media img {
	transform: scale(1.05);
}

.cuuho-post-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	padding: 20px;
	background: linear-gradient(135deg, #0a2540 0%, var(--cuuho-navy-light) 55%, #1a5080 100%);
}

.cuuho-post-card__placeholder span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.4;
}

.cuuho-post-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11, 45, 74, 0.45) 0%, transparent 55%);
	pointer-events: none;
}

.cuuho-post-card__cat {
	position: absolute;
	left: 14px;
	top: 14px;
	z-index: 2;
	background: var(--cuuho-amber);
	color: var(--cuuho-navy);
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 5px 10px;
	border-radius: 999px;
	line-height: 1;
	max-width: calc(100% - 28px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cuuho-post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 22px 22px;
}

.cuuho-post-card__date {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--cuuho-muted);
	margin-bottom: 8px;
}

.cuuho-post-card__title {
	margin: 0 0 10px;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.4;
	min-height: calc(1.4em * 3);
}

.cuuho-post-card__title a {
	color: var(--cuuho-navy) !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cuuho-post-card__title a:hover {
	color: var(--cuuho-amber-hover) !important;
}

.cuuho-post-card__excerpt {
	margin: 0 0 16px;
	flex: 1 1 auto;
	color: var(--cuuho-muted);
	font-size: 0.9rem;
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: calc(1.65em * 3);
}

.cuuho-post-card__readmore {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	color: var(--cuuho-navy);
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none !important;
	transition: color 0.2s ease, gap 0.2s ease;
}

.cuuho-post-card__readmore:hover {
	color: var(--cuuho-amber-hover);
	gap: 10px;
}

/* Horizontal layout (list archive) */
.cuuho-post-card--horizontal {
	flex-direction: row;
	align-items: stretch;
}

.cuuho-post-card--horizontal .cuuho-post-card__title {
	min-height: calc(1.4em * 3);
}

.cuuho-post-card--horizontal .cuuho-post-card__excerpt {
	min-height: calc(1.65em * 2);
	-webkit-line-clamp: 2;
}

.cuuho-post-card--horizontal .cuuho-post-card__media {
	width: 38%;
	max-width: 280px;
	aspect-ratio: auto;
	min-height: 180px;
}

.cuuho-post-card--horizontal .cuuho-post-card__body {
	padding: 18px 22px;
}

@media (max-width: 767px) {
	.cuuho-post-card--horizontal {
		flex-direction: column;
	}

	.cuuho-post-card--horizontal .cuuho-post-card__media {
		width: 100%;
		max-width: none;
		aspect-ratio: 16 / 10;
		min-height: 0;
	}
}

/* Ẩn card mặc định Flatsome nếu còn sót */
#post-list .box-blog-post:not(.cuuho-post-card),
.blog-posts .box-blog-post:not(.cuuho-post-card) {
	display: none !important;
}
