.layout-container {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 40px;
	flex-shrink: 0;
}

.category-grouplist {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0;
	margin-bottom: 40px;
}
.category-grouplist .more {
	cursor: pointer;
}
.category-grouplist .category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
}

.category-grouplist .content {
	width: 100%;
	text-align: justify;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.category-grouplist .content .item {
	display: inline-block;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: var(--neutral-colors-gray-800);
	text-align: center;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/B3 SM */
	font-family: Prompt;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 40px;
	width: 175px;
	height: 188px;
	vertical-align: top;
}

.category-grouplist .content .item .image {
	width: 160px;
	height: 160px;
	border-radius: 8px;
	border: 1px solid var(--neutral-colors-gray-400, #E0E0E3);
	overflow: hidden;
	margin-bottom: 10px;
}

.category-grouplist .content .item .image img {
	width: 100%;
	height: 100%;
}

.category-grouplist .content .item:hover .image {
	border: 1px solid var(--primary-color-deep-blue-600);
}
.panel-less {
	overflow: hidden;
	height: 190px;
}

.seo-readmore {
	width: 100%;
	text-align: center;
	padding: 30px;
}