.changelog-module {
	--card-bg: #fff;
}
:root.theme-dark .changelog-module {
	--card-bg: #37364D;
	--theme-sidebar-hover-color: #1C1B29
}

.changelog-module {
	padding: 1.5rem
}
.changelog {
	display: grid;
	gap: 15px;
	margin-top: 1.5rem
}
.changelog-card {
	position: relative;
	border-radius: 5px;
	background: var(--card-bg);
	box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.10);
	padding: 40px 20px 30px 20px;
	font-size: 13px;
	font-weight: 400;
	line-height: 130%;
}

.changelog-card h6,.caught-up h6 {
	color:     color: var(--theme-headings-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 130%;
	margin-bottom: 10px;
}

.changelog-card .description {
	margin-bottom: 30px;
}

.changelog-card .card-description *:not(:last-child) {
	margin-bottom: 15px;
}

.avatar-image {
	width: 36px;
	height: 36px;
	border-radius: 36px;
	overflow: hidden;
}
.category-items {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pill {
	background: var(--theme-accent);
	color: #fff;
	padding: 10px;
	border-radius: 30px;
	font-size: 11px;
	line-height: 0;
}

.pill-cat {
	background: var(--theme-sidebar-hover-color);
	color: var(--theme-sidebar-color);
}

.avatar {
	font-size: 12px;
	font-weight: 400;
	gap: 10px;
	margin-top: 30px;
	display: flex;
	align-items: center;
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avatar-info :first-child {
	font-size: 12px;
	font-weight: 600;
}



.module-category .nav-link {
	position: relative;
}

.form-group {
	display: inline-block;
	margin-top: 18px;
	margin-right: 15px;
	margin-bottom: 0 !important;
}

.module-search {
	margin-top: 18px;
	width: 100%;
	padding: 15px
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
	position: absolute;
	left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
	position: relative;
	padding-left: 28px;
	cursor: pointer;
	line-height: 20px;
	display: inline-block;
	color: #666;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	background: var(--theme-sidebar-active-color)
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--theme-accent);
	position: absolute;
	top: 5px;
	left: 5px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}

[type="radio"]:checked+label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media (min-width: 50em) {
	.module-category .depth2 {
		grid-template-columns: 1fr 1fr;
	}

}