#tnp-navigation {
	margin: 30px 0;
}

.tnp-container {
	display: flex;
	gap: 40px;
}

/* Left Panel */
.tnp-left {
	flex: 0 0 35%;
}

.tnp-left h2 {
	margin: 0 0 30px 0;
	font-size: 32px;
	color: #000;
	font-weight: 600;
}

#tnp-left-content {
	font-size: 18px;
	line-height: 1.8;
	color: #000;
}

#tnp-left-content p {
	margin: 15px 0;
}

/* Right Panel */
.tnp-right {
	flex: 1;
}

/* Categories Grid - 3 columns */
#tnp-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.tnp-category-card {
	padding: 30px;
	background: #1aa39e;
	color: #fff;
	border: 1px solid #1aa39e;
	border-radius: 8px 8px 8px 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	font-weight: 600;
	min-height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
	font-size: 16px;
}

.tnp-category-card:hover {
	background: #fff;
	color: #1aa39e;
	border-color: #1aa39e;
}

/* Hashtags Section */
#tnp-hashtags {
	margin-bottom: 40px;
	display: none;
}

#tnp-hashtags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 20px;
}

.tnp-hashtag-item {
	padding: 12px 24px;
	background: #1aa39e;
	color: #fff;
	border: 1px solid #1aa39e;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 15px;
	white-space: nowrap;
	font-weight: 500;
}

.tnp-hashtag-item:hover {
	background: #fff;
	color: #1aa39e;
	border-color: #1aa39e;
}

/* Articles Section */
#tnp-articles {
	display: none;
	margin-top: 40px;
}

#tnp-articles-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tnp-article-item {
	padding: 18px 0;
	border-bottom: 1px solid #eee;
}

.tnp-article-item:last-child {
	border-bottom: none;
}

.tnp-article-link {
	color: #000;
	text-decoration: none;
	font-size: 17px;
	line-height: 1.8;
	transition: text-decoration 0.2s ease;
	font-weight: normal;
}

.tnp-article-link:hover {
	text-decoration: underline;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.tnp-container {
		flex-direction: column;
		gap: 30px;
	}

	.tnp-left {
		flex: 1;
	}

	.tnp-right {
		flex: 1;
	}

	#tnp-categories {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.tnp-left h2 {
		font-size: 28px;
		margin-bottom: 25px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.tnp-container {
		gap: 20px;
	}

	#tnp-categories {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	#tnp-hashtags-list {
		justify-content: flex-start;
	}

	.tnp-left h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.tnp-category-card {
		padding: 25px;
		font-size: 15px;
		min-height: 110px;
	}

	#tnp-left-content {
		font-size: 16px;
	}
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
	.tnp-container {
		gap: 15px;
	}

	#tnp-categories {
		gap: 12px;
	}

	.tnp-category-card {
		padding: 20px;
		font-size: 14px;
		min-height: 100px;
	}

	#tnp-hashtags-list {
		gap: 10px;
		justify-content: flex-start;
	}

	.tnp-hashtag-item {
		padding: 10px 18px;
		font-size: 13px;
	}

	.tnp-left h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	#tnp-left-content {
		font-size: 15px;
		line-height: 1.6;
	}

	.tnp-article-link {
		font-size: 15px;
	}
}
