/* Grid bài viết — theo ui/item-bai-viet.png */

.bioseed-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

/* margin-bottom: 0 la co y — Flatsome dat margin-bottom: 30px cho moi <article>.
   Trong luoi thi khoang cach da do `gap` lo, margin thua se cong them vao lam
   khe doc rong gap doi khe ngang ngay khi luoi co tu hai hang tro len. */
.bioseed-post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 0;
	border: 1px solid #eceff1;
	border-radius: 6px;
	background: #fff;
	transition: box-shadow .25s ease, transform .25s ease;
}
.bioseed-post-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.bioseed-post-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f2f4f6;
}
.bioseed-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.bioseed-post-card:hover .bioseed-post-card__media img { transform: scale(1.04); }
.bioseed-post-card__placeholder { display: block; width: 100%; height: 100%; }

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

.bioseed-post-card__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: none;
}
.bioseed-post-card__title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #14304f;
	text-transform: none;
}
.bioseed-post-card__title a:hover { color: #1e7145; }

.bioseed-post-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0 0 18px;
	font-size: 13px;
	line-height: 1.6;
	color: #7b8794;
	text-transform: none;
}

.bioseed-post-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #f0f2f4;
}

.bioseed-post-card__date {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #7b8794;
	text-transform: none;
	visibility: visible;
	opacity: 1;
}
.bioseed-post-card__date i { font-size: 17px; }

.bioseed-post-card__more {
	font-size: 12px;
	font-weight: 600;
	color: #f0a020;
	white-space: nowrap;
	text-transform: none;
}
.bioseed-post-card__more:hover { color: #d4881a; }

@media (max-width: 849px) {
	.bioseed-post-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
	.bioseed-post-card__title { font-size: 15px; }
}

@media (max-width: 549px) {
	.bioseed-post-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Luoi bai viet dung boi shortcode [bioseed_posts]: cho phep tuy chinh so cot
   o man hinh rong, man hinh nho van xep chong theo cac media query o tren
   (khong ghi de o day de giu dung bo cuc responsive cua trang luu tru). */
@media (min-width: 850px) {
	.bioseed-post-grid[data-columns="1"] { grid-template-columns: 1fr; }
	.bioseed-post-grid[data-columns="2"] { grid-template-columns: repeat(2, 1fr); }
	.bioseed-post-grid[data-columns="4"] { grid-template-columns: repeat(4, 1fr); }
	.bioseed-post-grid[data-columns="5"] { grid-template-columns: repeat(5, 1fr); }
	.bioseed-post-grid[data-columns="6"] { grid-template-columns: repeat(6, 1fr); }
}

/* format="list" cua shortcode: anh vuong nho ben trai, chu ben phai — dung cho
   sidebar hep. Cac quy tac o day co chu y dat SAU cac media query o tren: cung
   do dac hieu thi luat dung sau thang, nen danh sach doc giu nguyen mot cot o
   moi be ngang man hinh thay vi bi luoi cua trang luu tru ep thanh 2 cot. */
.bioseed-post-grid--list {
	grid-template-columns: 1fr;
	gap: 0;
	margin-bottom: 20px;
}

.bioseed-post-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 0; /* xem ghi chu o .bioseed-post-card */
	padding: 14px 0;
	border-bottom: 1px solid #f0f2f4;
}
.bioseed-post-item:first-child { padding-top: 0; }
.bioseed-post-item:last-child { padding-bottom: 0; border-bottom: 0; }

.bioseed-post-item__media {
	flex: 0 0 84px;
	width: 84px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 6px;
	background: #f2f4f6;
}
.bioseed-post-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.bioseed-post-item:hover .bioseed-post-item__media img { transform: scale(1.04); }
.bioseed-post-item__placeholder { display: block; width: 100%; height: 100%; }

/* min-width: 0 la bat buoc — mac dinh phan tu flex khong co ngan hon noi dung,
   tieu de dai se lam tran ca cot thay vi xuong dong. */
.bioseed-post-item__body { min-width: 0; }

.bioseed-post-item__title {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: none;
}
.bioseed-post-item__title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #14304f;
	text-transform: none;
}
.bioseed-post-item__title a:hover { color: #1e7145; }

.bioseed-post-item__date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #7b8794;
	text-transform: none;
}
.bioseed-post-item__date i { font-size: 14px; }

/* Danh sach doc van dat nhieu cot duoc neu co dat col, nhung chi tren man hinh
   rong — trong sidebar thi col=1 la thuong dung. */
@media (min-width: 850px) {
	.bioseed-post-grid--list[data-columns="2"] { grid-template-columns: repeat(2, 1fr); column-gap: 30px; }
	.bioseed-post-grid--list[data-columns="3"] { grid-template-columns: repeat(3, 1fr); column-gap: 30px; }
	.bioseed-post-grid--list[data-columns="4"] { grid-template-columns: repeat(4, 1fr); column-gap: 30px; }
	.bioseed-post-grid--list[data-columns="5"] { grid-template-columns: repeat(5, 1fr); column-gap: 30px; }
	.bioseed-post-grid--list[data-columns="6"] { grid-template-columns: repeat(6, 1fr); column-gap: 30px; }
}

.bioseed-post-grid-empty {
	color: #7b8794;
	font-size: 14px;
}

/* Phan trang: o vuong bo goc thay cho hinh tron mac dinh cua Flatsome.
   Do specificity phai cao hon .nav-pagination>li>a cua flatsome.css (khong dung !important). */
.bioseed-pagination {
	margin-top: 10px;
}
.bioseed-pagination .nav-pagination {
	margin: 0;
	padding: 0;
	list-style: none;
}
.bioseed-pagination .nav-pagination > li > a,
.bioseed-pagination .nav-pagination > li > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25em;
	height: 2.25em;
	min-width: 2.25em;
	padding: 0 7px;
	border: 1px solid #dfe3e6;
	border-radius: 6px;
	background-color: #f7f9fa;
	color: #33475b;
	font-size: 1.1em;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}
.bioseed-pagination .nav-pagination > li > a:hover,
.bioseed-pagination .nav-pagination > li > span:hover {
	border-color: #1e7145;
	background-color: #eaf3ee;
	color: #1e7145;
}
.bioseed-pagination .nav-pagination > li > .current {
	border-color: #1e7145;
	background-color: #1e7145;
	color: #fff;
}
