.post-list-3bffd395-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.post-list-3bffd395-item {
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 30px;
	align-items: flex-start;
}
.pl-image-col {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}
.pl-image-col img, .pl-placeholder {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16/10;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.pl-placeholder {
	background-color: #eee;
}
.pl-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}
.pl-badge {
	background: #39C0E6;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
}
.pl-share-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.pl-image-col:hover .pl-share-overlay {
	opacity: 1;
}
.pl-image-col:hover img {
	transform: scale(1.05);
}
.pl-share-icons {
	display: flex;
	gap: 15px;
}
.pl-share-icons a {
	color: #fff;
	background: rgba(255,255,255,0.2);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.3s, transform 0.3s;
}
.pl-share-icons a:hover {
	background: #39C0E6;
	transform: translateY(-3px);
}
.pl-content-col {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.pl-title {
	margin: 0;
	font-size: 22px;
	line-height: 1.3;
}
.pl-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}
.pl-title a:hover {
	color: #39C0E6;
}
.pl-meta {
	display: flex;
	gap: 15px;
	color: #888;
	font-size: 13px;
	align-items: center;
}
.pl-meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
}
.pl-meta svg {
	fill: #888;
}
.pl-excerpt {
	color: #666;
	font-size: 15px;
	line-height: 1.6;
}
.pl-read-more {
	display: inline-block;
	align-self: flex-start;
	padding: 10px 20px;
	border: 1px solid #ddd;
	color: #333;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
	background: transparent;
}
.pl-read-more:hover {
	background: #f9f9f9;
}
.pl-pagination {
	display: flex;
	justify-content: flex-start;
	gap: 8px;
	margin-top: 40px;
}
.pl-pagination a, .pl-pagination span.current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}
.pl-pagination span.current {
	background: #39C0E6;
	color: #fff;
	border-color: #39C0E6;
}
.pl-pagination a:hover {
	background: #39C0E6;
	color: #fff;
	border-color: #39C0E6;
}
@media (max-width: 767px) {
	.post-list-3bffd395-item {
		grid-template-columns: 1fr !important;
	}
}
