/**
 * Left Thumbnails style for WebberZone Followed Posts.
 *
 * @package WebberZone\WFP
 * @since 3.2.0
 */

.wherego-left-thumbs {
	margin: 15px 0;
}

.wherego-left-thumbs .wherego_post {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding: 10px;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	background: #fff;
	transition: all 0.3s ease;
}

.wherego-left-thumbs .wherego_post:hover {
	border-color: #ccc;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
}

.wherego-left-thumbs .wherego_thumb {
	flex: 0 0 80px;
	margin-right: 15px;
}

.wherego-left-thumbs .wherego_thumb img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid #ddd;
}

.wherego-left-thumbs .wherego_content {
	flex: 1;
	min-width: 0;
}

.wherego-left-thumbs .wherego_title {
	margin: 0 0 5px 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.wherego-left-thumbs .wherego_title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.wherego-left-thumbs .wherego_title a:hover {
	color: #0073aa;
}

.wherego-left-thumbs .wherego_excerpt {
	margin: 5px 0;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}

.wherego-left-thumbs .wherego_meta {
	margin: 5px 0 0 0;
	font-size: 12px;
	color: #999;
}

.wherego-left-thumbs .wherego_meta a {
	color: #999;
	text-decoration: none;
}

.wherego-left-thumbs .wherego_meta a:hover {
	color: #666;
}

.wherego-left-thumbs .wherego_stats {
	margin-left: 10px;
	padding: 2px 6px;
	background: #f0f0f0;
	border-radius: 3px;
	font-size: 11px;
	color: #666;
}

/* Responsive design */
@media screen and (max-width: 768px) {
	.wherego-left-thumbs .wherego_post {
		flex-direction: column;
		text-align: center;
	}

	.wherego-left-thumbs .wherego_thumb {
		flex: none;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.wherego-left-thumbs .wherego_thumb img {
		width: 120px;
		height: 120px;
	}
}

@media screen and (max-width: 480px) {
	.wherego-left-thumbs .wherego_thumb img {
		width: 100px;
		height: 100px;
	}

	.wherego-left-thumbs .wherego_title {
		font-size: 15px;
	}

	.wherego-left-thumbs .wherego_excerpt {
		font-size: 13px;
	}
}
