/* Home — preview compacto do Blog */

.home-blog-section__title {
	margin: 0 0 36px;
	font-size: 32px;
	line-height: 1.25;
	font-weight: 700;
	color: #31404a;
}

.home-blog-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.home-blog-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.home-blog-thumb {
	flex: 0 0 auto;
	display: block;
	width: 100%;
	max-width: 220px;
	overflow: hidden;
	border-radius: 8px;
	line-height: 0;
	transition: opacity 0.25s ease;
}

.home-blog-thumb:hover,
.home-blog-thumb:focus {
	opacity: 0.9;
}

.home-blog-thumb img {
	display: block;
	width: 100%;
	height: 130px;
	object-fit: cover;
	border-radius: 8px;
}

.home-blog-body {
	flex: 1;
	min-width: 0;
}

.home-blog-title {
	margin: 0;
	font-size: 22px;
	line-height: 1.3;
}

.home-blog-title a {
	color: #516ca9;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.25s ease;
}

.home-blog-title a:hover,
.home-blog-title a:focus {
	color: #0f2540;
}

.home-blog-text {
	margin: 10px 0 0;
	font-size: 17px;
	line-height: 1.6;
	color: #48545c;
}

@media (min-width: 768px) {
	.home-blog-item {
		flex-direction: row;
		align-items: flex-start;
		gap: 24px;
	}

	.home-blog-thumb {
		flex: 0 0 168px;
		width: 168px;
		max-width: none;
	}

	.home-blog-thumb img {
		height: 112px;
	}

	.home-blog-section__title {
		font-size: 27px;
	}
}
