/*
 * TG Feed — front styles
 * Row-layout: thumb left, body right; mobile stacks vertically.
 * Matches kobuletirealty.com visual language (clean, minimal, blue accents).
 */

.kbtg-feed {
	max-width: 960px;
	margin: 0 auto;
	font-family: inherit;
	color: #1f2937;
	line-height: 1.55;
}

.kbtg-feed.kbtg-empty {
	padding: 24px;
	text-align: center;
	color: #6b7280;
	font-style: italic;
}

.kbtg-post {
	display: flex;
	gap: 24px;
	padding: 24px 0;
	border-bottom: 1px solid #f0f0f1;
}

.kbtg-post:last-child {
	border-bottom: none;
}

/* Thumbnail */
.kbtg-post-thumb {
	flex: 0 0 220px;
	max-width: 220px;
	display: block;
	overflow: hidden;
	border-radius: 8px;
	transition: opacity 0.15s ease;
}

.kbtg-post-thumb:hover {
	opacity: 0.92;
}

.kbtg-post-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
}

/* Body */
.kbtg-post-body {
	flex: 1 1 auto;
	min-width: 0; /* чтобы flex-item не растягивался от длинных слов */
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Title — первая строка поста, выделена как заголовок */
.kbtg-post-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #111827;
}

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

.kbtg-post-title a:hover,
.kbtg-post-title a:focus {
	color: #2563eb;
}

.kbtg-post-text {
	font-size: 15px;
	color: #4b5563;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-wrap: break-word;
	margin: 0;
}

/* Meta line */
.kbtg-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 13px;
	color: #6b7280;
	align-items: center;
}

.kbtg-post-date {
	font-style: normal;
}

.kbtg-post-views {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #6b7280;
}

.kbtg-post-views svg {
	width: 14px;
	height: 14px;
}

/* CTA link */
.kbtg-post-link {
	margin-top: auto;
	align-self: flex-start;
	color: #2563eb;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.15s ease;
}

.kbtg-post-link:hover,
.kbtg-post-link:focus {
	color: #1d4ed8;
	text-decoration: underline;
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
	.kbtg-post {
		flex-direction: column;
		gap: 14px;
		padding: 20px 0;
	}

	.kbtg-post-thumb {
		flex: 0 0 auto;
		max-width: 100%;
	}

	.kbtg-post-thumb img {
		aspect-ratio: 16 / 9;
	}

	.kbtg-post-title {
		font-size: 17px;
	}

	.kbtg-post-text {
		-webkit-line-clamp: 5;
		font-size: 14px;
	}
}

/* Подстраиваемся под темные темы (если у пользователя dark mode на уровне сайта) */
@media (prefers-color-scheme: dark) {
	.kbtg-feed {
		color: #e5e7eb;
	}
	.kbtg-post {
		border-bottom-color: #2a2d31;
	}
	.kbtg-post-text {
		color: #d1d5db;
	}
	.kbtg-post-meta,
	.kbtg-post-views {
		color: #9ca3af;
	}
}
