.forum-container {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 24px 60px;
}

.forum-title {
	font-size: 32px;
	font-family: 'ChooseSpaces', sans-serif;
	font-weight: normal;
	font-style: italic;
	color: #fff;
	margin-bottom: 4px;
}

.forum-subtitle {
	font-size: 14px;
	color: #8491AF;
	font-family: 'Inter', sans-serif;
	margin-bottom: 28px;
}

.forum-toolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.search-bar {
	flex: 1;
	background-color: #161C2D;
	border: 1px solid #252C40;
	border-radius: 8px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.search-bar .slash {
	color: #3A4260;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
}

.search-bar input {
	background: none;
	border: none;
	outline: none;
	color: #e0e0e0;
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	width: 100%;
}

.search-bar input::placeholder {
	color: #3A4260;
}

.forum-filters {
	display: flex;
	gap: 8px;
}

.filter-btn {
	background-color: #161C2D;
	border: 1px solid #252C40;
	border-radius: 8px;
	padding: 9px 18px;
	color: #8491AF;
	font-size: 13px;
	font-family: 'ChooseSpaces', sans-serif;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: background-color 0.15s, color 0.15s;
}

.filter-btn.active {
	background-color: #5380FF;
	border-color: #5380FF;
	color: #fff;
}

.filter-btn:hover:not(.active) {
	color: #fff;
}

.btn-new-post {
	background-color: #5380FF;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	color: #fff;
	font-size: 13px;
	font-family: 'ChooseSpaces', sans-serif;
	letter-spacing: 0.05em;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
}

.post-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.post-card {
	display: block;
	text-decoration: none;
	background-color: #161C2D;
	border: 1px solid #252C40;
	border-left: 3px solid #5380FF;
	border-radius: 8px;
	padding: 18px 24px 14px;
	cursor: pointer;
	transition: border-color 0.15s, background-color 0.15s;
}

.post-card:hover {
	background-color: #1a2035;
	border-color: #5380FF;
	border-left-color: #5380FF;
}

.post-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 4px;
}

.post-title {
	font-size: 16px;
	font-family: sans-serif;
	font-weight: 750;
	color: #f0f0f0;
}

.post-time {
	font-size: 13px;
	color: #3A4260;
	font-family: 'Inter', sans-serif;
	white-space: nowrap;
}

.post-author {
	font-size: 13px;
	color: #8491AF;
	font-family: 'Inter', sans-serif;
	margin-bottom: 14px;
}

.post-footer {
	border-top: 1px solid #252C40;
	padding-top: 10px;
	display: flex;
	gap: 20px;
}

.post-stat {
	font-size: 13px;
	color: #5380FF;
	font-family: 'Inter', sans-serif;
	display: flex;
	align-items: center;
	gap: 5px;
}

.post-stat .label {
	color: #8491AF;
}


@media (max-width: 768px) {
	.forum-toolbar {
		flex-wrap: wrap;
	}

	.search-bar {
		flex: 1 1 100%;
		order: -1;
	}

	.forum-filters {
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.forum-container {
		padding: 28px 16px 48px;
	}

	.forum-title {
		font-size: 26px;
	}

	.btn-new-post {
		width: 100%;
		text-align: center;
	}
}