/**
 * Text Only style for WebberZone Followed Posts.
 *
 * @package WebberZone\WFP
 * @since 3.2.0
 */

.wherego-text-only {
	margin: 15px 0;
}

.wherego-text-only .wherego_post {
	margin-bottom: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	transition: all 0.3s ease;
}

.wherego-text-only .wherego_post:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.wherego-text-only .wherego_post:hover {
	background: #f9f9f9;
	padding-right: 10px;
}

.wherego-text-only .wherego_title {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

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

.wherego-text-only .wherego_title a:hover {
	color: #0073aa;
}

.wherego-text-only .wherego_excerpt {
	margin: 4px 0;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}

.wherego-text-only .wherego_meta {
	margin: 6px 0 0 0;
	font-size: 12px;
	color: #999;
}

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

.wherego-text-only .wherego_meta a:hover {
	color: #666;
}

.wherego-text-only .wherego_stats {
	margin-right: 8px;
	padding: 1px 5px;
	background: #f5f5f5;
	border-radius: 2px;
	font-size: 11px;
	color: #777;
}

/* Numbered list variant */
.wherego-text-only.wherego-numbered {
	counter-reset: wherego-counter;
}

.wherego-text-only.wherego-numbered .wherego_post {
	position: relative;
	padding-right: 30px;
}

.wherego-text-only.wherego-numbered .wherego_post::before {
	counter-increment: wherego-counter;
	content: counter(wherego-counter);
	position: absolute;
	right: 0;
	top: 8px;
	width: 20px;
	height: 20px;
	background: #0073aa;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 20px;
	font-size: 11px;
	font-weight: bold;
}

.wherego-text-only.wherego-numbered .wherego_post:hover {
	padding-right: 35px;
}

/* Compact variant */
.wherego-text-only.wherego-compact .wherego_post {
	padding: 4px 0;
	margin-bottom: 6px;
}

.wherego-text-only.wherego-compact .wherego_title {
	font-size: 15px;
	margin-bottom: 2px;
}

.wherego-text-only.wherego-compact .wherego_excerpt {
	display: none;
}

.wherego-text-only.wherego-compact .wherego_meta {
	margin-top: 2px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
	.wherego-text-only .wherego_title {
		font-size: 15px;
	}

	.wherego-text-only .wherego_excerpt {
		font-size: 13px;
	}
}

@media screen and (max-width: 480px) {
	.wherego-text-only .wherego_title {
		font-size: 14px;
	}

	.wherego-text-only .wherego_excerpt {
		font-size: 12px;
	}

	.wherego-text-only.wherego-numbered .wherego_post {
		padding-right: 25px;
	}

	.wherego-text-only.wherego-numbered .wherego_post::before {
		width: 18px;
		height: 18px;
		line-height: 18px;
		font-size: 10px;
	}
}
