    
    .logo img {
      height: 50px;
    }

    /* ─── BREADCRUMB ─── */
    .breadcrumb-bar {
      padding: 14px 40px;
      max-width: 1400px;
      margin: 0 auto;
      display: none;
    }

    .breadcrumb {
      font-size: 12.5px;
      color: #999;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .breadcrumb a {
      color: #999;
      text-decoration: none;
      transition: color 0.18s;
    }

    .breadcrumb a:hover {
      color: #8B0000;
    }

    .breadcrumb .sep {
      color: #ccc;
    }

    .breadcrumb .current {
      color: #555;
      font-weight: 500;
    }

    /* ─── PAGE WRAPPER ─── */
    .page-section {
      padding: 8px 40px 56px;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* ─── ARTICLES GRID ─── */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 4px;
      overflow: hidden;
    }

    /* ─── ARTICLE CARD ─── */
    .article-card {
      background: #fff;
      border-right: 1px solid #ececec;
      border-bottom: 1px solid #ececec;
      cursor: pointer;
      transition: background 0.18s;
      display: flex;
      flex-direction: column;
      animation: fadeIn 0.3s ease both;
    }

    .article-card:hover {
      background: #fafafa;
    }

    .article-card:nth-child(4n) {
      border-right: none;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .article-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

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

    .article-img-wrap {
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
    }

    .article-body {
      padding: 18px 20px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .article-tag {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #8B0000;
    }

    .article-title {
      font-size: 13px;
      font-weight: 700;
      color: #8B0000;
      line-height: 1.45;
      cursor: pointer;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-excerpt {
      font-size: 12px;
      color: #666;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .read-more {
      font-size: 11.5px;
      font-weight: 600;
      color: #555;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: auto;
      padding-top: 8px;
      text-decoration: none;
      border: none;
      background: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: color 0.18s;
    }

    .read-more:hover {
      color: #8B0000;
    }

    .read-more::after {
      content: '›';
      font-size: 15px;
      transition: transform 0.18s;
    }

    .read-more:hover::after {
      transform: translateX(3px);
    }

    /* Row 2 has 2 cards spanning 2 cols each */
    .article-card.wide {
      grid-column: span 2;
    }

    .article-card.wide .article-img {
      height: 220px;
    }

    /* ─── EMPTY STATE ─── */
    .empty-articles {
      grid-column: 1/-1;
      text-align: center;
      padding: 80px 20px;
      color: #aaa;
    }

    /* ─── PAGINATION ─── */
    .pagination-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-top: 36px;
      flex-wrap: wrap;
    }

    .pg-btn {
      width: 36px;
      height: 36px;
      border-radius: 4px;
      border: 1px solid #ddd;
      background: #fff;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.18s;
      font-family: 'Inter', sans-serif;
    }

    .pg-btn:hover:not(:disabled) {
      border-color: #8B0000;
      color: #8B0000;
      background: #fff5f5;
    }

    .pg-btn.active {
      background: #8B0000;
      color: #fff;
      border-color: #8B0000;
    }

    .pg-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .pg-btn.nav {
      font-size: 18px;
    }

    .pg-ellipsis {
      width: 36px;
      text-align: center;
      color: #aaa;
      font-size: 14px;
      user-select: none;
    }

    /* ─── ARTICLE DETAIL VIEW ─── */
    .detail-view {
      display: none;
    }

    .detail-view.active {
      display: block;
    }

    .list-view {
      display: block;
    }

    .list-view.hidden {
      display: none;
    }

    .detail-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: #8B0000;
      border: none;
      background: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      margin-bottom: 28px;
      padding: 0;
      transition: gap 0.18s;
    }

    .detail-back:hover {
      gap: 12px;
    }

    .detail-back::before {
      content: '‹';
      font-size: 18px;
    }

    .detail-container {
      background: #fff;
      border-radius: 4px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      max-width: 900px;
      margin: 0 auto;
    }

    .detail-hero {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
    }

    .detail-content {
      padding: 40px 48px 52px;
    }

    .detail-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #8B0000;
      margin-bottom: 14px;
      display: block;
    }

    .detail-title {
      font-family: 'Lora', serif;
      font-size: 30px;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .detail-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 12px;
      color: #aaa;
      margin-bottom: 32px;
      padding-bottom: 28px;
      border-bottom: 1px solid #eee;
      flex-wrap: wrap;
    }

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

    .detail-body {
      font-size: 15px;
      line-height: 1.85;
      color: #333;
      font-family: 'Lora', serif;
    }

    .detail-body p {
      margin-bottom: 22px;
    }

    .detail-body h3 {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 32px 0 14px;
      font-family: 'Inter', sans-serif;
    }

    .detail-body ul,
    .detail-body ol {
      margin: 0 0 22px 22px;
    }

    .detail-body li {
      margin-bottom: 10px;
      line-height: 1.75;
    }

    .detail-body blockquote {
      border-left: 3px solid #8B0000;
      padding: 14px 20px;
      background: #fdf5f5;
      margin: 28px 0;
      font-style: italic;
      color: #555;
      border-radius: 0 4px 4px 0;
    }

    /* ─── RELATED ARTICLES ─── */
    .related-section {
      padding: 40px 48px 52px;
      border-top: 1px solid #eee;
      background: #fafafa;
    }

    .related-title {
      font-size: 16px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 22px;
    }

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

    .related-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .related-card:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(-3px);
    }

    .related-card img {
      width: 100%;
      height: 110px;
      object-fit: cover;
      display: block;
    }

    .related-card-body {
      padding: 12px 14px 14px;
    }

    .related-card-tag {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #8B0000;
      margin-bottom: 5px;
    }

    .related-card-title {
      font-size: 12.5px;
      font-weight: 600;
      color: #1a1a1a;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .article-card:nth-child(4n) {
        border-right: 1px solid #ececec;
      }

      .article-card:nth-child(2n) {
        border-right: none;
      }

      .article-card.wide {
        grid-column: span 1;
      }

      .article-card.wide .article-img {
        height: 180px;
      }
    }

    

    @media (max-width: 768px) {
      .site-header {
        padding: 0 16px;
      }

      .nav-links {
        display: none;
      }

      .page-section {
        padding: 8px 16px 48px;
      }

      footer {
        padding: 48px 16px 0;
      }

      .footer-bottom-wrap {
        margin: 0 -16px;
        padding: 0 16px;
      }

      .detail-content,
      .related-section {
        padding: 22px 18px 32px;
      }
    }

    @media (max-width: 600px) {
      .articles-grid {
        grid-template-columns: 1fr;
      }

      .article-card:nth-child(2n) {
        border-right: 1px solid #ececec;
      }

      .article-card {
        border-right: none;
      }

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

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

      .detail-hero {
        height: 200px;
      }

      .detail-title {
        font-size: 20px;
      }
    }


@media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

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

      .detail-content,
      .related-section {
        padding: 28px 24px 36px;
      }

      .detail-hero {
        height: 260px;
      }

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