/* ============================================
   赵辉律师主题 - 主样式表
   配色: primary #0C2A55, secondary #C9A96E, bg-alt #F7F8FA
   ============================================ */

/* CSS Variables */
:root {
  --primary: #0C2A55;
  --primary-light: #1a3d6e;
  --primary-dark: #081e3f;
  --secondary: #C9A96E;
  --secondary-light: #d4b87f;
  --secondary-dark: #b8975a;
  --bg-alt: #F7F8FA;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --border: #e5e5e5;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-serif: 'Noto Serif SC', 'Songti SC', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-en: 'Inter', sans-serif;
  --container: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

/* Section Base */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-actions {
  text-align: center;
  margin-top: 48px;
}

.section-actions .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.section-actions .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.navbar.scrolled {
  background: #0C2A55;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

.navbar-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.navbar-brand-logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.navbar-brand:hover {
  color: var(--secondary);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-link {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--white);
  background: none;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.navbar-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg-default {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a4a7a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 42, 85, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
  background: var(--primary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PRACTICE AREAS
   ============================================ */
  line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.credential-check {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   CASES
   ============================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-link {
  display: block;
  color: inherit;
}

.case-link:hover {
  color: inherit;
}

.case-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-image-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
}

.case-body {
  padding: 24px;
}

.case-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.case-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-link {
  display: block;
  color: inherit;
}

.blog-link:hover {
  color: inherit;
}

.blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-image-placeholder {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e8e9eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-size: 18px;
}

.blog-body {
  padding: 20px 24px 24px;
}

.blog-meta {
  margin-bottom: 10px;
}

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

.blog-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
  padding: 100px 0;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--secondary);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   POST PAGE
   ============================================ */
.post-page {
  padding: 120px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.breadcrumb-sep {
  color: var(--text-muted);
}

.post-header {
  margin-bottom: 32px;
}

.post-categories {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.post-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
}

.post-category:hover {
  background: var(--primary);
  color: var(--white);
}

.post-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.post-cover {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.post-cover img {
  width: 100%;
}

/* Article Content */
.article-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  margin: 40px 0 20px;
  line-height: 1.4;
}

.article-content h1 { font-size: 32px; }
.article-content h2 { font-size: 28px; }
.article-content h3 { font-size: 24px; }
.article-content h4 { font-size: 20px; }
.article-content h5 { font-size: 18px; }
.article-content h6 { font-size: 16px; }

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 28px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

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

.article-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--bg-alt);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-light);
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-content img {
  margin: 28px auto;
  border-radius: var(--radius);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}

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

.article-content th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.article-content tr:nth-child(even) {
  background: var(--bg-alt);
}

.article-content code {
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 14px;
  color: var(--primary);
}

.article-content pre {
  background: var(--primary-dark);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 28px 0;
}

.article-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

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

.article-content a:hover {
  color: var(--secondary-dark);
}

.article-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* Post Tags */
.post-tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.post-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-alt);
  color: var(--text-light);
  font-size: 13px;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.post-tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* Post Navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-nav-prev,
.post-nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: var(--transition);
}

.post-nav-prev:hover,
.post-nav-next:hover {
  background: var(--primary);
}

.post-nav-prev:hover .post-nav-label,
.post-nav-prev:hover .post-nav-title,
.post-nav-next:hover .post-nav-label,
.post-nav-next:hover .post-nav-title {
  color: var(--white);
}

.post-nav-next {
  text-align: right;
  align-items: flex-end;
}

.post-nav-label {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.post-nav-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

/* Post Back */
.post-back {
  margin-top: 40px;
  text-align: center;
}

.post-back .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.post-back .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */
.archive-page {
  padding: 120px 0 80px;
}

.archive-header {
  margin-bottom: 48px;
}

.archive-header .breadcrumb {
  margin-bottom: 20px;
}

.archive-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.archive-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 8px;
}

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

/* Archive List */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.archive-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.archive-card:hover {
  box-shadow: var(--shadow-lg);
}

.archive-card-link {
  display: grid;
  grid-template-columns: 280px 1fr;
  color: inherit;
}

.archive-card-link:hover {
  color: inherit;
}

.archive-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.archive-card:hover .archive-card-image img {
  transform: scale(1.05);
}

.archive-card-placeholder {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e8e9eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-serif);
}

.archive-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.archive-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.archive-card-excerpt {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

/* ============================================
   CATEGORIES GRID
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  display: block;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.category-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.category-card-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.category-card-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   ARCHIVES TIMELINE
   ============================================ */
.archives-timeline {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.archive-year {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--secondary);
}

.archive-month {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-light);
  margin: 24px 0 16px;
}

.archive-posts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.archive-post-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
}

.archive-post-item a:hover {
  background: var(--primary);
  color: var(--white);
}

.archive-post-item a:hover .archive-post-date {
  color: rgba(255, 255, 255, 0.7);
}

.archive-post-date {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 48px;
}

.archive-post-title {
  font-size: 15px;
  font-weight: 500;
}

/* ============================================
   TAGS CLOUD
   ============================================ */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag-item {
  display: inline-block;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}

.tag-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.pagination-prev,
.pagination-next {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}

.pagination-prev:hover,
.pagination-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .archive-card-link {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #0C2A55;
    padding: 16px 24px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .navbar-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-link {
    padding: 14px 20px;
    width: 100%;
    color: rgba(255,255,255,0.9);
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
  }

  .navbar-link:last-child {
    border-bottom: none;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-link:hover,
  .navbar-link.active {
    background: rgba(201, 169, 110, 0.12);
    color: #C9A96E;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .practice-grid,
  .cases-grid,
  .blog-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .post-title {
    font-size: 26px;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav-next {
    text-align: left;
    align-items: flex-start;
  }

  .archive-card-link {
    grid-template-columns: 1fr;
  }

  .archive-card-image {
    aspect-ratio: 16/9;
  }

  .archive-title {
    font-size: 28px;
  }

  .archive-year {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .article-content {
    font-size: 16px;
  }

  .article-content h1 { font-size: 26px; }
  .article-content h2 { font-size: 22px; }
  .article-content h3 { font-size: 20px; }
}

/* ---- Practice Areas ---- */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.practice-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.practice-card-image {
  aspect-ratio: 16/11;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.practice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practice-card-placeholder {
  font-family: 'Noto Serif SC', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(12, 42, 85, 0.15);
}

.practice-card-name {
  padding: 12px 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #1F2937;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
  line-height: 1.3;
}

.practice-card:hover .practice-card-name {
  background: #0C2A55;
  color: #fff;
  border-top-color: #C9A96E;
}

/* ---- About Section ---- */
.about-grid {
  display: flex;
  gap: 64px;
  align-items: center;
}

.about-content {
  flex: 1;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 16px;
  color: #1F2937;
  line-height: 1.8;
  margin-top: 16px;
}

.about-text p {
  margin-bottom: 1.2em;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-tag {
  padding: 6px 14px;
  font-size: 13px;
  color: #C9A96E;
  border: 1px solid #C9A96E;
  border-radius: 4px;
}

.about-cta {
  margin-top: 32px;
}

.about-image {
  flex: 1;
  max-width: 45%;
  position: relative;
}

.about-image-frame {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.about-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: #C9A96E;
  opacity: 0.6;
  border-radius: 4px;
  z-index: -1;
}

/* ---- Case Cards ---- */
.case-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.case-card-image {
  width: 35%;
  min-height: 180px;
  background: #F7F8FA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-card-image img {
  transform: scale(1.03);
}

.case-card-placeholder {
  font-family: 'Noto Serif SC', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(12, 42, 85, 0.1);
}

.case-card-body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #C9A96E;
}

.case-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A96E;
}

.case-card-title {
  font-size: 20px;
  color: #0C2A55;
  font-weight: 500;
  transition: color 0.3s ease;
}

.case-card:hover .case-card-title {
  color: #C9A96E;
}

.case-card-excerpt {
  font-size: 15px;
  color: #6B7280;
  margin-top: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.case-card-date {
  font-size: 14px;
  color: #9CA3AF;
}

.case-card-more {
  font-size: 14px;
  color: #0C2A55;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.case-card:hover .case-card-more {
  color: #C9A96E;
}

/* ---- Blog Cards ---- */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  border-bottom: 1px solid #E5E7EB;
  transition: all 0.2s ease;
}

.blog-card:hover {
  background: #F9FAFB;
}

.blog-card-image {
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  background: #F7F8FA;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-placeholder {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(12, 42, 85, 0.1);
}

.blog-card-body {
  flex: 1;
  min-width: 0;
}

.blog-card-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1F2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: #C9A96E;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #6B7280;
  margin-top: 6px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.blog-card-date {
  font-size: 13px;
  color: #9CA3AF;
}

.blog-card-category {
  font-size: 12px;
  padding: 2px 10px;
  background: #F7F8FA;
  color: #6B7280;
  border-radius: 4px;
}

/* ---- Section More Button ---- */
.section-more {
  text-align: center;
  margin-top: 48px;
}

.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 500;
  color: #C9A96E;
  border: 1.5px solid #C9A96E;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.section-more-link svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-more-link:hover {
  background: #C9A96E;
  color: #0C2A55;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.section-more-link:hover svg {
  transform: translateX(4px);
}

/* ---- Contact Section ---- */
.section-contact {
  background: linear-gradient(135deg, #0C2A55 0%, #153A6E 50%, #1A3F75 100%);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-contact .section-subtitle {
  color: #C9A96E;
}

.section-contact .section-title {
  color: #fff;
  font-size: 36px;
}

.contact-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-gold {
  background: linear-gradient(135deg, #C9A96E, #E8D5A3);
  color: var(--primary);
  border: none;
  font-weight: 600;
  padding: 14px 40px;
  font-size: 16px;
  margin-top: 32px;
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
}

.contact-info-item svg {
  color: #C9A96E;
}

.contact-info-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A96E;
}

/* ---- Footer ---- */
.footer {
  background: #2D2D2D;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

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

.footer-brand {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-desc {
  color: #AAA;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #AAA;
  font-size: 14px;
  margin-top: 16px;
}

.footer-address svg {
  color: #C9A96E;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: #C9A96E;
  margin-bottom: 24px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-links a {
  color: #AAA;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #AAA;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-contact svg {
  color: #C9A96E;
}

.footer-qrcode {
  margin-top: 16px;
}

.footer-qrcode img {
  width: 112px;
  height: 112px;
  border-radius: 6px;
  border: 1px solid #555;
}

.footer-qrcode p {
  color: #888;
  font-size: 12px;
  margin-top: 8px;
}

.footer-copyright {
  border-top: 1px solid #444;
  padding: 20px 24px;
  text-align: center;
}

.footer-copyright p {
  color: #888;
  font-size: 13px;
}

/* ---- Page Header ---- */
.main-content {
  padding-top: 72px;
}

.page-header {
  background: linear-gradient(135deg, #0C2A55 0%, #153A6E 100%);
  padding: 64px 0 48px;
  color: #fff;
}

.page-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
  color: #C9A96E;
}

.page-breadcrumb span {
  margin: 0 8px;
}

.page-title {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
}

.page-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ---- Post List (Category/Tag) ---- */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-list-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.post-list-image {
  width: 280px;
  min-height: 180px;
  background: #F7F8FA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.post-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-list-card:hover .post-list-image img {
  transform: scale(1.03);
}

.post-list-placeholder {
  font-family: 'Noto Serif SC', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(12, 42, 85, 0.1);
}

.post-list-body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #C9A96E;
}

.post-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A96E;
}

.post-list-title {
  font-size: 20px;
  color: #0C2A55;
  font-weight: 500;
  transition: color 0.3s ease;
}

.post-list-card:hover .post-list-title {
  color: #C9A96E;
}

.post-list-excerpt {
  font-size: 15px;
  color: #6B7280;
  margin-top: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.post-list-date {
  font-size: 14px;
  color: #9CA3AF;
}

.post-list-more {
  font-size: 14px;
  color: #0C2A55;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.post-list-card:hover .post-list-more {
  color: #C9A96E;
}

.post-list-link {
  width: 100%;
}

/* ---- Categories Grid ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.category-card-icon {
  color: #C9A96E;
  margin-bottom: 16px;
}

.category-card-title {
  font-size: 20px;
  color: #0C2A55;
  font-weight: 500;
}

.category-card-count {
  font-size: 14px;
  color: #9CA3AF;
  margin-top: 8px;
}

.category-card-desc {
  font-size: 14px;
  color: #6B7280;
  margin-top: 8px;
}

/* ---- Tags Cloud ---- */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: #0C2A55;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: #0C2A55;
  color: #fff;
  transform: translateY(-2px);
}

.tag-count {
  font-size: 12px;
  color: #9CA3AF;
  background: #F7F8FA;
  padding: 2px 8px;
  border-radius: 10px;
}

.tag-item:hover .tag-count {
  color: #0C2A55;
  background: #C9A96E;
}

/* ---- Archives ---- */
.archive-list {
  max-width: 800px;
  margin: 0 auto;
}

.archive-year {
  margin-bottom: 48px;
}

.archive-year-title {
  font-size: 28px;
  color: #0C2A55;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E5E7EB;
}

.archive-month {
  margin-bottom: 24px;
  padding-left: 24px;
}

.archive-month-title {
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 12px;
}

.archive-posts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.archive-post {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.archive-post:hover {
  background: #F7F8FA;
}

.archive-post-date {
  font-size: 14px;
  color: #9CA3AF;
  font-family: 'Inter', sans-serif;
  min-width: 50px;
}

.archive-post-title {
  font-size: 15px;
  color: #1F2937;
  transition: color 0.2s ease;
}

.archive-post:hover .archive-post-title {
  color: #C9A96E;
}

/* ---- Post Article (Detail) ---- */
.post-article {
  padding-bottom: 64px;
}

.post-header {
  background: linear-gradient(135deg, #0C2A55 0%, #153A6E 100%);
  padding: 48px 0 40px;
  color: #fff;
}

.post-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.post-breadcrumb a {
  color: rgba(255,255,255,0.8);
}

.post-breadcrumb a:hover {
  color: #C9A96E;
}

.post-breadcrumb span {
  margin: 0 8px;
}

.post-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.post-category {
  padding: 4px 12px;
  background: #C9A96E;
  color: #0C2A55;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
}

.post-date,
.post-views {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.post-title {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.post-tag {
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.post-tag:hover {
  border-color: #C9A96E;
  color: #C9A96E;
}

.post-cover {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.post-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.post-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 24px;
}

.post-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 64px;
}

.post-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.post-nav-prev,
.post-nav-next {
  flex: 1;
  padding: 20px 24px;
  background: #F7F8FA;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.post-nav-next {
  text-align: right;
}

.post-nav-prev:hover,
.post-nav-next:hover {
  background: #0C2A55;
}

.post-nav-label {
  display: block;
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-nav-prev:hover .post-nav-label,
.post-nav-next:hover .post-nav-label {
  color: #C9A96E;
}

.post-nav-title {
  font-size: 16px;
  font-weight: 500;
  color: #1F2937;
}

.post-nav-prev:hover .post-nav-title,
.post-nav-next:hover .post-nav-title {
  color: #fff;
}

.post-back {
  text-align: center;
}

/* ---- Article Content Styles ---- */
.article-content {
  font-size: 16px;
  line-height: 1.85;
  color: #2d3748;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: 'Noto Serif SC', 'Source Han Serif SC', serif;
  color: #0C2A55;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.4;
}

.article-content h1 {
  font-size: 1.75rem;
  font-weight: 600;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #e8e8e8;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.article-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.article-content p {
  margin-bottom: 1.2em;
  text-align: justify;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content strong,
.article-content b {
  color: #0C2A55;
  font-weight: 600;
}

.article-content a {
  color: #C9A96E;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.article-content a:hover {
  border-bottom-color: #C9A96E;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.2em;
  padding-left: 1.8em;
}

.article-content ul {
  list-style-type: disc;
}

.article-content ol {
  list-style-type: decimal;
}

.article-content li {
  margin-bottom: 0.4em;
}

.article-content li::marker {
  color: #C9A96E;
}

.article-content blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 3px solid #C9A96E;
  background: #f8f9fa;
  color: #4a5568;
  font-style: italic;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5em 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95em;
}

.article-content th,
.article-content td {
  padding: 0.6em 0.8em;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.article-content th {
  background: #f7fafc;
  font-weight: 600;
  color: #0C2A55;
}

.article-content tr:nth-child(even) {
  background: #f8f9fa;
}

.article-content code {
  background: #f1f5f9;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  color: #c7254e;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.article-content pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1em 1.2em;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5em 0;
  font-size: 0.9em;
  line-height: 1.6;
}

.article-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

.article-content hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 2em 0;
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.pagination-prev,
.pagination-next {
  padding: 10px 24px;
  border: 1px solid #0C2A55;
  color: #0C2A55;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
  background: #0C2A55;
  color: #fff;
}

.pagination-info {
  font-size: 14px;
  color: #6B7280;
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: #9CA3AF;
}

/* ---- Page Content ---- */
.page-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ---- Animations ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-top: 100px;
  }

  .hero-info {
    text-align: center;
  }

  .hero-divider-short,
  .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid {
    flex-direction: column;
  }

  .about-image {
    max-width: 100%;
    width: 100%;
  }

  .about-image-frame {
    height: 360px;
  }

  .case-card,
  .post-list-card,
  .post-list-link {
    flex-direction: column;
  }

  .case-card-image,
  .post-list-image {
    width: 100% !important;
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-toggle.active .navbar-toggle-icon:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar-toggle.active .navbar-toggle-icon:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .navbar-toggle-icon:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .hero-avatar-frame {
    width: 180px;
    height: 240px;
  }

  .hero-name {
    font-size: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-card-image {
    width: 100%;
    height: 160px;
  }

  .post-title {
    font-size: 24px;
  }

  .post-nav {
    flex-direction: column;
  }

  .post-nav-next {
    text-align: left;
  }
}
