#cg-section-browser,
#cg-section-browser * {
	box-sizing: border-box;
}

.cg-section-browser {
	padding-top: 22px;
	padding-bottom: 40px;
	color: #202936;
}

.cg-section-layout {
	display: grid;
	grid-template-columns: 232px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.cg-section-sidebar,
.cg-section-main {
	background: #fff;
	border: 1px solid #dfe5eb;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(32, 41, 54, .06);
}

.cg-section-sidebar {
	position: sticky;
	top: 14px;
	overflow: hidden;
}

.cg-section-sidebar-head {
	padding: 17px 16px 15px;
	border-bottom: 1px solid #e6eaee;
	background: #f7f9fb;
}

.cg-section-sidebar-head strong {
	display: block;
	font-size: 17px;
	line-height: 24px;
	color: #142030;
}

.cg-section-sidebar-head span {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	line-height: 18px;
	color: #748091;
}

.cg-section-nav {
	padding: 8px;
}

.cg-section-nav-group + .cg-section-nav-group {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #edf0f3;
}

.cg-section-nav-group h2 {
	margin: 0;
	padding: 5px 8px;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	color: #7a8491;
}

.cg-section-nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	margin: 2px 0;
	padding: 8px;
	border-left: 3px solid transparent;
	border-radius: 5px;
	color: #344154;
	text-decoration: none;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.cg-section-nav-link:hover {
	background: #f2f6f8;
	color: #17685b;
}

.cg-section-nav-link.is-active {
	border-left-color: #17806f;
	background: #eaf6f2;
	color: #116356;
	font-weight: 700;
}

.cg-section-nav-name {
	min-width: 0;
	overflow: hidden;
	font-size: 14px;
	line-height: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cg-section-nav-count {
	flex: 0 0 auto;
	min-width: 28px;
	margin-left: 8px;
	font-size: 11px;
	line-height: 18px;
	text-align: right;
	color: #8a94a1;
}

.cg-section-main {
	min-width: 0;
	overflow: hidden;
}

.cg-section-main-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	min-height: 132px;
	padding: 24px 26px 22px;
	border-bottom: 1px solid #e4e9ed;
	background: linear-gradient(120deg, #ffffff 0%, #f5f8fa 68%, #edf7f3 100%);
}

.cg-section-heading-copy {
	min-width: 0;
}

.cg-section-breadcrumb {
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 18px;
	color: #87919e;
}

.cg-section-breadcrumb a {
	color: #536174;
	text-decoration: none;
}

.cg-section-main-head h1 {
	margin: 0;
	font-size: 26px;
	font-weight: 750;
	line-height: 34px;
	color: #142030;
}

.cg-section-main-head p {
	max-width: 700px;
	margin: 7px 0 0;
	font-size: 14px;
	line-height: 22px;
	color: #657184;
}

.cg-section-actions {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.cg-section-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 7px 14px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	text-decoration: none;
}

.cg-section-button-primary {
	border-color: #126d60;
	background: #167767;
	color: #fff !important;
}

.cg-section-button-primary:hover {
	background: #105f54;
}

.cg-section-button-muted {
	border-color: #ccd4dc;
	background: #fff;
	color: #344154 !important;
}

.cg-section-button-muted:hover {
	border-color: #9daab7;
	background: #f7f9fb;
}

.cg-section-listbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 45px;
	padding: 10px 26px;
	border-bottom: 1px solid #edf0f3;
	background: #fbfcfd;
	font-size: 12px;
	line-height: 20px;
	color: #7c8794;
}

.cg-section-listbar strong {
	color: #243043;
}

.cg-section-thread {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 132px;
	gap: 18px;
	min-height: 108px;
	padding: 20px 26px;
	border-bottom: 1px solid #edf0f3;
	transition: background-color .18s ease;
}

.cg-section-thread:hover {
	background: #fbfcfd;
}

.cg-section-thread-body {
	min-width: 0;
}

.cg-section-thread-titleline {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.cg-section-thread-titleline h2 {
	min-width: 0;
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 25px;
}

.cg-section-thread-titleline h2 a {
	color: #1c2838;
	text-decoration: none;
}

.cg-section-thread-titleline h2 a:hover {
	color: #126d60;
}

.cg-section-tag {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	height: 20px;
	padding: 0 5px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	line-height: 20px;
}

.cg-section-tag.is-sticky {
	background: #e9f2ff;
	color: #2865a4;
}

.cg-section-tag.is-digest {
	background: #fff3d9;
	color: #9a6300;
}

.cg-section-tag.is-hot {
	background: #fff0ed;
	color: #b44b38;
}

.cg-section-thread-summary {
	margin: 7px 0 0;
	overflow: hidden;
	font-size: 13px;
	line-height: 21px;
	color: #697587;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cg-section-thread-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 10px;
	font-size: 12px;
	line-height: 18px;
	color: #929ba7;
}

.cg-section-thread-meta a {
	color: #607084;
	text-decoration: none;
}

.cg-section-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #b9c0c8;
}

.cg-section-attachment {
	padding-left: 8px;
	border-left: 1px solid #dfe4e9;
	color: #7b6a42;
}

.cg-section-thread-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-content: center;
	gap: 8px;
	text-align: center;
	color: #87919d;
}

.cg-section-thread-stats span {
	display: block;
	font-size: 11px;
	line-height: 18px;
}

.cg-section-thread-stats strong {
	display: block;
	font-size: 15px;
	line-height: 21px;
	color: #344154;
}

.cg-section-empty {
	padding: 58px 24px;
	text-align: center;
	color: #7a8593;
}

.cg-section-empty strong {
	display: block;
	font-size: 18px;
	line-height: 26px;
	color: #334054;
}

.cg-section-empty p {
	margin: 8px 0 18px;
	font-size: 14px;
	line-height: 22px;
}

.cg-section-empty-page {
	min-height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cg-section-pagination {
	padding: 18px 26px;
	background: #fbfcfd;
}

.cg-section-pagination .pg {
	float: none;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.cg-section-mobile-switch {
	display: none;
}

@media (max-width: 800px) {
	.cg-section-browser {
		padding: 12px 10px 26px;
	}

	.cg-section-mobile-switch {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		align-items: center;
		gap: 10px;
		margin-bottom: 10px;
		padding: 10px 12px;
		border: 1px solid #dfe5eb;
		border-radius: 7px;
		background: #fff;
	}

	.cg-section-mobile-switch label {
		font-size: 13px;
		font-weight: 700;
		color: #344154;
	}

	.cg-section-mobile-switch select {
		width: 100%;
		height: 36px;
		padding: 0 8px;
		border: 1px solid #cbd4dc;
		border-radius: 5px;
		background: #fff;
		color: #283648;
		font-size: 14px;
	}

	.cg-section-layout {
		display: block;
	}

	.cg-section-sidebar {
		display: none;
	}

	.cg-section-main {
		border-radius: 7px;
	}

	.cg-section-main-head {
		display: block;
		min-height: 0;
		padding: 18px 16px;
	}

	.cg-section-main-head h1 {
		font-size: 21px;
		line-height: 29px;
	}

	.cg-section-main-head p {
		font-size: 13px;
		line-height: 20px;
	}

	.cg-section-actions {
		margin-top: 15px;
	}

	.cg-section-button {
		flex: 1 1 0;
	}

	.cg-section-listbar {
		padding: 9px 16px;
	}

	.cg-section-thread {
		display: block;
		min-height: 0;
		padding: 17px 16px;
	}

	.cg-section-thread-titleline {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.cg-section-thread-titleline h2 {
		flex-basis: 100%;
		font-size: 16px;
		line-height: 24px;
	}

	.cg-section-thread-summary {
		display: -webkit-box;
		white-space: normal;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.cg-section-thread-stats {
		display: flex;
		gap: 18px;
		margin-top: 10px;
		text-align: left;
	}

	.cg-section-thread-stats span,
	.cg-section-thread-stats strong {
		display: inline;
	}

	.cg-section-thread-stats strong {
		margin-right: 3px;
		font-size: 12px;
	}

	.cg-section-pagination {
		padding: 14px 16px;
	}
}

.cg-section-group-tabs {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	padding: 6px;
	border: 1px solid #dfe5eb;
	border-radius: 8px;
	background: #fff;
	overflow-x: auto;
}

.cg-section-group-tabs a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	min-height: 36px;
	padding: 7px 12px;
	border-radius: 5px;
	color: #445164;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	text-decoration: none;
}

.cg-section-group-tabs a:hover {
	background: #f1f5f6;
	color: #126d60;
}

.cg-section-group-tabs a.is-active {
	background: #176f62;
	color: #fff;
}

.cg-section-group-tabs a span {
	font-size: 11px;
	font-weight: 500;
	opacity: .72;
}

.cg-section-nav-all {
	margin-bottom: 8px;
	border: 1px solid #dce8e4;
}

.cg-section-eyebrow {
	margin-bottom: 3px;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	color: #17806f;
}

.cg-section-overview {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid #e8ecef;
	background: #fbfcfd;
}

.cg-section-overview div {
	padding: 14px 18px;
	border-right: 1px solid #e8ecef;
}

.cg-section-overview div:last-child {
	border-right: 0;
}

.cg-section-overview strong,
.cg-section-overview span {
	display: block;
}

.cg-section-overview strong {
	font-size: 18px;
	line-height: 24px;
	color: #243043;
}

.cg-section-overview span {
	font-size: 11px;
	line-height: 18px;
	color: #88929f;
}

.cg-section-board-label {
	font-weight: 700;
	color: #176f62 !important;
}

@media (max-width: 800px) {
	.cg-section-group-tabs {
		display: none;
	}

	.cg-section-overview {
		grid-template-columns: repeat(4, minmax(64px, 1fr));
		overflow-x: auto;
	}

	.cg-section-overview div {
		padding: 11px 12px;
	}

	.cg-section-overview strong {
		font-size: 15px;
		line-height: 21px;
	}
}