    /* ==========================================================================
       THEME: MORENEWS MAGAZINE DESIGN SYSTEM (AF THEMES INITIATIVE)
       Clean contrast, sharp editorial typography, red/blue magazine accents,
       magazine hero grid, breaking news ticker, 2-column layout with sidebar.
       ========================================================================== */
    :root {
      --primary: #0056b3;         /* MoreNews Classic Blue */
      --primary-dark: #003d82;
      --secondary: #c52233;       /* High-contrast Crimson Accent (> 4.8:1 contrast on white & light bg) */
      --secondary-hover: #9f1725;
      
      --bg-body: #f4f6f9;         /* Magazine body light grey */
      --bg-card: #ffffff;
      --bg-subtle: #f8fafc;
      --bg-header: #ffffff;
      --bg-nav: #1e293b;          /* MoreNews dark navy navbar */
      
      --text-main: #111827;       /* Deep obsidian text */
      --text-muted: #374151;      /* Secondary editorial text (meets 7:1) */
      --text-subtle: #475569;     /* Meta dates & credits (meets 5.2:1 contrast) */
      --border-color: #e5e7eb;    /* Crisp divider borders */
      
      --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      
      --radius-sm: 3px;
      --radius-md: 6px;
      --radius-lg: 10px;
      --container-max: 1240px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    }

    [data-theme="dark"] {
      --bg-body: #0f172a;
      --bg-card: #1e293b;
      --bg-subtle: #192231;
      --bg-header: #0f172a;
      --bg-nav: #0b1120;
      
      --text-main: #f3f4f6;
      --text-muted: #cbd5e1;
      --text-subtle: #94a3b8;
      --border-color: #334155;
      
      --primary: #38bdf8;
      --primary-dark: #0284c7;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
      --shadow-md: 0 4px 6px rgba(0,0,0,0.5);
    }

    /* Global Resets */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: var(--font-body);
      background-color: var(--bg-body);
      color: var(--text-main);
      line-height: 1.6;
      transition: background-color 0.2s ease, color 0.2s ease;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    button, input {
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Skip link */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 10px;
      background: var(--secondary);
      color: #fff;
      padding: 8px 16px;
      z-index: 1000;
      border-radius: var(--radius-sm);
      transition: top 0.15s;
    }
    .skip-link:focus {
      top: 10px;
    }

    /* ==================== 1. TOP BAR (MORENEWS TICKER & DATE) ==================== */
    .top-bar {
      background: #0b1120;
      color: #94a3b8;
      font-size: 0.8125rem;
      border-bottom: 1px solid #1e293b;
    }
    .top-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 38px;
    }
    .top-bar-left {
      display: flex;
      align-items: center;
      gap: 16px;
      overflow: hidden;
      white-space: nowrap;
    }
    .top-date {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #e2e8f0;
      font-weight: 500;
    }
    .breaking-label {
      background: var(--secondary);
      color: #fff;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 0.6875rem;
      padding: 3px 8px;
      border-radius: 2px;
      letter-spacing: 0.05em;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .breaking-ticker {
      display: inline-block;
      color: #cbd5e1;
      cursor: pointer;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 480px;
    }
    .breaking-ticker:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .top-links {
      display: flex;
      gap: 16px;
      list-style: none;
      align-items: center;
    }
    .top-links a {
      color: #cbd5e1;
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 6px 4px;
      transition: color 0.15s;
    }
    .top-links a:hover {
      color: #ffffff;
    }
    .theme-toggle-btn {
      background: #1e293b;
      border: 1px solid #334155;
      color: #f1f5f9;
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .theme-toggle-btn:hover {
      background: #334155;
    }

    /* ==================== 2. MAIN HEADER (EDITORIAL LOGO + 728x90 BANNER) ==================== */
    .main-header {
      background: var(--bg-header);
      border-bottom: 1px solid var(--border-color);
      padding: 22px 0;
    }
    .header-layout {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand-group {
      display: flex;
      flex-direction: column;
    }
    .site-logo, h1.site-logo {
      font-size: 2.125rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--text-main);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      line-height: 1;
      margin: 0;
      padding: 0;
    }
    .brand-symbol {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      display: inline-flex;
    }
    .logo-text-wrap {
      display: inline-flex;
      align-items: baseline;
      letter-spacing: -0.04em;
    }
    .logo-title-main {
      font-weight: 900;
      color: var(--text-main);
    }
    .logo-title-sub {
      font-weight: 800;
      color: var(--primary);
    }
    [data-theme="dark"] .logo-title-main {
      color: #f8fafc;
    }
    [data-theme="dark"] .logo-title-sub {
      color: #38bdf8;
    }
    .site-tagline {
      font-size: 0.75rem;
      color: var(--text-subtle);
      margin-top: 6px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    /* Editorial Sponsor Banner Area (728x90 Magazine slot) */
    .header-banner {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      color: #ffffff;
      border-radius: var(--radius-md);
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      max-width: 680px;
      width: 100%;
      border: 1px solid #334155;
    }
    .banner-text h4 {
      font-size: 1rem;
      font-weight: 800;
      color: #38bdf8;
      margin-bottom: 2px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .banner-text p {
      font-size: 0.8125rem;
      color: #94a3b8;
    }
    .banner-badge {
      background: var(--secondary);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 6px 14px;
      border-radius: var(--radius-sm);
      white-space: nowrap;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
    }
    .banner-badge:hover {
      background: var(--secondary-hover);
    }

    /* ==================== 3. STICKY NAV BAR (MORENEWS ICONIC DARK/NAV BAR) ==================== */
    .main-nav-bar {
      background: var(--bg-nav);
      color: #f8fafc;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
    .nav-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 50px;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 2px;
      height: 100%;
    }
    .nav-item-btn {
      background: none;
      border: none;
      color: #cbd5e1;
      padding: 0 16px;
      height: 50px;
      display: inline-flex;
      align-items: center;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      position: relative;
    }
    .nav-item-btn:hover {
      color: #ffffff;
      background: rgba(255,255,255,0.06);
    }
    .nav-item-btn.active {
      color: #ffffff;
      background: var(--secondary);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-search-form {
      display: flex;
      align-items: center;
      position: relative;
    }
    .nav-search-input {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: var(--radius-sm);
      color: #ffffff;
      padding: 7px 36px 7px 12px;
      font-size: 0.8125rem;
      width: 180px;
      outline: none;
      transition: width 0.2s, background 0.2s, border-color 0.2s;
    }
    .nav-search-input::placeholder {
      color: #94a3b8;
    }
    .nav-search-input:focus {
      width: 240px;
      background: rgba(255,255,255,0.2);
      border-color: #38bdf8;
    }
    .nav-search-submit {
      position: absolute;
      right: 2px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #cbd5e1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      padding: 0;
    }
    .nav-search-submit:hover {
      color: #ffffff;
    }
    .nav-guest-btn {
      background: var(--primary);
      color: #ffffff;
      font-size: 0.8125rem;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      border: none;
      transition: background 0.15s;
    }
    .nav-guest-btn:hover {
      background: var(--primary-dark);
    }
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 1.25rem;
      cursor: pointer;
      padding: 6px;
    }

    /* ==================== 4. MORENEWS MAGAZINE HERO GRID ==================== */
    .magazine-hero-section {
      padding: 24px 0 16px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      grid-template-rows: repeat(2, minmax(240px, 1fr));
      gap: 16px;
      align-items: stretch;
    }
    .hero-main-card {
      grid-row: span 2;
      position: relative;
      background: #0f172a;
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px 28px;
      min-height: 496px;
      box-shadow: var(--shadow-md);
      background-size: cover;
      background-position: center;
      border: 1px solid var(--border-color);
      text-decoration: none;
    }
    .hero-main-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.85) 60%, rgba(15,23,42,0.98) 100%);
      transition: opacity 0.2s ease;
      pointer-events: none;
      z-index: 1;
    }
    .hero-main-card:hover::before {
      background: linear-gradient(180deg, rgba(15,23,42,0.2) 0%, rgba(15,23,42,0.92) 55%, #0f172a 100%);
    }
    .hero-sub-card {
      position: relative;
      background: #1e293b;
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px 22px;
      min-height: 240px;
      box-shadow: var(--shadow-md);
      background-size: cover;
      background-position: center;
      border: 1px solid var(--border-color);
      text-decoration: none;
    }
    .hero-sub-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,23,42,0.15) 0%, rgba(15,23,42,0.88) 65%, rgba(15,23,42,0.98) 100%);
      transition: opacity 0.2s ease;
      pointer-events: none;
      z-index: 1;
    }
    .hero-sub-card:hover::before {
      background: linear-gradient(180deg, rgba(15,23,42,0.25) 0%, rgba(15,23,42,0.94) 60%, #0f172a 100%);
    }
    .hero-card-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      width: 100%;
    }
    .category-badge {
      display: inline-block;
      background: var(--secondary);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      padding: 4px 9px;
      border-radius: 3px;
      letter-spacing: 0.04em;
      margin-bottom: 10px;
    }
    .category-badge.blue { background: #0284c7; }
    .category-badge.green { background: #059669; }
    .category-badge.purple { background: #7c3aed; }
    .category-badge.amber { background: #d97706; }

    .hero-main-title {
      font-size: 1.65rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 10px;
      color: #ffffff;
      text-shadow: 0 2px 6px rgba(0,0,0,0.6);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .hero-sub-title {
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 8px;
      color: #ffffff;
      text-shadow: 0 2px 6px rgba(0,0,0,0.6);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .hero-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 12px;
      font-size: 0.8125rem;
      color: #cbd5e1;
    }

    /* ==================== 5. SUB-BANNER / TICKER ROW (4 CARDS) ==================== */
    .trending-banner-row {
      padding: 16px 0 28px;
    }
    .trending-mini-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .mini-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 16px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    }
    .mini-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .mini-card-tag {
      font-size: 0.6875rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 6px;
    }
    .mini-card-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 8px;
    }
    .mini-card-date {
      font-size: 0.75rem;
      color: var(--text-subtle);
    }

    /* Main Content Top Spacing */
    #main-content {
      padding-top: 24px;
    }

    /* Category Archive Header Banner (MoreNews Magazine Style) */
    .category-header-banner {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 28px 32px;
      margin-bottom: 30px;
      box-shadow: var(--shadow-sm);
      border-left: 5px solid var(--secondary);
    }
    .category-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8125rem;
      color: var(--text-subtle);
      margin-bottom: 12px;
    }
    .category-breadcrumbs a, .category-breadcrumbs button {
      color: var(--text-muted);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font-size: inherit;
    }
    .category-breadcrumbs a:hover, .category-breadcrumbs button:hover {
      color: var(--primary);
    }
    .category-header-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .category-header-title {
      font-size: 1.85rem;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.25;
      margin: 0;
    }
    .category-header-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-top: 6px;
      margin-bottom: 0;
      max-width: 820px;
    }
    .category-header-meta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      background: var(--bg-subtle);
      border: 1px solid var(--border-color);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* ==================== 6. MAGAZINE 2-COLUMN LAYOUT ==================== */
    .magazine-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 32px;
      margin-bottom: 48px;
    }

    /* Section Header bar in MoreNews style */
    .mag-section-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid var(--text-main);
      padding-bottom: 8px;
      margin-bottom: 20px;
    }
    .mag-section-title {
      font-size: 1.1875rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .mag-section-title::before {
      content: "";
      width: 4px;
      height: 18px;
      background: var(--secondary);
      display: inline-block;
      border-radius: 1px;
    }
    .mag-section-extra {
      font-size: 0.8125rem;
      color: var(--text-subtle);
      font-weight: 600;
    }

    /* Article Feed Grid in MoreNews style (2 columns) */
    .mag-feed-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .mag-card-thumb {
      width: 100%;
      height: 190px;
      position: relative;
      overflow: hidden;
      background: #0f172a;
    }
    .mag-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .mag-article-card:hover .mag-card-thumb img {
      transform: scale(1.05);
    }
    .mag-card-thumb .category-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      box-shadow: 0 2px 4px rgba(0,0,0,0.3);
      margin-bottom: 0;
    }

    .mag-article-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    }
    .mag-article-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .mag-card-header {
      background: var(--bg-subtle);
      border-bottom: 1px solid var(--border-color);
      padding: 18px 20px 14px;
    }
    .mag-card-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }
    .mag-card-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      color: var(--text-subtle);
      margin-bottom: 8px;
    }
    .mag-card-title {
      font-size: 1.125rem;
      font-weight: 800;
      line-height: 1.35;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .mag-card-excerpt {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 16px;
    }
    .mag-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8125rem;
      color: var(--primary);
      font-weight: 700;
      padding-top: 12px;
      border-top: 1px solid var(--border-color);
    }

    /* ==================== 7. MAGAZINE SIDEBAR ==================== */
    .mag-sidebar {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .sidebar-widget {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }
    .widget-title {
      font-size: 1.0625rem;
      font-weight: 800;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: -0.01em;
      border-bottom: 2px solid var(--primary);
      padding-bottom: 8px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    /* Popular Posts numbered list */
    .popular-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      list-style: none;
    }
    .popular-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      cursor: pointer;
    }
    .popular-num {
      font-size: 1.25rem;
      font-weight: 900;
      color: #64748b;
      line-height: 1;
      width: 24px;
      text-align: center;
    }
    .popular-item:hover .popular-num {
      color: var(--secondary);
    }
    .popular-content .popular-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.4;
      margin-bottom: 4px;
    }
    .popular-content span {
      font-size: 0.75rem;
      color: var(--text-subtle);
    }

    /* Category List Widget */
    .cat-tax-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      list-style: none;
    }
    .cat-tax-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 12px;
      background: var(--bg-subtle);
      border-radius: var(--radius-sm);
      font-size: 0.8125rem;
      font-weight: 600;
      cursor: pointer;
      color: var(--text-main);
      transition: background 0.15s, color 0.15s;
    }
    .cat-tax-item:hover {
      background: var(--primary);
      color: #ffffff;
    }
    .cat-count {
      background: rgba(0,0,0,0.06);
      padding: 2px 8px;
      border-radius: 10px;
      font-size: 0.75rem;
    }

    /* Guest post callout widget */
    .guest-cta-widget {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      color: #ffffff;
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid #334155;
    }
    .guest-cta-widget h4, .guest-cta-title {
      font-size: 1.125rem;
      font-weight: 800;
      color: #38bdf8;
      margin-bottom: 8px;
    }
    .guest-cta-widget p {
      font-size: 0.875rem;
      color: #cbd5e1;
      line-height: 1.5;
      margin-bottom: 16px;
    }
    .btn-widget-cta {
      display: block;
      width: 100%;
      text-align: center;
      background: var(--secondary);
      color: #ffffff;
      font-weight: 700;
      font-size: 0.875rem;
      padding: 10px;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      transition: background 0.15s;
    }
    .btn-widget-cta:hover {
      background: var(--secondary-hover);
    }

    /* ==================== 8. ARTICLE VIEW & STATIC PAGES ==================== */
    .article-view-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 32px;
      padding: 24px 0 60px;
    }
    .article-wrapper {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 40px;
      box-shadow: var(--shadow-sm);
    }
    .breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8125rem;
      color: var(--text-subtle);
      margin-bottom: 20px;
      list-style: none;
    }
    .breadcrumbs button {
      background: none;
      border: none;
      color: var(--text-subtle);
      cursor: pointer;
      font-size: inherit;
    }
    .breadcrumbs button:hover {
      color: var(--primary);
      text-decoration: underline;
    }
    .art-header-block {
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 20px;
      margin-bottom: 28px;
    }
    .art-title-text {
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.25;
      color: var(--text-main);
      margin: 12px 0;
    }
    .art-excerpt-lead {
      font-size: 1.125rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .art-byline-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 18px;
      font-size: 0.8125rem;
      color: var(--text-subtle);
    }
    .art-author-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .art-avatar-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1rem;
    }
    .art-avatar-img {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--border-color);
      flex-shrink: 0;
    }
    .article-body {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: var(--text-main);
    }
    .article-body figure {
      margin: 32px 0;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      background: var(--bg-card);
    }
    .article-body figure img {
      width: 100%;
      max-height: 480px;
      object-fit: cover;
      display: block;
      border-radius: var(--radius-md);
    }
    .article-body figcaption {
      display: none;
    }
    .article-body h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin: 36px 0 16px;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 8px;
    }
    .article-body h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 28px 0 12px;
    }
    .article-body p {
      margin-bottom: 20px;
    }
    .article-body > strong,
    .article-body p strong:only-child {
      display: block;
      margin-bottom: 22px;
      line-height: 1.8;
    }
    .article-body ul, .article-body ol {
      margin: 16px 0 24px 28px;
    }
    .article-body li {
      margin-bottom: 8px;
    }
    .article-body table {
      width: 100%;
      border-collapse: collapse;
      margin: 28px 0;
      font-size: 0.9375rem;
    }
    .article-body th, .article-body td {
      padding: 10px 14px;
      border: 1px solid var(--border-color);
      text-align: left;
    }
    .article-body th {
      background: var(--bg-subtle);
      font-weight: 700;
    }
    .article-body blockquote {
      border-left: 4px solid var(--secondary);
      background: var(--bg-subtle);
      padding: 16px 20px;
      margin: 24px 0;
      font-style: italic;
      color: var(--text-muted);
    }

    /* ==================== AUTHOR PROFILE PAGE ==================== */
    .author-profile-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 36px 40px;
      box-shadow: var(--shadow-sm);
    }
    .author-profile-header {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .author-profile-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary);
      flex-shrink: 0;
    }
    .author-profile-name {
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 4px;
      line-height: 1.2;
    }
    .author-profile-role {
      display: inline-block;
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--primary);
      letter-spacing: 0.03em;
      margin-bottom: 10px;
    }
    .author-profile-bio {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 560px;
    }
    .art-author-link {
      color: inherit;
      text-decoration: none;
      cursor: pointer;
    }
    .art-author-link:hover {
      color: var(--primary);
      text-decoration: underline;
    }
    .hero-meta .art-author-link {
      color: #ffffff;
    }
    .hero-meta .art-author-link:hover {
      color: #38bdf8;
      text-decoration: underline;
    }
    @media (max-width: 600px) {
      .author-profile-header {
        flex-direction: column;
        text-align: center;
      }
      .author-profile-bio {
        max-width: 100%;
      }
    }

    /* ==================== 9. 4-COLUMN MAGAZINE FOOTER ==================== */
    .magazine-footer {
      background: #0b1120;
      color: #cbd5e1;
      padding: 56px 0 24px;
      border-top: 4px solid var(--primary);
      margin-top: 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 36px;
      margin-bottom: 40px;
    }
    .footer-col h4, .footer-col-title {
      color: #ffffff;
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 18px;
      position: relative;
      padding-bottom: 8px;
      border-bottom: 2px solid #1e293b;
    }
    .footer-col h4::after, .footer-col-title::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 32px;
      height: 2px;
      background: var(--secondary);
    }
    .footer-col p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #94a3b8;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a, .footer-links button {
      color: #cbd5e1;
      font-size: 0.875rem;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      padding: 0;
      transition: color 0.15s;
    }
    .footer-links a:hover, .footer-links button:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      border-top: 1px solid #1e293b;
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8125rem;
      color: #cbd5e1;
    }

    /* Utility */
    /* Utility */
    .hidden { display: none !important; }
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    /* Buttons & Actions */
    .btn-primary {
      background: var(--primary);
      color: #ffffff;
      font-size: 0.875rem;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.15s;
    }
    .btn-primary:hover {
      background: var(--primary-dark);
    }
    .btn-secondary {
      background: var(--bg-subtle);
      color: var(--text-main);
      font-size: 0.875rem;
      font-weight: 600;
      padding: 9px 18px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.15s, border-color 0.15s;
    }
    .btn-secondary:hover {
      background: var(--bg-card);
      border-color: var(--primary);
    }
    .btn-outline {
      background: transparent;
      color: var(--text-main);
      font-size: 0.875rem;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      transition: all 0.15s;
    }
    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--bg-subtle);
    }
    .btn-contribute {
      background: var(--primary);
      color: #ffffff;
      font-size: 0.9375rem;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.15s, transform 0.1s;
      text-decoration: none;
    }
    .btn-contribute:hover {
      background: var(--primary-dark);
      color: #ffffff;
    }

    /* Forms & Contact Desk Styles */
    .editorial-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    @media (max-width: 640px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-label {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--text-main);
      display: block;
      letter-spacing: 0.02em;
    }
    .form-control {
      width: 100%;
      padding: 11px 14px;
      font-size: 0.875rem;
      font-family: inherit;
      color: var(--text-main);
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
      box-sizing: border-box;
    }
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
    }
    [data-theme="dark"] .form-control:focus {
      box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
    }
    select.form-control {
      cursor: pointer;
    }
    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    /* Callout & Highlight Boxes */
    .callout-box {
      background: var(--bg-subtle);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 28px;
      margin: 28px 0;
    }
    .article-category-badge {
      display: inline-block;
      background: var(--secondary);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 2px;
      letter-spacing: 0.04em;
      margin-bottom: 12px;
    }

    /* ==================== MOBILE DRAWER & NAVIGATION SYSTEM ==================== */
    .nav-left-mobile {
      display: flex;
      align-items: center;
      gap: 12px;
      height: 100%;
    }
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #ffffff;
      padding: 8px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      line-height: 0;
      transition: background 0.15s ease;
    }
    .mobile-menu-toggle:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    .mobile-drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.65);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .mobile-drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .mobile-nav-drawer {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: min(85vw, 320px);
      background: var(--bg-card);
      color: var(--text-main);
      z-index: 1000;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      transform: translateX(-100%);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      overflow-y: auto;
    }
    .mobile-nav-drawer.active {
      transform: translateX(0);
    }
    .mobile-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: var(--bg-nav);
      color: #ffffff;
    }
    .mobile-drawer-title {
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .mobile-drawer-close {
      background: none;
      border: none;
      color: #cbd5e1;
      cursor: pointer;
      padding: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
    }
    .mobile-drawer-close:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
    }
    .mobile-drawer-search {
      padding: 14px 16px;
      border-bottom: 1px solid var(--border-color);
      background: var(--bg-subtle);
    }
    .mobile-drawer-search form {
      display: flex;
      position: relative;
      width: 100%;
    }
    .mobile-search-input {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      padding: 9px 38px 9px 12px;
      font-size: 0.875rem;
      color: var(--text-main);
      outline: none;
    }
    .mobile-search-input:focus {
      border-color: var(--primary);
    }
    .mobile-search-submit {
      position: absolute;
      right: 4px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--text-subtle);
      cursor: pointer;
      padding: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mobile-drawer-links {
      list-style: none;
      padding: 12px 0;
      margin: 0;
      display: flex;
      flex-direction: column;
    }
    .mobile-nav-item {
      width: 100%;
      display: flex;
      align-items: center;
      padding: 12px 20px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-main);
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    .mobile-nav-item:hover {
      background: var(--bg-subtle);
      color: var(--primary);
    }
    .mobile-nav-item.active {
      color: var(--primary);
      background: rgba(0, 86, 179, 0.08);
      border-left: 4px solid var(--primary);
      font-weight: 700;
    }
    .mobile-drawer-footer {
      margin-top: auto;
      padding: 16px 20px;
      border-top: 1px solid var(--border-color);
      background: var(--bg-subtle);
    }
    .mobile-drawer-guest-btn {
      width: 100%;
      background: var(--primary);
      color: #ffffff;
      font-weight: 700;
      font-size: 0.875rem;
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      text-align: center;
    }

    /* Responsive Table Container */
    .article-body table {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-collapse: collapse;
      margin: 28px 0;
      font-size: 0.9375rem;
    }
    .article-body table::-webkit-scrollbar {
      height: 6px;
    }
    .article-body table::-webkit-scrollbar-thumb {
      background: var(--border-color);
      border-radius: 3px;
    }

    /* ==================== RESPONSIVE BREAKPOINTS ==================== */
    /* Tablets & Small Laptops (max-width: 1024px) */
    @media (max-width: 1024px) {
      .container {
        padding: 0 16px;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
      }
      .hero-main-card {
        grid-row: span 1;
        min-height: 360px;
        padding: 24px 20px;
      }
      .hero-sub-card {
        min-height: 200px;
        padding: 20px;
      }
      .magazine-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .article-view-layout {
        grid-template-columns: 1fr;
      }
      .trending-mini-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
      .header-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 0;
      }
      .header-banner {
        max-width: 100%;
      }
      .gp-tool-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
    }

    /* Tablets & Phablets (max-width: 768px) */
    @media (max-width: 768px) {
      .nav-menu {
        display: none !important;
      }
      .mobile-menu-toggle {
        display: inline-flex !important;
      }
      .nav-actions .nav-search-form {
        display: none !important;
      }
      .nav-actions .nav-guest-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
      }
      .top-bar-inner {
        height: auto;
        min-height: 38px;
        padding: 4px 0;
      }
      .top-bar-left {
        flex: 1;
        min-width: 0;
      }
      .top-bar-left .breaking-ticker {
        display: none;
      }
      .top-date {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .top-bar-right {
        flex-shrink: 0;
      }
      .top-links {
        display: none !important;
      }
      .hero-main-card {
        min-height: 280px;
        padding: 20px 16px;
      }
      .hero-main-title {
        font-size: 1.35rem;
        line-height: 1.3;
      }
      .hero-sub-card {
        min-height: 180px;
        padding: 16px;
      }
      .hero-sub-title {
        font-size: 1.05rem;
      }
      .mag-feed-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .trending-mini-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .article-wrapper {
        padding: 20px 14px;
      }
      .art-title-text {
        font-size: 1.5rem;
        line-height: 1.25;
      }
      .author-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
      .author-profile-card {
        padding: 24px 16px;
      }
      .gp-interactive-tool-box {
        padding: 20px 16px;
        margin: 24px 0;
      }
      .gp-tool-title {
        font-size: 1.1rem;
      }
      .gp-tool-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .gp-tool-results {
        grid-template-columns: 1fr 1fr;
        padding: 14px;
        gap: 12px;
      }
      .gp-result-value {
        font-size: 1.25rem;
      }
      .gp-related-reading-box {
        padding: 18px 16px;
      }
      .gp-related-reading-item {
        flex-direction: column;
        gap: 4px;
      }
    }

    /* Small Mobile Phones (max-width: 480px) */
    @media (max-width: 480px) {
      .container {
        padding: 0 12px;
      }
      .top-bar-inner {
        font-size: 0.75rem;
      }
      .top-date svg {
        display: none;
      }
      .logo-title-main, .logo-title-sub {
        font-size: 1.5rem;
      }
      .brand-symbol {
        width: 32px;
        height: 32px;
      }
      .site-tagline {
        display: none;
      }
      .hero-main-card {
        min-height: 250px;
        padding: 16px 12px;
      }
      .hero-main-title {
        font-size: 1.2rem;
      }
      .art-title-text {
        font-size: 1.35rem;
      }
      .article-body {
        font-size: 1rem;
        line-height: 1.75;
      }
      .article-body table th, .article-body table td {
        padding: 8px 10px;
        font-size: 0.8125rem;
      }
      .gp-tool-results {
        grid-template-columns: 1fr;
      }
      .gp-load-more-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.875rem;
      }
      .faq-question {
        padding: 14px 16px;
        font-size: 0.95rem;
      }
      .faq-answer {
        padding: 0 16px 14px 16px;
        font-size: 0.875rem;
      }
    }

    /* FAQ Section Accordion Styles */
    .faq-section {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 2px solid var(--border-color);
    }
    .faq-item {
      background: var(--bg-subtle);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      padding: 0;
      transition: all 0.2s ease-in-out;
      overflow: hidden;
    }
    .faq-item[open] {
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
    }
    .faq-question {
      padding: 16px 20px;
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--text-main);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    .faq-question::-webkit-details-marker {
      display: none;
    }
    .faq-question::after {
      content: '+';
      font-size: 1.3rem;
      line-height: 1;
      font-weight: 400;
      color: var(--primary);
      transition: transform 0.2s ease;
    }
    .faq-item[open] .faq-question::after {
      content: '−';
    }
    .faq-answer {
      padding: 0 20px 16px 20px;
      color: var(--text-muted);
      line-height: 1.65;
      font-size: 0.95rem;
      margin: 0;
    }

    /* ==================== 10. EMBEDDED INTERACTIVE CALCULATORS & TOOLS ==================== */
    .gp-interactive-tool-box {
      background: var(--bg-card);
      border: 2px solid var(--primary);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      margin: 36px 0;
      box-shadow: var(--shadow-md);
    }
    .gp-tool-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 14px;
      margin-bottom: 20px;
    }
    .gp-tool-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
    }
    .gp-tool-badge {
      background: var(--primary);
      color: #fff;
      font-size: 0.6875rem;
      font-weight: 800;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      letter-spacing: 0.05em;
    }
    .gp-tool-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-bottom: 20px;
    }
    .gp-tool-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .gp-tool-label {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .gp-tool-input, .gp-tool-select {
      background: var(--bg-subtle);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 0.9375rem;
      color: var(--text-main);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .gp-tool-input:focus, .gp-tool-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
    }
    .gp-tool-btn {
      background: var(--secondary);
      color: #fff;
      font-weight: 800;
      font-size: 0.9375rem;
      border: none;
      border-radius: var(--radius-sm);
      padding: 12px 24px;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      width: 100%;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .gp-tool-btn:hover {
      background: var(--secondary-hover);
      transform: translateY(-1px);
    }
    .gp-tool-results {
      background: var(--bg-subtle);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
    }
    .gp-result-item {
      display: flex;
      flex-direction: column;
    }
    .gp-result-label {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--text-subtle);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .gp-result-value {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--primary);
      margin-top: 4px;
    }
    .gp-tool-note {
      font-size: 0.75rem;
      color: var(--text-subtle);
      margin-top: 14px;
      line-height: 1.5;
    }

    /* Load More / Pagination Button */
    .gp-load-more-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 32px 0 16px;
      width: 100%;
    }
    .gp-load-more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--bg-card);
      color: var(--text-main);
      border: 2px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 13px 32px;
      font-size: 0.9375rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: all 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .gp-load-more-btn:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .gp-load-more-btn:active {
      transform: translateY(0);
    }
    .gp-load-more-btn.hidden {
      display: none !important;
    }

    /* Natural In-Article Internal Links (Inline on actual words) */
    .article-body a.gp-internal-link {
      color: var(--primary);
      text-decoration: underline;
      text-decoration-thickness: 1.5px;
      text-underline-offset: 3px;
      font-weight: 600;
      transition: all 0.15s ease;
    }
    .article-body a.gp-internal-link:hover {
      color: var(--secondary);
      background-color: rgba(2, 132, 199, 0.08);
      border-radius: 3px;
    }

    /* Recommended Further Reading & Related Guides Section (Below FAQs) */
    .gp-related-reading-box {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-left: 4px solid var(--primary);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      margin-top: 40px;
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }
    .gp-related-reading-title {
      font-size: 1.125rem;
      font-weight: 800;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 10px;
    }
    .gp-related-reading-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin: 0;
      padding: 0;
    }
    .gp-related-reading-item {
      display: flex;
      align-items: baseline;
      gap: 12px;
      font-size: 0.9375rem;
      line-height: 1.5;
    }
    .gp-related-reading-item::before {
      content: "→";
      color: var(--secondary);
      font-weight: 800;
      font-size: 1.125rem;
      line-height: 1;
    }
    .gp-related-reading-link {
      color: var(--text-main);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.15s ease;
    }
    .gp-related-reading-link:hover {
      color: var(--primary);
      text-decoration: underline;
    }
    .gp-related-reading-badge {
      font-size: 0.6875rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      background: var(--bg-subtle);
      border: 1px solid var(--border-color);
      color: var(--text-subtle);
      text-transform: uppercase;
      letter-spacing: 0.03em;
      flex-shrink: 0;
    }

    /* Static Page Custom Components & Guidelines Steps */
    .guideline-step-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--bg-subtle);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 18px 20px;
      margin-bottom: 16px;
      box-shadow: var(--shadow-sm);
    }
    .guideline-step-num {
      background: #eff6ff;
      color: var(--primary);
      border: 1.5px solid #bfdbfe;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-weight: 800;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      line-height: 1;
    }
    [data-theme="dark"] .guideline-step-num {
      background: #1e293b;
      color: var(--primary);
      border-color: #38bdf8;
    }
    .guideline-step-body {
      flex: 1;
      min-width: 0;
    }
    .guideline-step-title {
      margin: 0 0 6px !important;
      font-size: 1.0625rem !important;
      font-weight: 700 !important;
      color: var(--text-main) !important;
      line-height: 1.4 !important;
    }
    .guideline-step-desc {
      margin: 0 !important;
      font-size: 0.9375rem !important;
      color: var(--text-muted) !important;
      line-height: 1.6 !important;
    }
