/* ===== Blog CN Page Styles ===== */

/* Hero */
.blog-cn-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #0084a9 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}
.blog-cn-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.blog-cn-hero p {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* Posts Section */
.blog-cn-posts {
  padding: 60px 0 80px;
  background: #f8f9fb;
}
.blog-cn-posts .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid */
.blog-cn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .blog-cn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-cn-grid { grid-template-columns: 1fr; }
}

/* Card */
.blog-cn-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-cn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.blog-cn-card-image {
  display: block;
  overflow: hidden;
  height: 200px;
}
.blog-cn-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-cn-card:hover .blog-cn-card-image img {
  transform: scale(1.04);
}
.blog-cn-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-cn-meta {
  margin-bottom: 10px;
}
.blog-cn-date {
  font-size: 1.3rem;
  color: #888;
}
.blog-cn-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px;
}
.blog-cn-title a {
  color: #0d1f3c;
  text-decoration: none;
}
.blog-cn-title a:hover {
  color: #0084a9;
}
.blog-cn-excerpt {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.blog-cn-readmore {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0084a9;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}
.blog-cn-readmore:hover {
  color: #FDB813;
}

/* Pagination */
.blog-cn-pagination {
  text-align: center;
  margin-top: 40px;
}
.blog-cn-pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #0d1f3c;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.2s;
}
.blog-cn-pagination .page-numbers:hover,
.blog-cn-pagination .page-numbers.current {
  background: #0084a9;
  border-color: #0084a9;
  color: #fff;
}
.blog-cn-pagination .page-numbers.prev,
.blog-cn-pagination .page-numbers.next {
  background: #FDB813;
  border-color: #FDB813;
  color: #0d1f3c;
  font-weight: 600;
}

/* Empty State */
.blog-cn-empty {
  text-align: center;
  padding: 60px 20px;
  max-width: 680px;
  margin: 0 auto;
}
.blog-cn-empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.blog-cn-empty h2 {
  font-size: 2.4rem;
  color: #0d1f3c;
  margin-bottom: 12px;
}
.blog-cn-empty p {
  font-size: 1.7rem;
  color: #555;
  margin-bottom: 30px;
}
.blog-cn-topics {
  text-align: left;
  background: #fff;
  border-radius: 10px;
  padding: 30px 35px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 30px;
}
.blog-cn-topics h3 {
  font-size: 1.7rem;
  color: #0d1f3c;
  margin-bottom: 15px;
}
.blog-cn-topics ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-cn-topics ul li {
  font-size: 1.6rem;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.5;
}
.blog-cn-topics ul li:last-child {
  border-bottom: none;
}

/* CTA Button */
.blog-cn-cta-btn {
  display: inline-block;
  background: #FDB813;
  color: #0d1f3c;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.blog-cn-cta-btn:hover {
  background: #ffc933;
  transform: translateY(-2px);
}

/* Bottom CTA Section */
.blog-cn-cta {
  background: #0d1f3c;
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.blog-cn-cta .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-cn-cta h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.blog-cn-cta p {
  font-size: 1.7rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}
