  /* ==========================================================================
     1. ALL NEWS CATALOG STYLES (Sunodia Palette)
     ========================================================================== */
  .allnews-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #ffffff;
    padding-block: clamp(44px, 6vw, 76px);
  }
  .allnews-hero .hero-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
  }
  .allnews-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    color: #ffffff;
    margin: 0.5rem 0 0.75rem 0;
  }
  .allnews-desc {
    color: #cbd5e1;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0;
    line-height: 1.6;
  }

  .allnews-section {
    background: var(--bg);
    min-height: 70vh;
    padding: 3.5rem 0 6rem;
  }
  .allnews-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
  }

  /* Left Sidebar Year Card */
  .allnews-sidebar {
    width: 210px;
    flex-shrink: 0;
    position: sticky;
    top: 96px;
    z-index: 10;
  }
  .allnews-year-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    padding: 24px 20px;
  }
  .allnews-year-heading {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
  }
  .allnews-year-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .allnews-year-item {
    display: inline-block;
    text-decoration: none;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s ease;
    cursor: pointer;
    position: relative;
    width: fit-content;
  }
  .allnews-year-item:hover {
    color: var(--blue);
  }
  .allnews-year-bar {
    display: block;
    height: 2.5px;
    background: transparent;
    border-radius: 2px;
    margin-top: 4px;
    transition: background 0.2s ease, width 0.2s ease;
    width: 0;
  }
  .allnews-year-item.active {
    color: var(--navy);
    font-weight: 800;
    font-size: 1.12rem;
  }
  .allnews-year-item.active .allnews-year-bar {
    background: var(--blue);
    width: 100%;
  }

  /* Right Main Content Feed */
  .allnews-content {
    flex: 1;
    min-width: 0;
  }
  .allnews-feed {
    display: flex;
    flex-direction: column;
  }
  .allnews-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .allnews-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .allnews-year-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 1rem 0 2.2rem 0;
    padding-top: 1rem;
  }
  .allnews-year-divider-badge {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
    background: var(--surface);
    border: 1.5px solid var(--line);
    padding: 3px 14px;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
  }
  .allnews-year-divider-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, var(--line) 0%, transparent 100%);
  }
  .allnews-row-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  .allnews-thumb-wrap {
    width: 380px;
    max-width: 44%;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--line-soft);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .allnews-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }
  .allnews-row-card:hover .allnews-thumb-wrap img {
    transform: scale(1.04);
  }
  .allnews-body-wrap {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
  }
  .allnews-meta-row {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  .allnews-teaser {
    color: var(--ink-soft);
    font-weight: 500;
    width: 100%;
    margin-bottom: 2px;
  }
  .allnews-meta-sep {
    color: var(--muted-2);
  }
  .allnews-meta-date {
    color: var(--muted);
  }
  .allnews-meta-author {
    color: var(--muted);
  }
  .allnews-headline {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--ink);
    margin: 0;
    transition: color 0.2s ease;
  }
  .allnews-row-card:hover .allnews-headline {
    color: var(--blue);
  }

  .allnews-empty-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    padding: 4rem 2rem;
  }

  /* ==========================================================================
     2. ARTICLE DETAIL VIEW STYLES (Bungie-Style Top-Half Image & Bottom-Half News)
     ========================================================================== */
  .sunodia-article-view {
    background: #0c1731;
    min-height: 100vh;
    width: 100%;
    position: relative;
  }

  /* Top Half: Featured Main Image (Fit Left to Right & Zoomed to Fill) */
  .sunodia-hero-image-wrap {
    width: 100%;
    height: 50vh;
    min-height: 380px;
    max-height: 600px;
    position: relative;
    overflow: hidden;
    background: #081022;
  }

  .sunodia-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transform: scale(1.01);
  }

  .sunodia-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #091329 0%, #1a2d62 100%);
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
  }
  .sunodia-hero-placeholder .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
  }
  .sunodia-hero-placeholder i {
    font-size: 3.5rem;
    color: var(--blue-bright);
    opacity: 0.7;
  }

  /* Top Scrim for transparent navbar + bottom smooth blend into content */
  .sunodia-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(10, 18, 40, 0.7) 0%,
      rgba(10, 18, 40, 0.2) 80px,
      transparent 150px,
      rgba(12, 23, 49, 0.4) 85%,
      #0c1731 100%
    );
    pointer-events: none;
  }

  /* Bottom Half: News Content Section */
  .sunodia-article-content-section {
    background: #0c1731;
    color: #f1f5f9;
    min-height: 50vh;
    padding: clamp(2.5rem, 5vw, 4rem) 1.5rem clamp(4rem, 6vw, 6rem);
    position: relative;
    box-sizing: border-box;
  }

  .sunodia-article-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .sunodia-breadcrumb {
    margin-bottom: 2rem;
  }
  .sunodia-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    padding: 7px 16px 7px 12px;
    border-radius: var(--r-pill);
    background: rgba(255, 215, 79, 0.1);
    border: 1px solid rgba(255, 215, 79, 0.25);
    width: fit-content;
  }
  .sunodia-back-link:hover {
    color: #ffffff;
    background: rgba(255, 215, 79, 0.22);
    border-color: var(--gold);
    transform: translateX(-3px);
  }

  .sunodia-article-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 1.75rem;
  }

  .sunodia-article-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.018em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
  }

  .sunodia-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    flex-wrap: wrap;
  }
  .sunodia-meta-date {
    color: #e2e8f0;
  }
  .sunodia-meta-sep {
    color: #94a3b8;
    user-select: none;
  }
  .sunodia-meta-author {
    color: #cbd5e1;
  }

  /* Typography inside Article Body */
  .sunodia-article-body {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #e2e8f0;
  }
  .sunodia-article-body p {
    margin-bottom: 1.5rem;
  }
  .sunodia-article-body h2, .sunodia-article-body h3, .sunodia-article-body h4 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  .sunodia-article-body h2 {
    font-size: 1.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.5rem;
  }
  .sunodia-article-body h3 {
    font-size: 1.35rem;
  }
  .sunodia-article-body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.15s ease;
  }
  .sunodia-article-body a:hover {
    color: #ffffff;
  }
  .sunodia-article-body blockquote {
    border-left: 4px solid var(--gold);
    background: rgba(255, 215, 79, 0.08);
    padding: 16px 22px;
    margin: 1.8rem 0;
    color: #ffffff;
    font-style: italic;
    border-radius: 0 8px 8px 0;
  }
  .sunodia-article-body pre {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 16px 20px;
    color: #e2e8f0;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.92rem;
    overflow-x: auto;
    margin: 1.8rem 0;
  }
  .sunodia-article-body code {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.9em;
  }
  .sunodia-article-body pre code {
    background: transparent;
    padding: 0;
    color: inherit;
  }
  .sunodia-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }
  .sunodia-article-body p:has(> img) {
    margin-bottom: 2rem;
  }
  .sunodia-article-body ul {
    list-style: disc outside !important;
    padding-left: 2rem !important;
    margin-bottom: 1.5rem !important;
    color: #e2e8f0;
  }
  .sunodia-article-body ol {
    list-style: decimal outside !important;
    padding-left: 2rem !important;
    margin-bottom: 1.5rem !important;
    color: #e2e8f0;
  }
  .sunodia-article-body ol[type="1"] { list-style-type: decimal !important; }
  .sunodia-article-body ol[type="a"] { list-style-type: lower-alpha !important; }
  .sunodia-article-body ol[type="A"] { list-style-type: upper-alpha !important; }
  .sunodia-article-body ol[type="i"] { list-style-type: lower-roman !important; }
  .sunodia-article-body ol[type="I"] { list-style-type: upper-roman !important; }
  .sunodia-article-body ul ul { list-style-type: circle !important; }
  .sunodia-article-body ul ul ul { list-style-type: square !important; }
  .sunodia-article-body ol ol { list-style-type: lower-alpha !important; }
  .sunodia-article-body li {
    display: list-item !important;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
  }
  .sunodia-article-body hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin: 2.5rem 0;
  }

  /* Button Sunodia Primary */
  .btn-sunodia-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #ffffff;
    border: 0;
    border-radius: var(--r-sm);
    padding: 11px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    cursor: pointer;
  }
  .btn-sunodia-primary:hover {
    background: var(--blue-bright);
    color: #ffffff;
    transform: translateY(-1px);
  }

  /* More News Section */
  .sunodia-more-section {
    margin-top: 4.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
  }
  .sunodia-more-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .sunodia-more-head h2 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin: 0;
    text-transform: uppercase;
  }
  .sunodia-more-link {
    color: var(--blue);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
  }
  .sunodia-more-link:hover {
    color: var(--blue-bright);
  }
  .sunodia-more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .sunodia-more-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .sunodia-more-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue-soft);
    box-shadow: var(--shadow-md);
  }
  .sunodia-more-img-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--line-soft);
  }
  .sunodia-more-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .sunodia-more-card:hover .sunodia-more-img-wrap img {
    transform: scale(1.05);
  }
  .sunodia-more-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .sunodia-card-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue-text);
    background: rgba(44, 122, 255, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 0.6rem;
  }
  .sunodia-more-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--navy);
    margin: 0 0 0.75rem 0;
    flex: 1;
    transition: color 0.2s ease;
  }
  .sunodia-more-card:hover .sunodia-more-card-title {
    color: var(--blue);
  }
  .sunodia-more-card-meta {
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ==========================================================================
     3. RESPONSIVE MEDIA QUERIES
     ========================================================================== */
  @media (max-width: 860px) {
    .allnews-layout {
      flex-direction: column;
      gap: 28px;
    }
    .allnews-sidebar {
      width: 100%;
      position: static;
    }
    .allnews-year-card {
      padding: 16px;
    }
    .allnews-year-list {
      flex-direction: row;
      overflow-x: auto;
      gap: 18px;
      padding-bottom: 6px;
    }
    .allnews-year-item {
      flex-shrink: 0;
    }
    .allnews-row-card {
      flex-direction: column;
      gap: 16px;
    }
    .allnews-thumb-wrap {
      width: 100%;
      max-width: 100%;
    }
  }

  @media (max-width: 960px) {
    .sunodia-hero-image-wrap {
      height: 46vh;
      min-height: 280px;
      max-height: 440px;
    }
    .sunodia-article-content-section {
      padding: 2.25rem 1.25rem 4rem;
    }
    .sunodia-article-title {
      font-size: 1.85rem;
    }
  }
