:root {
	--primary-color: #c41a1a;
	--primary-dark: #a01515;
	--primary-light: #d93636;
	--secondary-color: #1e5799;
	--accent-color: #f5a623;
	--text-dark: #333333;
	--text-light: #666666;
	--text-muted: #999999;
	--bg-light: #f5f5f5;
	--bg-white: #ffffff;
	--border-color: #e5e5e5;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
	--shadow-md: 0 2px 10px rgba(0,0,0,0.1);
	--shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
	--border-radius: 4px;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
	width: 100%;
}

body {
	font-family: "Microsoft YaHei", "SimHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: var(--bg-light);
	color: var(--text-dark);
	line-height: 1.8;
	min-height: 100vh;
}

a {
	color: var(--text-dark);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-color);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.top-bar {
	background: var(--primary-color);
	color: #fff;
	font-size: 13px;
	padding: 6px 0;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-left {
	display: flex;
	align-items: center;
}

.site-welcome {
	color: rgba(255,255,255,0.9);
}

.top-bar-right {
	display: flex;
	gap: 15px;
}

.top-bar-right a {
	color: rgba(255,255,255,0.9);
	font-size: 13px;
}

.top-bar-right a:hover {
	color: #fff;
}

.top-bar-right a i {
	margin-right: 4px;
}

.site-header {
	background: #fff;
	box-shadow: var(--shadow-md);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo a {
	display: flex;
	align-items: center;
}

.logo-text {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: 2px;
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 10px;
	cursor: pointer;
}

.mobile-menu-toggle .icon-bar {
	display: block;
	width: 24px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
	margin: 5px 0;
	transition: var(--transition);
}

.main-nav ul {
	list-style: none;
	display: flex;
	gap: 5px;
}

.main-nav a {
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-dark);
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.main-nav li.active a,
.main-nav a:hover {
	background: var(--primary-color);
	color: #fff;
}

.header-search {
	display: flex;
	align-items: center;
}

.header-search form {
	display: flex;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.header-search input {
	padding: 8px 12px;
	border: none;
	outline: none;
	font-size: 14px;
	width: 180px;
}

.header-search button {
	padding: 8px 15px;
	background: var(--primary-color);
	border: none;
	color: #fff;
	cursor: pointer;
	transition: var(--transition);
}

.header-search button:hover {
	background: var(--primary-dark);
}

.breadcrumb {
	background: #fff;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 14px;
	color: var(--text-muted);
}

.breadcrumb a {
	color: var(--text-light);
}

.breadcrumb a:hover {
	color: var(--primary-color);
}

.breadcrumb .separator {
	margin: 0 8px;
	color: var(--text-muted);
}

.main-content {
	padding: 20px 0;
}

.content-wrapper {
	display: flex;
	gap: 20px;
}

.content-wrapper.no-sidebar {
	display: block;
}

.content-wrapper.no-sidebar .content-main {
	width: 100%;
	max-width: 100%;
}

.content-main {
	flex: 1;
	min-width: 0;
}

.content-sidebar {
	width: 300px;
	flex-shrink: 0;
}

.news-section {
	background: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	margin-bottom: 20px;
	overflow: hidden;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 2px solid var(--primary-color);
	background: linear-gradient(to right, #fff5f5, #fff);
}

.section-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.title-icon {
	width: 28px;
	height: 28px;
	background: var(--primary-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	font-size: 14px;
}

.more-link {
	font-size: 14px;
	color: var(--text-muted);
}

.more-link:hover {
	color: var(--primary-color);
}

.section-desc {
	padding: 10px 20px;
	color: var(--text-light);
	font-size: 14px;
	background: #fafafa;
	border-bottom: 1px solid var(--border-color);
}

.news-list-main {
	padding: 15px 20px;
	display: flex;
	gap: 20px;
}

.news-featured {
	width: 280px;
	flex-shrink: 0;
}

.news-featured a {
	display: block;
}

.featured-image {
	width: 100%;
	height: 180px;
	overflow: hidden;
	border-radius: var(--border-radius);
	margin-bottom: 10px;
}

.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.news-featured:hover .featured-image img {
	transform: scale(1.05);
}

.featured-info h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 5px;
}

.news-featured:hover .featured-info h3 {
	color: var(--primary-color);
}

.featured-date {
	font-size: 13px;
	color: var(--text-muted);
}

.news-list {
	flex: 1;
	list-style: none;
	padding: 15px 20px;
	margin: 0;
}

.news-list-main .news-list {
	padding: 15px 20px;
}

.news-list li {
	padding: 10px 0;
	border-bottom: 1px dashed var(--border-color);
}

.news-list li:last-child {
	border-bottom: none;
}

.news-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news-list .news-title {
	flex: 1;
	font-size: 15px;
	color: var(--text-dark);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 15px;
}

.news-list li a:hover .news-title {
	color: var(--primary-color);
}

.news-list .news-date {
	font-size: 13px;
	color: var(--text-muted);
	flex-shrink: 0;
}

.news-list.list-page {
	padding: 0;
}

.news-list.list-page .news-item {
	padding: 0;
	border-bottom: 1px solid var(--border-color);
}

.news-list.list-page .news-item:last-child {
	border-bottom: none;
}

.news-list.list-page .news-item a {
	display: flex;
	padding: 15px 20px;
	gap: 15px;
}

.news-thumb {
	width: 160px;
	height: 100px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: var(--border-radius);
}

.news-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.news-item:hover .news-thumb img {
	transform: scale(1.05);
}

.news-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news-content .news-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
	white-space: normal;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	padding-right: 0;
}

.news-item:hover .news-content .news-title {
	color: var(--primary-color);
}

.news-excerpt {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-meta {
	display: flex;
	gap: 15px;
	font-size: 13px;
	color: var(--text-muted);
}

.news-meta i {
	margin-right: 4px;
}

.special-topics {
	padding: 15px 20px;
}

.topics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.topic-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 15px;
	background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 14px;
	color: var(--text-dark);
	transition: var(--transition);
}

.topic-item:hover {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}

.topic-item i {
	font-size: 16px;
	color: var(--primary-color);
}

.topic-item:hover i {
	color: #fff;
}

.sidebar-widget {
	background: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	margin-bottom: 20px;
	overflow: hidden;
}

.widget-header {
	padding: 12px 15px;
	background: var(--primary-color);
	color: #fff;
}

.widget-header h3 {
	font-size: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.widget-body {
	padding: 15px;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-form input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 14px;
	outline: none;
}

.search-form input:focus {
	border-color: var(--primary-color);
}

.search-form button {
	padding: 8px 18px;
	background: var(--primary-color);
	border: none;
	border-radius: var(--border-radius);
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	transition: var(--transition);
}

.search-form button:hover {
	background: var(--primary-dark);
}

.hot-list {
	list-style: none;
}

.hot-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--border-color);
}

.hot-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.hot-num {
	width: 20px;
	height: 20px;
	background: var(--bg-light);
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	flex-shrink: 0;
}

.hot-num.top {
	background: var(--primary-color);
	color: #fff;
}

.hot-list li a {
	flex: 1;
	font-size: 14px;
	color: var(--text-dark);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hot-list li a:hover {
	color: var(--primary-color);
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-cloud a {
	padding: 5px 12px;
	background: var(--bg-light);
	border-radius: 15px;
	font-size: 13px;
	color: var(--text-light);
	transition: var(--transition);
}

.tag-cloud a:hover {
	background: var(--primary-color);
	color: #fff;
}

.article-detail {
	background: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.article-header {
	padding: 25px 30px;
	border-bottom: 1px solid var(--border-color);
	text-align: center;
}

.article-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 15px;
}

.article-meta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
	color: var(--text-muted);
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
}

.meta-item i {
	color: var(--primary-color);
}

.meta-item a {
	color: var(--text-muted);
}

.meta-item a:hover {
	color: var(--primary-color);
}

.article-summary {
	padding: 20px 30px;
	background: #fafafa;
	border-bottom: 1px solid var(--border-color);
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.8;
}

.article-summary strong {
	color: var(--text-dark);
}

.article-content {
	padding: 30px;
	font-size: 16px;
	line-height: 2;
	color: var(--text-dark);
}

.article-content p {
	margin-bottom: 15px;
	text-indent: 2em;
}

.article-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 20px auto;
	border-radius: var(--border-radius);
}

.article-content h2,
.article-content h3 {
	margin: 25px 0 15px;
	padding-left: 10px;
	border-left: 4px solid var(--primary-color);
}

.article-content ul,
.article-content ol {
	margin: 15px 0;
	padding-left: 2em;
}

.article-content li {
	margin-bottom: 8px;
}

.article-content a {
	color: var(--secondary-color);
	text-decoration: underline;
}

.article-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.article-content th,
.article-content td {
	border: 1px solid var(--border-color);
	padding: 10px 15px;
	text-align: left;
}

.article-content th {
	background: var(--bg-light);
	font-weight: 600;
}

.article-tags {
	padding: 20px 30px;
	border-top: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

.article-download {
	padding: 25px 30px;
	border-top: 1px solid var(--border-color);
	background: #fafafa;
}

.article-download .download-header {
	margin-bottom: 15px;
	padding-left: 5px;
}

.article-download .download-header h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.article-download .download-header h3 i {
	color: var(--primary-color);
}

.download-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-left: 5px;
}

.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: var(--primary-color);
	color: #fff;
	border-radius: var(--border-radius);
	font-size: 14px;
	transition: var(--transition);
}

.download-btn:hover {
	background: var(--primary-dark);
	color: #fff;
}

.download-btn i {
	font-size: 12px;
}

.tags-label {
	font-size: 14px;
	color: var(--text-muted);
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tags-list a {
	padding: 5px 15px;
	background: var(--bg-light);
	border-radius: 15px;
	font-size: 13px;
	color: var(--text-light);
	transition: var(--transition);
}

.tags-list a:hover {
	background: var(--primary-color);
	color: #fff;
}

.article-footer {
	padding: 20px 30px;
	border-top: 1px solid var(--border-color);
	background: #fafafa;
}

.article-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.article-nav .nav-item {
	font-size: 14px;
	color: var(--text-muted);
}

.article-nav .nav-item strong {
	color: var(--text-dark);
}

.article-nav .nav-item a {
	color: var(--text-light);
}

.article-nav .nav-item a:hover {
	color: var(--primary-color);
}

.related-section {
	background: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	margin-top: 20px;
	overflow: hidden;
}

.related-section .section-header {
	padding: 12px 20px;
}

.related-section .section-title {
	font-size: 16px;
}

.related-list {
	list-style: none;
	padding: 0 20px 15px;
}

.related-list li {
	padding: 10px 0;
	border-bottom: 1px dashed var(--border-color);
}

.related-list li:last-child {
	border-bottom: none;
}

.related-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.related-title {
	font-size: 14px;
	color: var(--text-dark);
}

.related-list li a:hover .related-title {
	color: var(--primary-color);
}

.related-date {
	font-size: 13px;
	color: var(--text-muted);
}

.no-data {
	padding: 60px 20px;
	text-align: center;
	color: var(--text-muted);
}

.no-data i {
	font-size: 48px;
	margin-bottom: 15px;
	color: var(--border-color);
}

.no-data p {
	font-size: 16px;
	margin-bottom: 5px;
}

.no-data-tip {
	font-size: 14px;
	color: var(--text-muted);
}

.pagination {
	padding: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
	list-style: none;
	margin: 0;
}

.pagination a,
.pagination span {
	display: inline-block;
	padding: 8px 15px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 14px;
	color: var(--text-dark);
	transition: var(--transition);
}

.pagination a:hover,
.pagination span.active {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}

.pagination span.disabled {
	color: var(--text-muted);
	cursor: not-allowed;
}

.site-footer {
	background: #2c2c2c;
	color: rgba(255,255,255,0.8);
	margin-top: 30px;
}

.footer-main {
	padding: 30px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 30px;
}

.footer-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}

.footer-desc {
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255,255,255,0.6);
}

.footer-subtitle {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
	color: #fff;
}

.contact-info p {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-info i {
	color: var(--primary-color);
}

.footer-bottom {
	padding: 15px 0;
}

.footer-bottom-content {
	text-align: center;
}

.copyright p {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	margin-bottom: 5px;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
	z-index: 999;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
}

@media (max-width: 1200px) {
	.container {
		padding: 0 20px;
	}
	
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.content-wrapper {
		flex-direction: column;
	}
	
	.content-sidebar {
		width: 100%;
	}
	
	.news-list-main {
		flex-direction: column;
	}
	
	.news-featured {
		width: 100%;
	}
	
	.featured-image {
		height: 200px;
	}
}

@media (max-width: 768px) {
	.top-bar {
		display: none;
	}
	
	.header-inner {
		flex-wrap: wrap;
		padding: 10px 0;
	}
	
	.logo-text {
		font-size: 20px;
	}
	
	.mobile-menu-toggle {
		display: block;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.main-nav {
		display: none;
		width: 100%;
		order: 3;
		margin-top: 10px;
	}
	
	.main-nav.active {
		display: block;
	}
	
	.main-nav ul {
		flex-direction: column;
		width: 100%;
	}
	
	.main-nav li {
		width: 100%;
	}
	
	.main-nav a {
		width: 100%;
		padding: 12px 15px;
		border-radius: 0;
		border-bottom: 1px solid var(--border-color);
	}
	
	.header-search {
		display: none;
	}
	
	.article-header {
		padding: 20px;
	}
	
	.article-title {
		font-size: 20px;
	}
	
	.article-meta {
		gap: 10px;
	}
	
	.article-content {
		padding: 20px;
		font-size: 15px;
	}
	
	.news-list.list-page .news-item a {
		flex-direction: column;
	}
	
	.news-thumb {
		width: 100%;
		height: 150px;
	}
	
	.topics-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.hero-news-section {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	background: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.hero-main {
	width: 55%;
	flex-shrink: 0;
}

.hero-item {
	display: block;
	position: relative;
	height: 300px;
}

.hero-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.hero-item:hover .hero-image img {
	transform: scale(1.05);
}

.hero-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	color: #fff;
}

.hero-info h2 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 8px;
}

.hero-date {
	font-size: 13px;
	color: rgba(255,255,255,0.8);
}

.hero-side {
	flex: 1;
	padding: 15px 20px;
}

.hero-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero-list li {
	padding: 12px 0;
	border-bottom: 1px dashed var(--border-color);
}

.hero-list li:last-child {
	border-bottom: none;
}

.hero-list li a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

.hero-list-title {
	flex: 1;
	font-size: 15px;
	color: var(--text-dark);
	line-height: 1.5;
	transition: var(--transition);
}

.hero-list li a:hover .hero-list-title {
	color: var(--primary-color);
}

.hero-list-date {
	font-size: 13px;
	color: var(--text-muted);
	flex-shrink: 0;
}

.multi-column-section {
	margin-bottom: 20px;
}

.column-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.column-item {
	min-width: 0;
}

.column-item .news-section {
	margin-bottom: 0;
	height: 100%;
}

.friend-links-section {
	margin-bottom: 20px;
}

.friend-links {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.friend-links a {
	padding: 8px 16px;
	background: var(--bg-light);
	border-radius: var(--border-radius);
	font-size: 14px;
	color: var(--text-light);
	transition: var(--transition);
}

.friend-links a:hover {
	background: var(--primary-color);
	color: #fff;
}

.article-readmore {
	padding: 20px 30px;
	text-align: center;
	border-top: 1px solid var(--border-color);
}

.readmore-btn {
	display: inline-block;
	padding: 12px 40px;
	background: var(--primary-color);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 25px;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.readmore-btn:hover {
	background: var(--primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding: 20px;
}

.news-grid-item {
	background: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.news-grid-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.news-grid-item a {
	display: block;
}

.news-grid-thumb {
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.news-grid-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.news-grid-item:hover .news-grid-thumb img {
	transform: scale(1.05);
}

.news-grid-content {
	padding: 15px;
}

.news-grid-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-grid-item:hover .news-grid-title {
	color: var(--primary-color);
}

.news-grid-excerpt {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-grid-meta {
	display: flex;
	gap: 15px;
	font-size: 13px;
	color: var(--text-muted);
}

.news-grid-meta i {
	margin-right: 4px;
}

@media (max-width: 992px) {
	.hero-news-section {
		flex-direction: column;
	}
	
	.hero-main {
		width: 100%;
	}
	
	.hero-item {
		height: 220px;
	}
	
	.column-row {
		grid-template-columns: 1fr;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-info h2 {
		font-size: 16px;
	}
	
	.hero-list-title {
		font-size: 14px;
	}
	
	.news-grid-thumb {
		height: 150px;
	}
}

.tag-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 20px;
}

.tag-item {
	background: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.tag-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
	border-color: var(--primary-color);
}

.tag-item a {
	display: block;
	padding: 30px 20px;
	text-align: center;
	text-decoration: none;
}

.tag-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.tag-name::before {
	content: '#';
	color: var(--primary-color);
	font-size: 20px;
}

.tag-item:hover .tag-name {
	color: var(--primary-color);
}

.tag-count {
	font-size: 14px;
	color: var(--text-muted);
	background: var(--bg-light);
	display: inline-block;
	padding: 4px 12px;
	border-radius: 12px;
}

.tag-item:hover .tag-count {
	background: rgba(196, 26, 26, 0.1);
	color: var(--primary-color);
}

@media (max-width: 992px) {
	.tag-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.tag-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.tag-item a {
		padding: 25px 15px;
	}
	
	.tag-name {
		font-size: 16px;
	}
}
