
:root {
    --black: #1A1A1A;
    --gray-900: #2C2C2C;
    --gray-700: #4A4A4A;
    --gray-500: #6E6E6E;
    --gray-300: #B8B8B8;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    --border: #E8E8E8;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.03);
    --radius: 8px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.2s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
  

  h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.01em;
  }
  
  h1 { font-size: 2.2rem; margin-bottom: 0.5em; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }
  h4 { font-size: 1.15rem; }
  
  p {
    color: var(--gray-700);
    margin-bottom: 1.25rem;
  }
  
  a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--gray-500);
  }
  
  img {
    max-width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--gray-100);
  }
  
  .site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
  }
  
  .logo-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.02em;
  }
  
  .menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    margin: 3px 0;
    border-radius: 0;
    transition: var(--transition);
  }
  
  .menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .main-nav {
    flex: 1;
    margin-left: 40px;
  }
  
  .nav-list {
    display: flex;
    gap: 2.4rem;
    list-style: none;
  }
  
  .nav-list a {
    font-weight: 400;
    color: var(--gray-700);
    padding: 0.4rem 0;
    border-bottom: 1px solid transparent;
  }
  
  .nav-list a:hover {
    border-bottom-color: var(--black);
    color: var(--black);
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
    .main-nav {
      position: absolute;
      top: 101%;
      left: 0;
      right: 0;
      background: var(--white);
      margin-left: 0;
      padding: 0 32px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      border-bottom: 1px solid transparent;
    }
    .main-nav.active {
      max-height: 400px;
      padding: 28px 32px;
      border-bottom-color: var(--border);
    }
    .nav-list {
      flex-direction: column;
      gap: 1.2rem;
    }
  }
  
  @media (min-width: 769px) {
    .menu-toggle {
      display: none;
    }
  }

  .site-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    margin-top: 80px;
    padding: 48px 0 32px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 40px;
  }
  
  .footer-nav h4,
  .footer-recent h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer-nav ul {
    list-style: none;
  }
  
  .footer-nav li {
    margin-bottom: 10px;
  }
  
  .footer-nav a,
  .footer-copyright a {
    color: var(--gray-700);
    font-size: 0.9rem;
  }
  
  .footer-nav a:hover,
  .footer-copyright a:hover {
    color: var(--black);
    border-bottom: 1px solid var(--black);
  }
  
  .footer-article {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .footer-article img {
    width: 70px;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
  }
  
  .footer-article a {
    color: var(--gray-900);
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  .footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
  }
  
  @media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-copyright { flex-direction: column; text-align: center; }
  }
  
  .sidebar-widget {
    background: var(--gray-100);
    padding: 28px 24px;
    border-radius: var(--radius);
  }
  
  .widget-categories,
  .widget-popular {
    margin-bottom: 36px;
  }
  
  .widget-categories h3,
  .widget-popular h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
  }
  
  .category-list {
    list-style: none;
  }
  
  .category-list li {
    margin-bottom: 12px;
  }
  
  .category-list a {
    display: inline-block;
    color: var(--gray-700);
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
  }
  
  .category-list a:hover {
    border-bottom-color: var(--black);
    color: var(--black);
  }
  
  .popular-list {
    list-style: none;
  }
  
  .popular-list li {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  
  .popular-list time {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  
  .popular-list a {
    font-weight: 500;
    color: var(--gray-900);
  }
  
  .popular-list a:hover {
    color: var(--black);
  }
  
  .pagination-wrapper {
    margin-top: 60px;
  }
  
  .post-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
  }
  
  .post-pagination a,
  .post-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 8px;
    border-radius: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: var(--transition);
  }
  
  .post-pagination a:hover {
    background: var(--gray-100);
    border-color: var(--gray-500);
    color: var(--black);
    text-decoration: none;
  }
  
  .post-pagination .current {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
  }
  
  .post-pagination .disabled {
    opacity: 0.3;
    pointer-events: none;
  }
  
  .post-pagination .dots {
    border: none;
    background: transparent;
  }
  
  .feature-section {
    margin: 60px 0 40px;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
  }
  
  .feature-card:hover {
    border-color: var(--gray-500);
    box-shadow: var(--shadow-hover);
  }
  
  .feature-card .card-media {
    flex: 0 0 180px;
    max-width: 180px;
  }
  
  .feature-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  
  .feature-card .card-content {
    flex: 1;
    padding: 24px;
  }
  
  .feature-card .card-content h2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .feature-card .card-content h2 a {
    color: var(--black);
  }
  
  .feature-card .card-content h2 a:hover {
    color: var(--gray-700);
  }
  
  .feature-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  
  .feature-card .brief {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0;
  }
  
  @media (max-width: 992px) {
    .feature-grid {
      grid-template-columns: 1fr;
    }
    .feature-card .card-media {
      flex: 0 0 160px;
      max-width: 160px;
    }
  }
  
  @media (max-width: 640px) {
    .feature-card {
      flex-direction: column;
      align-items: stretch;
    }
    .feature-card .card-media {
      flex: 0 0 auto;
      max-width: 100%;
    }
    .feature-card .card-media img {
      border-radius: var(--radius) var(--radius) 0 0;
    }
    .feature-card .card-content {
      padding: 22px;
    }
  }
  
  .category-section {
    margin: 70px 0;
    border-top: 1px solid var(--border);
    padding-top: 50px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--black);
    display: inline-block;
  }
  
  .category-style-a .category-articles {
    display: flex;
    flex-direction: column;
  }
  
  .category-style-a .text-only-article {
    display: flex;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  
  .category-style-a .text-only-article:first-child {
    padding-top: 0;
  }
  
  .category-style-a .content {
    flex: 1;
  }
  
  .category-style-a .content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 500;
  }
  
  .category-style-a .meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    gap: 16px;
  }
  
  .category-style-a .brief {
    margin-top: 6px;
    color: var(--gray-700);
    font-size: 0.9rem;
  }
  
  .category-style-b .category-articles {
    display: flex;
    flex-direction: column;
  }
  
  .category-style-b .text-only-article {
    padding: 20px 0;
    border-bottom: none;
  }
  
  .category-style-b .content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
  }
  
  .category-style-b .meta {
    font-size: 0.8rem;
    color: var(--gray-500);
  }
  
  .category-style-b .brief {
    margin-top: 8px;
    color: var(--gray-700);
    font-size: 0.9rem;
  }
  
  .static-modules {
    margin: 70px 0;
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .module-card {
    text-align: left;
  }
  
  .module-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
    color: var(--gray-700);
  }
  
  .module-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
  }
  
  .module-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .read-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
  }
  
  .read-more:hover {
    color: var(--gray-700);
    border-bottom-color: var(--gray-700);
    text-decoration: none;
  }
  
  .latest-articles {
    margin: 70px 0;
  }
  
  .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 40px 0;
  }
  
  .article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }
  
  .article-card:hover {
    border-color: var(--gray-500);
    box-shadow: var(--shadow-hover);
  }
  
  .card-image img {
    width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  
  .article-card .card-content {
    padding: 24px;
    flex: 1;
  }
  
  .category-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--gray-500);
    padding-bottom: 2px;
  }
  
  .article-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .article-card h3 a {
    color: var(--black);
  }
  
  .article-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  
  .article-card .brief {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  .category-page {
    margin: 40px 0;
  }
  
  .category-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
  }
  
  .breadcrumb-nav {
    margin-bottom: 24px;
  }
  
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.8rem;
    color: var(--gray-500);
  }
  
  .breadcrumb-item a {
    color: var(--gray-700);
  }
  
  .breadcrumb-item a:hover {
    color: var(--black);
  }
  
  .breadcrumb-item.active {
    color: var(--black);
    font-weight: 500;
  }
  
  .sep {
    margin: 0 8px;
    color: var(--border);
  }
  
  .post_tag_name {
    font-size: 2rem;
    font-weight: 500;
    margin: 16px 0 40px;
    color: var(--black);
    border-left: 4px solid var(--gray-500);
    padding-left: 20px;
  }
  
  .category-article-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .list-article {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
  }
  
  .list-article:hover {
    border-color: var(--gray-500);
    box-shadow: var(--shadow-hover);
  }
  
  .list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
  }
  
  .category-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray-500);
    padding-bottom: 2px;
  }
  
  .list-content h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
  }
  
  .list-content h2 a {
    color: var(--black);
  }
  
  .list-content .meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 12px;
  }
  
  .list-content .brief {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  
  .list-content .read-more {
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
  }
  
  .detail-page {
    margin: 40px 0;
  }
  
  .detail-layout {
    display: grid;
    grid-template-columns: minmax(300px,2fr) minmax(0, 1fr);
    gap: 48px;
  }
  
  .article-header h1 {
    font-size: 2.2rem;
    font-weight: 500;
    margin: 20px 0 16px;
    line-height: 1.2;
  }
  
  .article-header .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
  }
  
  .author-info-card {
    display: flex;
    gap: 24px;
    background: var(--gray-100);
    padding: 28px;
    border-radius: var(--radius);
    margin: 36px 0;
  }
  
  .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--border);
  }
  
  .author-details .author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    display: block;
    margin-bottom: 6px;
  }
  
  .author-bio {
    margin-bottom: 12px;
    color: var(--gray-700);
    font-style: normal;
  }
  
  .author-fullbio {
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 12px;
    color: var(--gray-700);
  }
  
  .article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-900);
  }
  
  .article-body p {
    margin-bottom: 1.8em;
    color: var(--gray-900);
  }
  
  .article-body h2,
  .article-body h3,
  .article-body h4 {
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    font-weight: 500;
  }
  
  .article-body img {
    border-radius: var(--radius);
    margin: 10px auto;
    height: auto;
    aspect-ratio: auto;
  }
  
  .post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 56px 0 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .post-navigation a {
    font-weight: 500;
    color: var(--gray-700);
    max-width: 45%;
  }
  
  .post-navigation a:hover {
    color: var(--black);
  }
  
  .related-articles {
    margin: 56px 0;
  }
  
  .related-articles h3 {
    margin-bottom: 28px;
    font-weight: 500;
  }
  
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .related-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
  }
  
  .related-card:hover {
    border-color: var(--gray-500);
    box-shadow: var(--shadow-hover);
  }
  
  .related-card img {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  
  .related-card h4 {
    padding: 16px;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
  }
  
  .related-card h4 a {
    color: var(--black);
  }
  
  .comment-form-section {
    margin: 56px 0;
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--radius);
  }
  
  .comment-form-section h3 {
    margin-bottom: 28px;
    font-weight: 500;
  }
  
  .comment-form .form-group {
    margin-bottom: 24px;
  }
  
  .comment-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
  }
  
  .comment-form input,
  .comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
    font-size: 0.95rem;
  }
  
  .comment-form input:focus,
  .comment-form textarea:focus {
    outline: none;
    border-color: var(--gray-700);
  }
  
  .btn-submit {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .btn-submit:hover {
    background: var(--gray-900);
    color: var(--white);
  }
  
  .author-page {
    margin: 60px 0;
  }
  
  .author-full-profile {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
  }
  
  .author-hero {
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  
  .author-avatar-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px;
    border: 1px solid var(--border);
    padding: 4px;
    object-fit: cover;
  }
  
  .author-hero h1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .author-tagline {
    font-size: 1rem;
    color: var(--gray-700);
  }
  
  .author-biography {
    line-height: 1.8;
    color: var(--gray-900);
  }
  
  .alone-page {
    margin: 60px 0;
  }
  
  .static-content {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
  }
  
  .static-content h1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  
  .content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-900);
  }
  
  .more-article-page {
    margin: 40px 0;
  }
  
  .more-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
  }
  
  .page-title {
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
  }
  
  .article-feed {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .feed-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
  }
  
  .feed-item:hover {
    border-color: var(--gray-500);
    box-shadow: var(--shadow-hover);
  }
  
  .feed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
  }
  
  .feed-content h2 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 12px;
  }
  
  .feed-content h2 a {
    color: var(--black);
  }
  
  .feed-content .meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 12px;
  }
  
  .feed-content .brief {
    color: var(--gray-700);
    font-size: 0.95rem;
  }
  
  .all-article-page {
    margin: 40px 0;
  }
  
  .archive-list {
    max-width: 1000px;
    margin: 48px auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  
  .archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
  }
  
  .archive-item:last-child {
    border-bottom: none;
  }
  
  .archive-item:hover {
    background: var(--gray-100);
  }
  
  .archive-item h2 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
  }
  
  .archive-item h2 a {
    color: var(--black);
  }
  
  .archive-item time {
    font-size: 0.8rem;
    color: var(--gray-500);
  }
  
  @media (max-width: 992px) {
    .category-layout,
    .detail-layout,
    .more-layout {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .article-grid,
    .module-grid,
    .related-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
  
    .container { padding: 0 16px; }
  
    .article-grid,
    .module-grid,
    .related-grid {
      grid-template-columns: 1fr;
    }
  
    .list-article,
    .feed-item {
      grid-template-columns: 1fr;
    }
  
    .list-image,
    .feed-image {
      max-width: 100%;
    }
  
    .author-info-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .author-avatar {
      width: 70px;
      height: 70px;
    }
  
    .archive-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  
    .comment-form-section {
      padding: 28px;
    }
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  @media (max-width:768px) {
    .header-inner {
        padding: .5rem 0;
    }

    .feature-section,
    .more-article-page,
    .category-page,
    .detail-page {
        margin-top: 20px;
    }

    .breadcrumb-nav {
        margin-bottom: 16px;
    }

    .post_tag_name {
        font-size: 1.6rem;
    }

    .author-full-profile {
        padding: 20px;
    }

    .author-page {
        margin-top: 40px;
    }
  }