/* ==========================================================
 * TV Post Card — template thống nhất toàn website
 * ========================================================== */

/* ---- Card base ---- */
.tv-post-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid rgba(240, 230, 208, 0.85);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 24px -8px rgba(56, 22, 4, 0.1);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tv-post-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 168, 39, 0.45);
	box-shadow: 0 16px 40px -12px rgba(199, 149, 44, 0.28);
}

/* ---- Media ---- */
.tv-post-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #fdf6e8 0%, #f5e6c8 100%);
}

.tv-post-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.tv-post-card:hover .tv-post-card__img {
	transform: scale(1.06);
}

/* Date badge */
.tv-post-card__date {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	padding: 6px 8px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(240, 230, 208, 0.9);
	border-radius: 10px;
	box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.15);
	line-height: 1.1;
	pointer-events: none;
}

.tv-post-card__date-day {
	font-size: 18px;
	font-weight: 800;
	color: #c7952c;
}

.tv-post-card__date-month {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: #724907;
}

/* Category pill */
.tv-post-card__category {
	position: absolute;
	bottom: 12px;
	left: 12px;
	z-index: 2;
	display: inline-block;
	max-width: calc(100% - 24px);
	padding: 4px 12px;
	background: linear-gradient(135deg, #ffa827, #c7952c);
	color: #381604;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	border-radius: 999px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	pointer-events: none;
}

.tv-post-card__category--inline {
	position: static;
	display: inline-block;
	margin-bottom: 8px;
	max-width: 100%;
}

/* ---- Body ---- */
.tv-post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 22px 22px;
}

.tv-post-card__meta {
	margin-bottom: 8px;
	font-size: 12px;
	color: #9ca3af;
}

.tv-post-card__meta time {
	color: inherit;
}

.tv-post-card__title {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	color: #1a1208;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tv-post-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.tv-post-card__title a:hover {
	color: #c7952c;
}

.tv-post-card__excerpt {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.65;
	color: #5c5348;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.tv-post-card__readmore {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding: 8px 16px;
	width: fit-content;
	border-radius: 999px;
	background: linear-gradient(135deg, #ffa827, #c7952c);
	color: #381604 !important;
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tv-post-card:hover .tv-post-card__readmore {
	transform: translateX(2px);
	box-shadow: 0 4px 14px -4px rgba(199, 149, 44, 0.55);
}

.tv-post-card__readmore svg {
	flex-shrink: 0;
	transition: transform 0.15s ease;
}

.tv-post-card:hover .tv-post-card__readmore svg {
	transform: translateX(3px);
}

/* No image variant */
.tv-post-card--no-image .tv-post-card__body {
	padding-top: 24px;
}

.tv-post-card--no-image::before {
	content: '';
	display: block;
	height: 4px;
	background: linear-gradient(90deg, #ffa827, #c7952c, #724907);
}

/* ---- Grid / row spacing ---- */
.tv-posts-row .post-item .col-inner {
	height: 100%;
}

.tv-posts-row .post-item {
	margin-bottom: 24px;
}

/* ---- Archive page grid ---- */
.tv-posts-archive-grid .post-item {
	margin-bottom: 28px;
}

/* ---- Hide old Flatsome card styles when mixed ---- */
.box-blog-post .is-divider {
	display: none !important;
}

/* ---- Responsive ---- */
@media (max-width: 849px) {
	.tv-post-card__body {
		padding: 16px 16px 18px;
	}

	.tv-post-card__title {
		font-size: 16px;
		-webkit-line-clamp: 2;
	}

	.tv-post-card__excerpt {
		font-size: 13.5px;
		-webkit-line-clamp: 2;
	}

	.tv-post-card__date {
		top: 10px;
		left: 10px;
		min-width: 42px;
		padding: 5px 7px;
	}

	.tv-post-card__date-day {
		font-size: 16px;
	}
}

@media (max-width: 549px) {
	.tv-post-card {
		border-radius: 14px;
	}
}
