#catalogue-list-section {
	background: var(--white);
	padding: 72px 0 96px;
}

.cl-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}

.cl-head .cl-intro {
	margin-top: 14px;
	font-size: 13.5px;
	color: var(--gray);
	max-width: 480px;
	line-height: 1.8;
}

.cl-count {
	font-size: 12px;
	color: var(--gray);
	letter-spacing: .5px;
	white-space: nowrap;
}

.cl-count b {
	color: var(--navy);
}

.cl-list {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border);
}

.cl-row {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 22px 28px;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	transition: background .2s;
}

.cl-list .cl-row:last-child {
	border-bottom: none;
}

.cl-row:hover {
	background: var(--blue-pale);
}

.cl-icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cl-icon svg {
	width: 100%;
	height: 100%;
}

.cl-icon-wrap {
	position: relative;
	flex-shrink: 0;
}

.cl-index {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--navy);
	color: #fff;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 10px;
	font-weight: 700;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cl-body {
	flex: 1;
	min-width: 0;
}

.cl-cat {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 4px;
}

.cl-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--navy);
	letter-spacing: .3px;
	margin-bottom: 4px;
	line-height: 1.3;
}

.cl-desc {
	font-size: 12.5px;
	color: var(--gray);
	line-height: 1.6;
}

.cl-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid var(--navy);
	color: var(--navy);
	padding: 11px 24px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	flex-shrink: 0;
	transition: background .25s, color .25s, border-color .25s;
	white-space: nowrap;
}

.cl-btn svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.cl-btn:hover {
	background: var(--navy);
	color: #fff;
	text-decoration: none;
}

.cl-footnote {
	margin-top: 28px;
	font-size: 12px;
	color: var(--gray-light);
	text-align: center;
}

.cl-footnote a {
	color: var(--blue);
	font-weight: 600;
	text-decoration: none;
}

.cl-footnote a:hover {
	color: var(--navy);
}

.cl-empty {
	color: var(--gray);
	text-align: center;
	padding: 40px 0;
	border: 1px solid var(--border);
}

@media (max-width: 900px) {
	.cl-row {
		padding: 18px 20px;
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.cl-row {
		flex-wrap: wrap;
	}

	.cl-icon-wrap {
		width: 44px;
	}

	.cl-icon {
		width: 44px;
		height: 44px;
	}

	.cl-body {
		flex-basis: calc(100% - 68px);
	}

	.cl-btn {
		margin-left: auto;
		margin-top: 4px;
	}
}
