
.module-topics__header.section-header {
	font-size: 20px;
	font-weight: 600;
	line-height: 26px;
}

.module-topics__list {
	margin-top: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 2rem;
}

@media (max-width: 767px) {
	.module-topics__list {
		margin-top: 1.5rem;
		display: flex;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		column-gap: 0.75rem;
	}

	.module-topics__list::-webkit-scrollbar {
		display: none;
	}
}

.module-topics__item {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 8px;
	overflow: hidden;
	border: none;
}

@media (max-width: 767px) {
	.module-topics__item {
		flex: 0 0 auto;
		width: calc(100vw - 4.5rem);
		max-width: 400px;
		scroll-snap-align: start;
	}
}

/* Thumbnail com categoria sobreposta */
.module-topics__thumbnail {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 28%;
	overflow: hidden;
	border-radius: 8px;
}

.module-topics__thumbnail img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	will-change: transform;
}

.module-topics__item:hover .module-topics__thumbnail img {
	transform: scale(1.05);
}

.module-topics__category-name {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.4rem 0.75rem;
}

.module-topics__excerpt {
	margin-top: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.6;
	color: #3D3D3D;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}
