@charset "utf-8";
/* ============================================
   fceqs.com - 自然有机风格模板
   风格: N(自然有机) + E(杂志混合) + 色彩6(大地色系)
   ============================================ */

:root {
  --primary: #2d5a27;
  --primary-light: #4a8c3f;
  --primary-dark: #1a3a16;
  --accent: #c9a227;
  --accent-light: #e6c65c;
  --bg-gradient: linear-gradient(135deg, #2d5a27 0%, #4a8c3f 50%, #c9a227 100%);
  --bg-light: #faf8f3;
  --bg-warm: #f5f0e6;
  --card-bg: #ffffff;
  --text-dark: #2c3e2d;
  --text-muted: #6b7c6b;
  --text-light: #9aab9a;
  --shadow-sm: 0 4px 20px rgba(45, 90, 39, 0.1);
  --shadow-md: 0 8px 40px rgba(45, 90, 39, 0.15);
  --shadow-lg: 0 16px 60px rgba(45, 90, 39, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-light);
  font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, li { list-style: none; }
img { max-width: 100%; height: auto; }

/* 通用容器 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--bg-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 90, 39, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}
.btn-block { width: 100%; }

/* ============================================
   头部样式
   ============================================ */
.header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 90, 39, 0.08);
  box-shadow: var(--shadow-sm);
}
.top_header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.top_header a#logo { display: flex; flex-direction: column; align-items: center; } .top_header a#logo img { height: 100px; width: 100px; object-fit: cover; border-radius: 8px; } .top_header a#logo .site-name { display: block; text-align: center; color: #1a1a1a; font-size: 1.25rem; font-weight: 700; margin-top: 8px; }

/* 导航 */
.nav-warp {
  background: var(--card-bg);
  border-bottom: 1px solid rgba(45, 90, 39, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  flex-wrap: wrap;
}
.nav-item {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-item:hover, .nav-item.active {
  color: #fff;
  background: var(--primary);
}

/* ============================================
   巨幕区域
   ============================================ */
.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a16 0%, #2d5a27 50%, #4a8c3f 100%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  animation: heroSlide 20s infinite;
}
@keyframes heroSlide {
  0%, 20% { opacity: 0.4; }
  25%, 45% { opacity: 0; }
  50%, 70% { opacity: 0.4; }
  75%, 100% { opacity: 0; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,58,22,0.6) 0%, rgba(45,90,39,0.8) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   数据统计
   ============================================ */
.stats-section {
  background: var(--card-bg);
  padding: 50px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(45, 90, 39, 0.05);
  transform: translateY(-4px);
}
.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon i { font-size: 22px; color: #fff; }
.stat-num {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   主布局 - 左侧内容 + 右侧边栏
   ============================================ */
.main-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 24px;
}
.main-container {
  display: flex;
  gap: 30px;
}
.content-area {
  flex: 1;
  min-width: 0;
}

/* ============================================
   推荐文章 & 猜你喜欢 - 纯文字列表
   ============================================ */
.recommend-section { margin-bottom: 50px; }
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.recommend-col { }
.section-header.left {
  text-align: left;
  margin-bottom: 24px;
}
.text-list {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.text-list li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.text-list li:last-child { border-bottom: none; }
.text-list a {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.text-list a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}
.text-list a:hover {
  color: var(--primary);
  padding-left: 10px;
}
.text-list a:hover::before {
  background: var(--primary);
}

/* ============================================
   精选案例 - 图文列表
   ============================================ */
.featured-section { margin-bottom: 50px; }
.img-text-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.img-text-item {
  display: block;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.img-text-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.img-text-item .item-thumb {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.img-text-item .item-info {
  padding: 16px;
}
.img-text-item h3 {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.img-text-item .item-cat {
  font-size: 12px;
  color: var(--accent);
}

/* ============================================
   新闻资讯
   ============================================ */
.news-section { margin-bottom: 60px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.news-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.news-img {
  width: 140px;
  height: 140px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}
.news-date {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--bg-gradient);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}
.news-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.news-cat {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 6px;
}
.news-info h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-footer {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-light);
}
.news-footer span { display: flex; align-items: center; gap: 4px; }

/* ============================================
   合作伙伴
   ============================================ */
.partners-section { margin-bottom: 40px; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.partner-item {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.partner-item:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}
.partner-item img { max-height: 50px; object-fit: contain; }

/* ============================================
   侧边栏
   ============================================ */
.sidebar {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card .card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card .card-title i { color: var(--primary); }

/* 关于我们侧边卡片 */
.about-card .about-content {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}
.card-more:hover { color: var(--accent); }

/* 栏目导航 */
.nav-list { display: flex; flex-direction: column; gap: 6px; }
.nav-list .nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
}
.nav-list .nav-item:hover {
  background: var(--primary);
  color: #fff;
}
.nav-list .nav-item i { font-size: 12px; color: var(--accent); }
.nav-list .nav-item:hover i { color: #fff; }

/* 文章列表 */
.article-list { display: flex; flex-direction: column; gap: 12px; }
.article-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.article-item:hover {
  background: rgba(45, 90, 39, 0.1);
  transform: translateX(4px);
}
.article-num {
  width: 24px;
  height: 24px;
  background: var(--bg-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.article-info { flex: 1; min-width: 0; }
.article-info h4 {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-info span {
  font-size: 11px;
  color: var(--text-light);
}
.article-info span i { margin-right: 4px; }

/* 侧边新闻 - 带缩略图 */
.article-item.side-news { align-items: center; }
.article-thumb {
  width: 70px;
  height: 60px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* 标签云 */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-item {
  padding: 6px 14px;
  background: var(--bg-light);
  color: var(--text-muted);
  border-radius: 50px;
  font-size: 13px;
  transition: var(--transition);
}
.tag-item:hover {
  background: var(--primary);
  color: #fff;
}

/* 联系卡片 */
.contact-card .contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-card .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dark);
}
.contact-card .contact-item i {
  width: 36px;
  height: 36px;
  background: rgba(45, 90, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* 侧边栏轮播 */
.slide-card { padding: 0; overflow: hidden; }
.slide-card .card-title {
  padding: 18px 22px 12px;
  margin-bottom: 0;
}
.sidebar-slide {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slide-item.active { opacity: 1; }
.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  font-size: 13px;
  text-align: center;
}
.sidebar-slide .slick-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.sidebar-slide .slick-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}
.sidebar-slide .slick-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}

/* ============================================
   悬浮咨询
   ============================================ */
.fixed-contact {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.contact-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.contact-item:hover {
  transform: scale(1.1) rotate(10deg);
}
.contact-item.phone { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.contact-item.message { background: linear-gradient(135deg, #3498db, #2980b9); }
.contact-item.sitemap { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

/* ============================================
   底部
   ============================================ */
.footer {
  background: linear-gradient(135deg, #1a3a16 0%, #2d5a27 100%);
  color: #c8d6c8;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}
.footer-bottom a { color: #c8d6c8; margin: 0 8px; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1100px) {
  .main-container { flex-direction: column; }
  .sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .sidebar-card { flex: 1; min-width: 280px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { flex-direction: column; }
  .news-img { width: 100%; height: 160px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 26px; }
}

/* ============================================
   文章详情页 news.html
   ============================================ */
.page-header {
  background: linear-gradient(135deg, #1a3a16 0%, #2d5a27 100%);
  padding: 50px 0;
  margin-bottom: 40px;
}
.page-header .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}
.page-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.page-breadcrumb a { color: rgba(255,255,255,0.9); }
.page-breadcrumb a:hover { color: #fff; }

.content-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 24px 60px; }

.article-detail {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.detail-header { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.detail-category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 14px;
}
.detail-title {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}
.detail-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.detail-meta span { display: flex; align-items: center; gap: 6px; }

.detail-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dark);
}
.detail-content p { margin-bottom: 18px; }
.detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 20px 0;
}
.detail-content h2, .detail-content h3, .detail-content h4 {
  margin: 24px 0 14px;
  color: var(--text-dark);
}
.detail-content ul, .detail-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.detail-content li { margin-bottom: 8px; list-style: disc; }
.detail-content blockquote {
  margin: 20px 0;
  padding: 20px 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

.detail-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  color: var(--text-muted);
}
.detail-tags span { display: flex; align-items: center; gap: 8px; }
.detail-tags a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-light);
  color: var(--text-muted);
  border-radius: 50px;
  margin-left: 6px;
  font-size: 12px;
}
.detail-tags a:hover { background: var(--primary); color: #fff; }

.related-articles { }
.related-title {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.related-title i { color: var(--primary); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: block;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.related-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.related-info { padding: 16px; }
.related-info h4 {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-info span {
  font-size: 12px;
  color: var(--text-light);
}
.related-info span i { margin-right: 4px; }

/* ============================================
   列表页 newslist.html
   ============================================ */
.list-page-grid {
  display: flex;
  gap: 30px;
}
.list-page-grid .main-content { flex: 1; min-width: 0; }
.list-sidebar { width: 300px; flex-shrink: 0; }

.list-articles { display: flex; flex-direction: column; gap: 20px; }
.list-article-item {
  display: flex;
  gap: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.list-article-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.list-article-img {
  width: 200px;
  height: 150px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.list-article-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.list-article-info h3 {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-article-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-article-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-light);
}
.list-article-meta span { display: flex; align-items: center; gap: 4px; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.pagination a, .pagination span {
  padding: 10px 16px;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pagination a:hover {
  background: var(--primary);
  color: #fff;
}
.pagination .active {
  background: var(--primary);
  color: #fff;
}

.sidebar-nav-list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav-list li {
  padding: 10px 14px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.sidebar-nav-list li:hover {
  background: var(--primary);
}
.sidebar-nav-list li:hover a { color: #fff; }
.sidebar-nav-list a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-dark);
}
.sidebar-nav-list .count {
  font-size: 12px;
  color: var(--text-light);
  background: rgba(0,0,0,0.06);
  padding: 2px 8px;
  border-radius: 50px;
}
.sidebar-nav-list li:hover .count {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

@media (max-width: 900px) {
  .list-page-grid { flex-direction: column; }
  .list-sidebar { width: 100%; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .list-article-img { width: 160px; height: 130px; }
}
@media (max-width: 600px) {
  .list-article-item { flex-direction: column; }
  .list-article-img { width: 100%; height: 180px; }
  .article-detail { padding: 24px; }
  .detail-title { font-size: 22px; }
  .related-grid { grid-template-columns: 1fr; }
}