/* ============================================================
   FDE QUEST — RESEARCH REPORT デザインシステム
   一次調査レポート（スペシャルコンテンツ）専用。通常記事より一段格上の佇まい。
   接頭辞 rp- (research paper)。style.css の変数を継承する。
   設計原則:
     ・数字を主役にする（Inter 900・巨大サイズ）
     ・断定はKEY INSIGHTバーに隔離し、根拠はSourceに必ず付す
     ・表は逃げない（横スクロールで全列見せる。省略しない）
     ・色は3色まで（ネイビー/シアン/ゴールド）。増やすとチープになる
   ============================================================ */

:root {
  --rp-navy:    #1E2A5A;
  --rp-navy-dk: #131C3D;
  --rp-cyan:    #0891B2;
  --rp-gold:    #B8862F;
  --rp-gold-lt: #F5EDDC;
  --rp-paper:   #FAF8F4;
  --rp-line:    #E3E7EF;
  --rp-ink:     #0D1117;
  --rp-ink-sec: #4B5563;
}

/* ===== 全体ラップ ===== */
.rp-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 80px;
  overflow-wrap: anywhere;
}
@media (max-width: 767px) { .rp-wrap { padding: 0 16px 56px; } }

/* ===== 表紙（ヒーロー） ===== */
.rp-cover {
  background: linear-gradient(135deg, var(--rp-navy-dk) 0%, var(--rp-navy) 62%, #2A3A72 100%);
  color: #fff;
  border-radius: 18px;
  padding: 54px 48px 44px;
  margin: 26px 0 40px;
  position: relative;
  overflow: hidden;
}
.rp-cover::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,.34), transparent 68%);
  pointer-events: none;
}
.rp-cover-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 900; letter-spacing: 3px;
  color: var(--rp-gold);
  border: 1px solid rgba(184,134,47,.55);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.rp-cover h1 {
  font-size: clamp(27px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}
.rp-cover h1 em { font-style: normal; color: #6FD3EC; }
.rp-cover-lede {
  font-size: clamp(14px, 1.6vw, 16.5px);
  line-height: 1.95;
  color: #D3DAEC;
  max-width: 760px;
  margin-bottom: 26px;
}
.rp-cover-meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 18px;
  font-size: 12.5px; color: #AEB8D4;
}
.rp-cover-meta b { color: #fff; font-weight: 700; }
@media (max-width: 767px) { .rp-cover { padding: 34px 22px 30px; border-radius: 14px; } }

/* ===== 目次 ===== */
.rp-toc {
  border: 1px solid var(--rp-line);
  background: var(--rp-paper);
  border-radius: 14px;
  padding: 24px 26px;
  margin-bottom: 44px;
}
.rp-toc-h {
  font-size: 11px; font-weight: 900; letter-spacing: 3px;
  color: var(--rp-gold); margin-bottom: 14px;
}
.rp-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: rptoc; }
.rp-toc li { counter-increment: rptoc; border-top: 1px solid var(--rp-line); }
.rp-toc li:first-child { border-top: none; }
.rp-toc a {
  display: flex; align-items: baseline; gap: 6px 14px; flex-wrap: wrap;
  padding: 11px 0; text-decoration: none; color: var(--rp-ink);
  font-weight: 700; font-size: 14.5px; line-height: 1.6;
  transition: color .16s;
}
.rp-toc a::before {
  content: "0" counter(rptoc);
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 13px;
  color: var(--rp-cyan); flex: none; letter-spacing: .5px;
}
.rp-toc a:hover { color: var(--rp-cyan); }
.rp-toc a span { font-weight: 400; color: var(--rp-ink-sec); font-size: 13px; }

/* ===== セクション見出し ===== */
.rp-sec { margin: 58px 0 0; scroll-margin-top: 90px; }
.rp-sechead {
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px 16px; flex-wrap: wrap;
  border-bottom: 2px solid var(--rp-navy);
  padding-bottom: 9px; margin-bottom: 22px;
}
.rp-sechead .l {
  font-size: 11px; font-weight: 900; letter-spacing: 2.6px;
  color: var(--rp-cyan);
}
.rp-sechead .r {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2px;
  color: var(--rp-ink-sec); flex: none;
}
.rp-sec h2 {
  font-size: clamp(21px, 2.9vw, 31px);
  font-weight: 900; line-height: 1.4; letter-spacing: -0.4px;
  margin: 0 0 12px; color: var(--rp-ink);
}
.rp-sec h2 em { font-style: normal; color: var(--rp-cyan); }
.rp-sec h3 {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 900; line-height: 1.5;
  margin: 38px 0 12px; color: var(--rp-navy);
  padding-left: 13px; border-left: 4px solid var(--rp-gold);
}
.rp-lede {
  font-size: 15px; line-height: 2.0; color: var(--rp-ink-sec);
  margin-bottom: 24px;
}
.rp-sec p { font-size: 15px; line-height: 2.05; margin: 0 0 17px; }
.rp-sec ul, .rp-sec ol { margin: 0 0 20px; padding-left: 1.35em; }
.rp-sec li { font-size: 15px; line-height: 2.0; margin-bottom: 7px; }
.rp-sec strong { font-weight: 900; }

/* ===== 巨大数字スタット ===== */
.rp-stats {
  display: grid; gap: 16px; margin: 26px 0 28px;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}
.rp-stat {
  background: var(--rp-paper);
  border: 1px solid var(--rp-line);
  border-top: 3px solid var(--rp-cyan);
  border-radius: 10px;
  padding: 24px 22px 20px;
}
.rp-stat.is-dark {
  background: var(--rp-navy); border-color: var(--rp-navy);
  border-top-color: var(--rp-gold); color: #fff;
}
.rp-stat.is-dark .rp-stat-lb { color: #fff; }
.rp-stat.is-dark .rp-stat-tx { color: #C6CFE6; }
.rp-stat-lb {
  font-size: 14.5px; font-weight: 900; line-height: 1.5;
  color: var(--rp-navy); margin-bottom: 10px;
}
.rp-stat-n {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 6vw, 58px); font-weight: 900;
  line-height: 1; letter-spacing: -2px;
  color: var(--rp-cyan); display: block; margin-bottom: 4px;
}
.rp-stat.is-dark .rp-stat-n { color: var(--rp-gold); }
.rp-stat-u { font-size: 14px; font-weight: 900; margin-left: 3px; letter-spacing: 0; }
.rp-stat-tx {
  font-size: 12.5px; line-height: 1.85; color: var(--rp-ink-sec);
  margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(127,127,127,.2);
}

/* ===== 番号カード（01/02/03） ===== */
.rp-numcards {
  display: grid; gap: 16px; margin: 26px 0 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.rp-numcard {
  background: var(--rp-paper);
  border: 1px solid var(--rp-line);
  border-top: 3px solid var(--rp-gold);
  border-radius: 10px; padding: 24px 22px;
  display: flex; flex-direction: column;
}
.rp-numcard.is-dark {
  background: var(--rp-navy); border-color: var(--rp-navy); color: #fff;
}
.rp-numcard.is-dark p { color: #C6CFE6; }
.rp-numcard.is-dark .rp-numcard-h { color: #fff; }
.rp-numcard .n {
  font-family: 'Inter', sans-serif; font-size: 40px; font-weight: 900;
  line-height: 1; color: var(--rp-gold); letter-spacing: -1.5px; margin-bottom: 14px;
}
.rp-numcard-h {
  font-size: 17px; font-weight: 900; line-height: 1.5;
  color: var(--rp-navy); margin-bottom: 12px;
}
.rp-numcard p {
  font-size: 13px; line-height: 1.95; color: var(--rp-ink-sec); margin: 0;
}
.rp-numcard .f {
  margin-top: auto; padding-top: 16px;
  font-size: 12px; font-weight: 900; color: var(--rp-cyan);
}
.rp-numcard.is-dark .f { color: var(--rp-gold); }

/* ===== KEY INSIGHT バー ===== */
.rp-key {
  background: var(--rp-navy); color: #fff;
  border-left: 6px solid var(--rp-gold);
  border-radius: 0 10px 10px 0;
  padding: 22px 26px; margin: 26px 0 28px;
}
.rp-key-l {
  font-size: 10.5px; font-weight: 900; letter-spacing: 3px;
  color: var(--rp-gold); margin-bottom: 9px;
}
.rp-key p {
  font-size: clamp(15px, 1.9vw, 17.5px); font-weight: 700;
  line-height: 1.85; margin: 0; color: #fff;
}
.rp-key p em { font-style: normal; color: #6FD3EC; font-weight: 900; }
.rp-key p + p { margin-top: 10px; font-size: 14px; font-weight: 400; color: #C6CFE6; }

/* ===== 表 ===== */
.rp-tablewrap {
  overflow-x: auto; width: 100%; max-width: 100%; margin: 22px 0 12px;
  border: 1px solid var(--rp-line); border-radius: 10px;
  -webkit-overflow-scrolling: touch;
}
.rp-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px; min-width: 560px; background: #fff;
}
.rp-table thead th {
  background: var(--rp-navy); color: #fff;
  font-weight: 700; text-align: left;
  padding: 13px 15px; white-space: nowrap;
  font-size: 12.5px; letter-spacing: .3px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.rp-table thead th:last-child { border-right: none; }
.rp-table td {
  padding: 12px 15px; border-top: 1px solid var(--rp-line);
  line-height: 1.75; vertical-align: top;
}
.rp-table tbody tr:nth-child(even) { background: #FBFCFD; }
.rp-table tbody tr:hover { background: var(--rp-gold-lt); }
.rp-table td.num {
  font-family: 'Inter', sans-serif; font-weight: 900;
  white-space: nowrap; color: var(--rp-navy);
}
.rp-table .hl {
  background: var(--rp-gold-lt) !important;
  font-weight: 900; color: var(--rp-navy);
}
.rp-table .rank {
  font-family: 'Inter', sans-serif; font-weight: 900;
  color: var(--rp-cyan); text-align: center; width: 44px;
}
.rp-table td small { display: block; color: var(--rp-ink-sec); font-size: 11.5px; margin-top: 3px; line-height: 1.6; }
.rp-scrollhint {
  font-size: 11.5px; color: var(--rp-ink-sec); margin: 0 0 20px;
  display: none;
}
@media (max-width: 767px) { .rp-scrollhint { display: block; } .rp-table { font-size: 12.5px; } }

/* ===== 横バー（構成比の可視化） ===== */
.rp-bars { margin: 24px 0 26px; }
.rp-bar { margin-bottom: 15px; }
.rp-bar-t {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 4px 12px; flex-wrap: wrap; margin-bottom: 6px;
}
.rp-bar-t b { font-size: 14px; font-weight: 700; }
.rp-bar-t span {
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 14px;
  color: var(--rp-navy); flex: none;
}
.rp-bar-track {
  height: 12px; background: #EDF0F5; border-radius: 999px; overflow: hidden;
}
.rp-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--rp-cyan), #1E2A5A);
}
.rp-bar.is-gold .rp-bar-fill { background: linear-gradient(90deg, #D9A441, var(--rp-gold)); }

/* ===== 出典・注記 ===== */
.rp-source {
  font-size: 11.5px; color: var(--rp-ink-sec);
  border-top: 1px solid var(--rp-line);
  padding-top: 9px; margin: 0 0 30px; line-height: 1.75;
}
.rp-source b { color: var(--rp-navy); font-weight: 700; letter-spacing: .5px; }
.rp-caveat {
  background: #FFF9EC; border: 1px solid #EFDDB4;
  border-radius: 10px; padding: 16px 20px; margin: 22px 0 26px;
}
.rp-caveat-l {
  font-size: 11px; font-weight: 900; letter-spacing: 2px;
  color: #9A6B12; margin-bottom: 7px;
}
.rp-caveat p { font-size: 13px; line-height: 1.9; margin: 0; color: #6B4E12; }

/* ===== 引用（原文） ===== */
.rp-quote {
  border-left: 4px solid var(--rp-cyan);
  background: #F4FBFD; border-radius: 0 8px 8px 0;
  padding: 15px 20px; margin: 20px 0 24px;
}
.rp-quote p { font-size: 14px; line-height: 1.9; margin: 0 0 6px; }
.rp-quote cite {
  font-size: 12px; font-style: normal; color: var(--rp-ink-sec); font-weight: 700;
}

/* ===== レポート間ナビ ===== */
.rp-next { margin-top: 58px; }
.rp-next-h {
  font-size: 11px; font-weight: 900; letter-spacing: 3px;
  color: var(--rp-gold); margin-bottom: 16px;
}
.rp-next-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.rp-next-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--rp-line); border-radius: 12px;
  padding: 20px 22px; background: #fff;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.rp-next-card:hover {
  border-color: var(--rp-cyan); transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(30,42,90,.24);
}
.rp-next-card .k {
  font-size: 10.5px; font-weight: 900; letter-spacing: 2px;
  color: var(--rp-cyan); margin-bottom: 9px;
}
.rp-next-card h4 { font-size: 15.5px; font-weight: 900; line-height: 1.55; margin: 0 0 8px; }
.rp-next-card p { font-size: 12.5px; line-height: 1.8; color: var(--rp-ink-sec); margin: 0; }

/* ===== ハブページ ===== */
.rp-hub-grid {
  display: grid; gap: 20px; margin: 32px 0 20px;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
}
@media (max-width: 520px) {
  .rp-hub-grid { grid-template-columns: 1fr; }
}
.rp-hub-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border: 1px solid var(--rp-line); border-radius: 14px;
  overflow: hidden; background: #fff;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.rp-hub-card:hover {
  border-color: var(--rp-cyan); transform: translateY(-4px);
  box-shadow: 0 18px 38px -16px rgba(30,42,90,.28);
}
.rp-hub-top {
  background: linear-gradient(135deg, var(--rp-navy-dk), var(--rp-navy));
  color: #fff; padding: 22px 24px 20px; position: relative; overflow: hidden;
}
.rp-hub-card:nth-child(even) .rp-hub-top {
  background: linear-gradient(135deg, #0C3B49, #0E5A6E);
}
.rp-hub-top .no {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 900;
  letter-spacing: 2.5px; color: var(--rp-gold); margin-bottom: 10px;
}
.rp-hub-top h3 { font-size: 18px; font-weight: 900; line-height: 1.5; margin: 0; }
.rp-hub-body { padding: 20px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.rp-hub-body p { font-size: 13.5px; line-height: 1.9; color: var(--rp-ink-sec); margin: 0 0 16px; }
.rp-hub-facts {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.rp-hub-facts span {
  font-size: 11.5px; font-weight: 700;
  background: var(--rp-gold-lt); color: #7A5610;
  border-radius: 999px; padding: 5px 11px;
}
.rp-hub-body .go {
  margin-top: auto; font-size: 13px; font-weight: 900; color: var(--rp-cyan);
}

/* ===== セクション区切り ===== */
.rp-rule { border: none; border-top: 1px solid var(--rp-line); margin: 46px 0; }

/* ===== 印刷 ===== */
@media print {
  .rp-cover { background: #1E2A5A !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .rp-toc, .rp-next { display: none; }
}

/* ============================================================
   SLIDE DECK — レポートのスライド版ビューア
   Genspark制作の資料スライドを、レポート本文と同格の資産として見せる。
   サムネイル一覧＋ライトボックス。画像は lazy load。
   ============================================================ */
.rp-deck {
  border: 1px solid var(--rp-line);
  border-radius: 16px;
  background: linear-gradient(180deg, #FBFCFD, #F4F6FA);
  padding: 26px 26px 22px;
  margin: 30px 0 34px;
}
.rp-deck-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px 20px; flex-wrap: wrap; margin-bottom: 18px;
}
.rp-deck-head .t { flex: 1 1 320px; }
.rp-deck-l {
  font-size: 10.5px; font-weight: 900; letter-spacing: 3px;
  color: var(--rp-gold); margin-bottom: 7px;
}
.rp-deck-head h3 {
  font-size: 19px; font-weight: 900; line-height: 1.5;
  margin: 0 0 6px; color: var(--rp-navy);
  padding: 0; border: none;
}
.rp-deck-head p { font-size: 13px; line-height: 1.85; color: var(--rp-ink-sec); margin: 0; }
.rp-deck-dl {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rp-navy); color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 900; border-radius: 999px;
  padding: 11px 20px; flex: none;
  transition: background .16s, transform .16s;
}
.rp-deck-dl:hover { background: var(--rp-cyan); transform: translateY(-2px); }

.rp-deck-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.rp-slide {
  position: relative; display: block; padding: 0; border: none;
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 10px -4px rgba(30,42,90,.22);
  cursor: zoom-in; line-height: 0;
  transition: transform .18s, box-shadow .18s;
  border: 1px solid var(--rp-line);
}
.rp-slide:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(30,42,90,.34); }
.rp-slide img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.rp-slide .pg {
  position: absolute; left: 8px; bottom: 8px;
  font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 900;
  background: rgba(19,28,61,.86); color: #fff;
  border-radius: 4px; padding: 3px 7px; line-height: 1.4;
}
.rp-deck-more {
  display: block; width: 100%; margin-top: 16px;
  background: #fff; border: 1px solid var(--rp-line); border-radius: 999px;
  padding: 12px; font-size: 13px; font-weight: 900; color: var(--rp-navy);
  cursor: pointer; transition: border-color .16s, color .16s;
}
.rp-deck-more:hover { border-color: var(--rp-cyan); color: var(--rp-cyan); }
.rp-slide.is-hidden { display: none; }

/* ライトボックス */
.rp-lb {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,15,32,.94);
  display: none; align-items: center; justify-content: center;
  padding: 3vh 4vw;
}
.rp-lb.is-open { display: flex; }
.rp-lb img {
  max-width: 100%; max-height: 88vh; width: auto; height: auto;
  border-radius: 6px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}
.rp-lb-bar {
  position: absolute; left: 0; right: 0; bottom: 2vh;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: #fff; font-size: 13px; font-weight: 700;
}
.rp-lb-bar button {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; width: 42px; height: 42px; font-size: 17px;
  cursor: pointer; transition: background .16s;
}
.rp-lb-bar button:hover { background: rgba(255,255,255,.26); }
.rp-lb-bar .c { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: 1px; min-width: 74px; text-align: center; }
.rp-lb-close {
  position: absolute; top: 2vh; right: 3vw;
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; width: 44px; height: 44px; font-size: 19px; cursor: pointer;
}
.rp-lb-close:hover { background: rgba(255,255,255,.26); }
@media (max-width: 767px) {
  .rp-deck { padding: 20px 16px 18px; border-radius: 12px; }
  .rp-deck-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 9px; }
  .rp-lb { padding: 2vh 3vw; }
}

/* ============================================================
   EBOOK FEATURED — eBookライブラリ最上段の「保存版レポート」棚
   一次調査4本＋ウェビナー資料を、記事eBookより格上の主役として見せる。
   表紙はスライド1枚目（16:9）。クリックでリード取得モーダル→PDF。
   ============================================================ */
.eb-feat-head { margin: 8px 0 6px; }
.eb-feat-kick {
  font-size: 12px; font-weight: 900; letter-spacing: 2px;
  color: var(--rp-gold); display: inline-flex; align-items: center; gap: 8px;
}
.eb-feat-head h2 {
  font-size: clamp(20px, 2.6vw, 27px); font-weight: 900;
  letter-spacing: -0.4px; margin: 10px 0 8px; color: var(--rp-navy);
}
.eb-feat-head p { font-size: 14px; line-height: 1.95; color: var(--rp-ink-sec); margin: 0; max-width: 760px; }

.eb-feat-grid {
  display: grid; gap: 18px; margin: 24px 0 8px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.eb-feat {
  display: flex; flex-direction: column; text-align: left;
  border: 1px solid var(--rp-line); border-radius: 14px; overflow: hidden;
  background: #fff; cursor: pointer; padding: 0; font: inherit; color: inherit;
  box-shadow: 0 2px 12px -6px rgba(30,42,90,.2);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.eb-feat:hover {
  transform: translateY(-4px); border-color: var(--rp-cyan);
  box-shadow: 0 20px 40px -16px rgba(30,42,90,.34);
}
.eb-feat-cover { position: relative; line-height: 0; background: var(--rp-navy); }
.eb-feat-cover img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
.eb-feat-cover .badge {
  position: absolute; top: 10px; left: 10px;
  font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 900; letter-spacing: 1.5px;
  background: var(--rp-gold); color: #131C3D; border-radius: 5px; padding: 4px 9px;
}
.eb-feat-cover .free {
  position: absolute; top: 10px; right: 10px;
  font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 900; letter-spacing: 1px;
  background: rgba(19,28,61,.82); color: #fff; border-radius: 5px; padding: 4px 9px;
}
.eb-feat-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.eb-feat-body .cat { font-size: 11px; font-weight: 900; letter-spacing: 1.5px; color: var(--rp-cyan); margin-bottom: 8px; }
.eb-feat-body h3 { font-size: 15.5px; font-weight: 900; line-height: 1.55; margin: 0 0 12px; color: var(--rp-ink); }
.eb-feat-body p { font-size: 12.5px; line-height: 1.85; color: var(--rp-ink-sec); margin: 0 0 14px; }
.eb-feat-spec {
  margin-top: auto; display: flex; align-items: center; gap: 8px 14px; flex-wrap: wrap;
  border-top: 1px solid var(--rp-line); padding-top: 13px;
}
.eb-feat-spec .pg { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 13px; color: var(--rp-navy); }
.eb-feat-spec .pg small { font-weight: 700; font-size: 11px; color: var(--rp-ink-sec); margin-left: 2px; }
.eb-feat-spec .dl { margin-left: auto; font-size: 12.5px; font-weight: 900; color: var(--rp-cyan); }
.eb-feat.is-wide { grid-column: 1 / -1; flex-direction: row; }
.eb-feat.is-wide .eb-feat-cover { flex: 0 0 44%; max-width: 420px; }
.eb-feat.is-wide .eb-feat-cover img { height: 100%; aspect-ratio: auto; }
.eb-feat.is-wide .eb-feat-body { justify-content: center; }
@media (max-width: 640px) { .eb-feat.is-wide { flex-direction: column; } .eb-feat.is-wide .eb-feat-cover { flex: none; max-width: none; } .eb-feat.is-wide .eb-feat-cover img { aspect-ratio: 16/9; } }
