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

.module-topics__header.section-header {
	padding-left: 0;
}

.module-topics__header.section-header::before {
	display: none;
}

.module-topics__list {
	margin-top: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.75rem;
}

@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;
		gap: 0.75rem;
	}

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

.module-topics__card {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 26px;
	border: 1px solid rgba(59, 130, 246, 0.22);
	background: #fff;
	box-shadow: none;
	padding: 2.25rem 1.25rem;
	text-align: center;
	transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

@media (max-width: 767px) {
	.module-topics__card {
		flex: 0 0 auto;
		width: 240px;
		max-width: none;
		scroll-snap-align: start;
	}
}

.module-topics__card:hover {
	transform: translateY(-2px);
	border-color: rgba(59, 130, 246, 0.35);
	background-color: rgba(59, 130, 246, 0.02);
}

.module-topics__card-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(59, 130, 246, 0.06);
	display: grid;
	place-items: center;
}

.module-topics__card-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
}

.module-topics__card-title {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.25;
	color: rgba(0, 0, 0, 0.92);
}

.module-topics__card-subtitle {
	font-size: 0.8125rem;
	line-height: 1.25;
	color: rgba(0, 0, 0, 0.6);
}

.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;
}

@media (max-width: 1024px) and (min-width: 768px) {
	.module-topics__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
