    /* ====== Hero (D variation: chart + balloon) ====== */
    .top-hero {
      position: relative;
      height: 720px;
      max-width: 100%;
      overflow: hidden;
      background: linear-gradient(135deg, #060d22 0%, #0e1a3a 30%, #1e2a5a 65%, #2c2068 100%);
    }
    .top-hero-art {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .top-hero-art svg { width: 100%; height: 100%; display: block; }
    .top-hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: calc(var(--header-height) + 60px) 5% 60px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: #fff;
    }
    .top-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 16px;
      border: 1.5px solid #ff8e4d;
      border-radius: 6px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: #ff8e4d;
      width: fit-content;
      text-shadow: 0 0 8px rgba(255, 142, 77, 0.5);
    }
    .top-hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #ff8e4d;
      box-shadow: 0 0 6px #ff8e4d;
      animation: hero-dot-pulse 2s ease-in-out infinite;
    }
    @keyframes hero-dot-pulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 6px #ff8e4d, 0 0 10px rgba(255, 142, 77, 0.55); }
      50%      { opacity: 0.65; box-shadow: 0 0 9px #ff8e4d, 0 0 16px rgba(255, 142, 77, 0.85); }
    }
    .top-hero-title {
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1.05;
      margin: 22px 0 18px;
    }
    .top-hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, #fff 0%, #ffd4b3 55%, #ff8e4d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .top-hero-tagline {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.92);
      max-width: 620px;
    }
    .top-hero-meta {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      flex-wrap: wrap;
    }
    .top-search {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 22px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      backdrop-filter: blur(8px);
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      width: fit-content;
      cursor: text;
      transition: border-color 0.2s, background 0.2s;
    }
    .top-search:focus-within {
      border-color: rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.1);
    }
    .top-search-input {
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-size: 0.9rem;
      font-family: inherit;
      width: 200px;
      min-width: 0;
    }
    .top-search-input:focus-visible {
      outline: 2px solid rgba(255, 255, 255, 0.5);
      outline-offset: 2px;
      border-radius: 4px;
    }
    .top-search-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }
    .top-search-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.6);
      cursor: pointer;
      padding: 0;
      transition: color 0.2s;
    }
    .top-search-btn:hover {
      color: #fff;
    }
    .top-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 26px;
      background: #f0683a;
      border-radius: 999px;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
    }
    .top-cta svg { width: 16px; height: 16px; }

    /* ====== Section: Latest Daily Scoop ====== */
    .lds-section {
      background: #fbf6ef;
      padding: 100px 0 120px;
    }
    .lds-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 5%;
    }
    .lds-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 56px;
    }
    .lds-eyebrow {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 1rem;
      color: #f0683a;
      letter-spacing: 0.08em;
      margin-bottom: 6px;
      display: block;
    }
    .lds-title {
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: -0.025em;
      color: #0a0a0f;
    }
    .lds-meta {
      font-size: 0.8rem;
      color: #888;
      letter-spacing: 0.04em;
      line-height: 1.7;
      max-width: 320px;
      text-align: right;
    }

    /* Featured (latest) edition - full width */
    .lds-featured {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      padding: 48px 50px;
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(14, 26, 58, 0.08);
      margin-bottom: 60px;
      position: relative;
      overflow: hidden;
    }
    .lds-featured::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 6px; height: 100%;
      background: linear-gradient(180deg, #f0683a 0%, #2c2068 100%);
    }
    .lds-featured-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 18px;
    }
    .lds-date {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      color: #888;
    }
    .lds-latest-flag {
      margin-left: auto;
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      font-weight: 700;
      padding: 5px 11px;
      background: #f0683a;
      color: #fff;
      border-radius: 999px;
    }
    .lds-featured-title {
      font-size: 1.85rem;
      font-weight: 800;
      line-height: 1.45;
      letter-spacing: -0.02em;
      color: #0a0a0f;
      margin: 0 0 18px;
    }
    .lds-featured-lead {
      font-size: 0.95rem;
      line-height: 1.95;
      color: #555;
      margin: 0;
    }

    /* Main topic row (01 + title + lead) */
    .lds-main-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
    }
    .lds-main-num {
      width: 22px;
      flex-shrink: 0;
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 0.95rem;
      color: #f0683a;
      letter-spacing: 0.04em;
      padding-top: 11px;
    }
    .lds-main-body { flex: 1; min-width: 0; }
    .lds-cast-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 28px;
      padding-top: 22px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    .lds-cast {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .lds-cast-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      overflow: hidden;
      background: #fce5d4;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
      flex-shrink: 0;
    }
    .lds-cast-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .lds-cast-meta { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
    .lds-cast-title { font-size: 0.62rem; color: #888; letter-spacing: 0.04em; }
    .lds-cast-name { font-size: 0.85rem; font-weight: 700; color: #0a0a0f; }

    .lds-topics-mini {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 26px;
    }
    .lds-topic-chip {
      font-size: 0.72rem;
      padding: 6px 12px;
      background: #fef0e6;
      color: #d44e1d;
      border-radius: 999px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .lds-topic-chip.featured { background: #2c2068; color: #ffd4b3; }

    /* Side topics — single column, header removed */
    .lds-side-topics-list {
      list-style: none;
      padding: 10px 0 4px;
      margin: 0 0 22px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
    }
    .lds-side-topics-list li {
      display: flex;
      align-items: baseline;
      gap: 12px;
      padding: 7px 0;
      border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    }
    .lds-side-topics-list li:last-child { border-bottom: none; }
    .lds-side-topic-num {
      width: 22px;
      flex-shrink: 0;
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 0.82rem;
      color: #aaa;
      letter-spacing: 0.04em;
    }
    .lds-side-topic-title {
      flex: 1;
      font-size: 0.85rem;
      font-weight: 500;
      color: #2a2a35;
      line-height: 1.55;
      letter-spacing: -0.005em;
    }

    /* Cast byline + CTA row */
    .lds-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .lds-cast-byline {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .lds-cast-stack {
      display: flex;
    }
    .lds-cast-stack img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 0 2px #fff;
      margin-left: -8px;
    }
    .lds-cast-stack img:first-child { margin-left: 0; }
    .lds-cast-byline-text {
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      color: #888;
      text-transform: uppercase;
      font-weight: 600;
    }
    .lds-featured-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      background: #0e1a3a;
      color: #fff;
      border-radius: 999px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      transition: background 0.2s;
    }
    .lds-featured-cta:hover { background: #2c2068; }

    /* Featured chart side */
    .lds-featured-visual {
      position: relative;
      background: linear-gradient(135deg, #060d22 0%, #1e2a5a 70%, #2c2068 100%);
      border-radius: 16px;
      overflow: hidden;
      min-height: 380px;
    }
    .lds-featured-visual svg { width: 100%; height: 100%; display: block; }
    .lds-featured-overlay {
      position: absolute;
      bottom: 24px; left: 24px; right: 24px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      display: flex;
      justify-content: space-between;
    }
    .lds-featured-overlay strong { color: #ff8e4d; font-weight: 700; }

    /* ====== 記事一覧 (2-column with sidebar) ====== */
    .lds-articles-header {
      margin-bottom: 32px;
      padding-top: 36px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    .lds-articles-eyebrow {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 1rem;
      color: #f0683a;
      letter-spacing: 0.08em;
      display: block;
      margin-bottom: 4px;
    }
    .lds-articles-title {
      font-size: 1.85rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0a0a0f;
      margin: 0;
    }
    .lds-articles-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 56px;
      align-items: start;
    }
    .lds-articles-main {
      display: flex;
      flex-direction: column;
    }
    .lds-article-row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 24px;
      padding: 22px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      text-decoration: none;
      color: inherit;
      transition: opacity 0.2s ease;
    }
    .lds-article-row:hover { opacity: 0.7; }
    .lds-article-thumb {
      width: 140px;
      height: 90px;
      border-radius: 8px;
      overflow: hidden;
      background: #fce5d4;
      flex-shrink: 0;
    }
    .lds-article-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .lds-article-body {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }
    .lds-article-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }
    .lds-article-tag {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #555;
      background: #fbf6ef;
      border: 1px solid rgba(0, 0, 0, 0.06);
      padding: 3px 9px;
      border-radius: 999px;
      line-height: 1.4;
    }
    .lds-article-date {
      font-size: 0.7rem;
      color: #888;
      letter-spacing: 0.06em;
      margin-left: auto;
    }
    .lds-article-title {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.55;
      color: #0a0a0f;
      margin: 0;
      letter-spacing: -0.005em;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .lds-article-byline {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
    }
    .lds-article-byline-imgs { display: flex; }
    .lds-article-byline-imgs img {
      width: 20px; height: 20px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 0 2px #fff;
      margin-left: -6px;
    }
    .lds-article-byline-imgs img:first-child { margin-left: 0; }

    /* Pagination */
    .lds-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 32px 0 4px;
    }
    .lds-pagi-item, .lds-pagi-next {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 32px;
      height: 32px;
      padding: 0 8px;
      font-size: 0.78rem;
      font-weight: 600;
      color: #0a0a0f;
      text-decoration: none;
      border-radius: 6px;
    }
    .lds-pagi-active {
      background: #f0683a;
      color: #fff !important;
    }
    .lds-pagi-ellipsis {
      color: #aaa;
      font-size: 0.78rem;
    }

    /* Sidebar は public/css/sidebar.css で共通管理 (IT_SCOOPERS-42) */

    @media (max-width: 1024px) {
      .lds-articles-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }
    @media (max-width: 900px) {
      .lds-featured { grid-template-columns: 1fr; padding: 32px; }
      .lds-header { flex-direction: column; align-items: flex-start; }
      .lds-meta { text-align: left; }
    }
    @media (max-width: 600px) {
      .lds-article-row { grid-template-columns: 90px 1fr; gap: 16px; }
      .lds-article-thumb { width: 90px; height: 60px; }
    }

    /* ====== 殿堂入り記事 (Deep night, mostly black) ====== */
    .lds-hof-section {
      background: linear-gradient(180deg, #040508 0%, #08090f 50%, #0d0c14 100%);
      padding: 70px 0 56px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .lds-hof-orbs {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 18% 30%, rgba(184, 106, 60, 0.08), transparent 28%),
        radial-gradient(circle at 82% 88%, rgba(184, 106, 60, 0.1), transparent 32%);
    }
    .lds-hof-illust {
      position: absolute;
      top: -20px;
      right: 6%;
      width: 160px;
      height: 160px;
      opacity: 0.22;
      pointer-events: none;
    }
    .lds-hof-header {
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }
    .lds-hof-eyebrow {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: #c89070;
      letter-spacing: 0.08em;
      display: block;
      margin-bottom: 6px;
    }
    .lds-hof-title {
      font-size: 2.4rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: #fff;
      margin: 0 0 10px;
    }
    .lds-hof-note {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
      letter-spacing: 0.02em;
    }
    .lds-hof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
    }
    .lds-hof-card {
      position: relative;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      backdrop-filter: blur(10px);
    }
    .lds-hof-rank {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 1.6rem;
      color: #c89070;
      padding: 4px 12px;
      background: rgba(8, 8, 12, 0.85);
      border: 1px solid rgba(200, 144, 112, 0.28);
      border-radius: 999px;
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .lds-hof-card-image {
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #1e2a5a;
    }
    .lds-hof-card-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.85);
    }
    .lds-hof-card-body {
      padding: 22px 24px;
    }
    .lds-hof-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
    }
    .lds-hof-tag {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: #c89070;
      background: rgba(200, 144, 112, 0.08);
      border: 1px solid rgba(200, 144, 112, 0.2);
      padding: 3px 9px;
      border-radius: 999px;
    }
    .lds-hof-card-title {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.55;
      color: #fff;
      margin: 0 0 12px;
      letter-spacing: -0.005em;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .lds-hof-card-date {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 0.04em;
    }

    /* ====== AD Section (Smoldering embers — black with subtle warm) ====== */
    .lds-ad-section {
      position: relative;
      background: linear-gradient(180deg,
        #0d0c14 0%,
        #14100f 25%,
        #1f1612 50%,
        #18100c 75%,
        #0a0604 100%
      );
      padding: 60px 0 80px;
      overflow: hidden;
    }
    /* Subtle ember glow (much smaller, dimmer) */
    .lds-ad-section::before {
      content: '';
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translateX(-50%);
      width: 55%;
      height: 45%;
      background: radial-gradient(ellipse 50% 60% at center,
        rgba(170, 105, 65, 0.16) 0%,
        rgba(140, 80, 50, 0.06) 45%,
        transparent 75%
      );
      pointer-events: none;
    }
    .lds-ad-section .lds-inner { position: relative; z-index: 1; }
    .lds-ad-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
    }
    .lds-ad-eyebrow {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
    }
    .lds-ad-divider {
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
    }
    .lds-ad-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .lds-ad-banner {
      aspect-ratio: 6 / 5;
      max-width: 360px;
      width: 100%;
      margin: 0 auto;
      background: rgba(0, 0, 0, 0.35);
      border: 1px dashed rgba(180, 140, 110, 0.3);
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
      backdrop-filter: blur(4px);
    }
    .lds-ad-tag {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.24em;
      color: #c89070;
      background: rgba(200, 144, 112, 0.1);
      padding: 3px 10px;
      border-radius: 4px;
    }
    .lds-ad-banner-text {
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.6);
    }
    .lds-ad-banner-size {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.32);
      letter-spacing: 0.04em;
    }

    /* ====== Footer override: pitch black ====== */
    .footer {
      background: linear-gradient(180deg, #0a0604 0%, #000 40%, #000 100%) !important;
    }

    @media (max-width: 900px) {
      .lds-hof-grid, .lds-ad-grid { grid-template-columns: 1fr; }
      .lds-hof-illust { display: none; }
    }
