/*
 * Bon investment blog readability refresh
 * Draft-only until explicitly published.
 */
:root{
  --bon-text:#25282b;
  --bon-muted:#69727a;
  --bon-border:#e7eaed;
  --bon-surface:#ffffff;
  --bon-soft:#f7f8f9;
  --bon-accent:#1f5b78;
}

.postContents .content{
  color:var(--bon-text);
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  font-size:17px;
  line-height:1.82;
  letter-spacing:.015em;
}

.postContents .content p{margin:0 0 1.45em;}
.postContents .content li{margin-bottom:.5em;}

.postContents .content h2{
  margin:2.7em 0 1em;
  padding:.72em .9em;
  border:0;
  border-left:5px solid var(--bon-accent);
  background:var(--bon-soft);
  color:#1f2529;
  font-size:1.45em;
  line-height:1.45;
}

.postContents .content h3{
  margin:2.25em 0 .85em;
  padding:0 0 .5em;
  border:0;
  border-bottom:2px solid var(--bon-border);
  color:#243139;
  font-size:1.2em;
  line-height:1.5;
}

.postContents .content table{
  display:block;
  width:100%;
  overflow-x:auto;
  margin:1.5em 0 2em;
  border-collapse:collapse;
  -webkit-overflow-scrolling:touch;
}

.postContents .content th,
.postContents .content td{
  min-width:120px;
  padding:.85em .9em;
  border:1px solid var(--bon-border);
  vertical-align:top;
}

.postContents .content th{
  background:var(--bon-soft);
  font-weight:700;
}

.outline{
  margin:2em 0;
  padding:1.2em 1.35em;
  border:1px solid var(--bon-border);
  border-radius:14px;
  background:var(--bon-surface);
  box-shadow:0 5px 18px rgba(0,0,0,.04);
}

.heading-primary{
  line-height:1.5;
  letter-spacing:.01em;
}

.eyecatch-main,
.archive .eyecatch{
  overflow:hidden;
  border-radius:14px;
}

.afTagBox__btnAf,
.content .btn,
.content a[class*="button"]{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* --- Sitewide visual refresh: editorial / modern investing media --- */
body{
  background:#f4f6f7;
  color:var(--bon-text);
}

.l-header{
  background:rgba(255,255,255,.96);
  box-shadow:0 1px 0 rgba(20,32,40,.08);
  backdrop-filter:saturate(140%) blur(12px);
}

.container-header{
  max-width:1180px;
}

.siteTitle__link{
  color:#17232b;
  font-weight:800;
  letter-spacing:-.025em;
}

.globalNavi__list > li > a{
  position:relative;
  color:#34434b;
  font-weight:650;
  letter-spacing:.02em;
}

.globalNavi__list > li > a:after{
  content:"";
  position:absolute;
  left:20%;
  right:20%;
  bottom:8px;
  height:2px;
  border-radius:2px;
  background:var(--bon-accent);
  transform:scaleX(0);
  transition:transform .2s ease;
}

.globalNavi__list > li > a:hover:after{transform:scaleX(1);}

.l-main{
  background:transparent;
}

.archive{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}

.archive__item{
  overflow:hidden;
  margin:0 !important;
  border:1px solid rgba(31,91,120,.10);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(23,35,43,.055);
  transition:transform .22s ease, box-shadow .22s ease;
}

.archive__item:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(23,35,43,.09);
}

.archive__item .eyecatch{
  border-radius:0;
  aspect-ratio:16/9;
}

.archive__item .eyecatch img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.archive__contents{
  padding:22px 24px 24px;
}

.archive__contents .heading-secondary{
  margin:0 0 .8em;
  font-size:20px;
  line-height:1.55;
  letter-spacing:-.01em;
}

.archive__contents .heading-secondary a{
  color:#202b31;
}

.archive__contents .phrase-secondary{
  color:var(--bon-muted);
  font-size:14.5px;
  line-height:1.75;
}

.archive__contents .btn__link-normal{
  min-height:42px;
  padding:0 18px;
  border:1px solid #d8e1e5;
  border-radius:999px;
  background:#fff;
  color:var(--bon-accent);
  box-shadow:none;
  font-weight:700;
}

.archive__contents .btn__link-normal:hover{
  border-color:var(--bon-accent);
  background:#f2f7f9;
}

.eyecatch__cat{
  border-radius:999px;
  margin:12px;
  padding:5px 10px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.dividerBottom{
  border-bottom:0;
}

.postContents{
  padding:30px 34px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 32px rgba(23,35,43,.045);
}

.eyecatch-main{
  margin-bottom:24px;
  box-shadow:0 10px 28px rgba(23,35,43,.08);
}

.dateList-main{
  color:var(--bon-muted);
}

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

@media (max-width:768px){
  body{background:#fff;}
  .postContents{
    padding:0;
    border-radius:0;
    box-shadow:none;
  }
  .postContents .content{
    font-size:16.5px;
    line-height:1.8;
  }
  .heading-primary{
    font-size:24px;
    line-height:1.45;
  }
  .postContents .content h2{
    margin-top:2.3em;
    font-size:1.3em;
    padding:.7em .75em;
  }
  .postContents .content h3{font-size:1.14em;}
  .postContents .content p{margin-bottom:1.35em;}
  .outline{
    margin:1.6em 0;
    padding:1em;
    border-radius:12px;
  }
  .eyecatch-main{border-radius:12px;}
  .postContents .content img{
    height:auto;
    max-width:100%;
  }
  .archive{
    display:block;
  }
  .archive__item{
    margin-bottom:20px !important;
    border-radius:14px;
  }
  .archive__contents{
    padding:18px 18px 20px;
  }
  .archive__contents .heading-secondary{
    font-size:18px;
  }
  .archive__contents .phrase-secondary{
    display:-webkit-box;
    overflow:hidden;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
  }
}

.bon-media-intro{
  margin:22px auto 34px;
  padding:0 15px;
}

.bon-media-intro__inner{
  max-width:1140px;
  margin:0 auto;
  padding:32px;
  border:1px solid rgba(31,91,120,.09);
  border-radius:22px;
  background:linear-gradient(135deg,#ffffff 0%,#f7fafb 100%);
  box-shadow:0 12px 34px rgba(23,35,43,.045);
}

.bon-media-intro__eyebrow{
  margin:0 0 8px;
  color:var(--bon-accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
}

.bon-media-intro h2{
  margin:0;
  color:#17232b;
  font-size:30px;
  line-height:1.35;
  letter-spacing:-.025em;
}

.bon-media-intro__inner > p:not(.bon-media-intro__eyebrow){
  max-width:720px;
  margin:10px 0 24px;
  color:var(--bon-muted);
  font-size:15px;
  line-height:1.75;
}

.bon-media-hubs{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.bon-media-hubs a{
  display:flex;
  min-height:96px;
  padding:18px;
  flex-direction:column;
  justify-content:center;
  border:1px solid var(--bon-border);
  border-radius:15px;
  background:#fff;
  color:#223039;
  text-decoration:none;
  transition:border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}

.bon-media-hubs a:hover{
  transform:translateY(-2px);
  border-color:rgba(31,91,120,.35);
  box-shadow:0 8px 20px rgba(23,35,43,.05);
}

.bon-media-hubs strong{
  font-size:15px;
  line-height:1.45;
}

.bon-media-hubs span{
  margin-top:5px;
  color:var(--bon-muted);
  font-size:12px;
  line-height:1.45;
}

@media (max-width:768px){
  .bon-media-intro{
    margin:12px auto 24px;
    padding:0 12px;
  }
  .bon-media-intro__inner{
    padding:22px 16px 16px;
    border-radius:16px;
  }
  .bon-media-intro h2{
    font-size:24px;
  }
  .bon-media-intro__inner > p:not(.bon-media-intro__eyebrow){
    margin-bottom:18px;
    font-size:14px;
  }
  .bon-media-hubs{
    grid-template-columns:1fr 1fr;
    gap:9px;
  }
  .bon-media-hubs a{
    min-height:84px;
    padding:14px;
    border-radius:13px;
  }
}


/* --- Homepage editorial sections --- */
.bon-variant-image{display:flex;flex-direction:column}
.bon-variant-image .bon-media-intro{order:1}
.bon-variant-image .bon-curated-latest{order:2}
.bon-variant-image .bon-featured-posts{order:3}
.bon-variant-image .bon-holdings{order:4}
.bon-variant-image .bon-longthemes{order:5}
.bon-variant-image .bon-seed{order:6}
.bon-home-section{max-width:1140px;margin:0 auto 42px;padding:0 15px}
.bon-section-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:18px}
.bon-section-head span{color:var(--bon-accent);font-size:11px;font-weight:800;letter-spacing:.15em}
.bon-section-head h2{margin:4px 0 0;font-size:27px;line-height:1.35;color:#17232b}
.bon-section-head>a{min-height:44px;display:flex;align-items:center;font-weight:700;color:var(--bon-accent)}
.bon-stock-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.bon-stock-card{overflow:hidden;border:1px solid var(--bon-border);border-radius:16px;background:#fff;box-shadow:0 7px 22px rgba(23,35,43,.05);color:#223039;text-decoration:none}
.bon-stock-card__visual{position:relative;display:block;aspect-ratio:16/9;background:linear-gradient(135deg,#dcebf1,#f7fafb)}
.bon-stock-card__visual img{width:100%;height:100%;object-fit:cover}
.bon-stock-card__visual b{position:absolute;left:12px;bottom:10px;padding:4px 8px;border-radius:8px;background:rgba(255,255,255,.92);font-size:15px}
.bon-stock-card>strong,.bon-stock-card>small{display:block;padding-left:14px;padding-right:14px}
.bon-stock-card>strong{padding-top:12px;font-size:14px}.bon-stock-card>small{padding-top:4px;padding-bottom:14px;color:var(--bon-muted);font-size:11px}
.bon-theme-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.bon-theme-grid a{min-height:112px;padding:18px;border:1px solid var(--bon-border);border-radius:16px;background:#fff;color:#223039;text-decoration:none}
.bon-theme-grid strong,.bon-theme-grid span{display:block}.bon-theme-grid span{margin-top:7px;color:var(--bon-muted);font-size:12px;line-height:1.55}
.bon-poikatsu{padding:0 15px}.bon-poikatsu__body{padding:26px 28px;border-radius:18px;background:#f5f8f9}.bon-poikatsu__body>span{font-size:10px;font-weight:800;letter-spacing:.15em;color:var(--bon-accent)}
.bon-poikatsu h2{margin:5px 0 8px;font-size:23px}.bon-poikatsu p{margin:0 0 14px;color:var(--bon-muted);line-height:1.75}
.bon-cta{display:inline-flex;min-height:44px;align-items:center;font-weight:700;color:var(--bon-accent)}
.bon-latest-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.bon-latest-card{overflow:hidden;border:1px solid var(--bon-border);border-radius:15px;background:#fff}
.bon-latest-card a{color:#223039;text-decoration:none}.bon-latest-card img{width:100%;aspect-ratio:16/9;object-fit:cover}.bon-latest-card strong{display:block;padding:13px;font-size:14px;line-height:1.55}.bon-cta--center{margin-top:16px}
@media(max-width:768px){.bon-home-section{margin-bottom:30px;padding:0 10px}.bon-section-head{align-items:flex-start}.bon-section-head h2{font-size:22px}.bon-section-head>a{font-size:12px;white-space:nowrap}.bon-stock-grid{display:flex;overflow-x:auto;gap:10px;margin:0 -10px;padding:0 10px 6px;scroll-snap-type:x proximity}.bon-stock-card{flex:0 0 72%;scroll-snap-align:start}.bon-theme-grid{grid-template-columns:1fr 1fr;gap:9px}.bon-theme-grid a{min-height:100px;padding:14px}.bon-poikatsu__body{padding:20px 18px}.bon-latest-grid{grid-template-columns:1fr 1fr;gap:9px}.bon-latest-card strong{font-size:12.5px;padding:10px}}

/* --- Mobile-first visual strengthening --- */
.bon-mobile-visual{display:none;}

@media (max-width:768px){
  .l-header,.container-header{background:#fff !important;}
  .l-header{position:sticky;top:0;z-index:50;box-shadow:0 1px 0 rgba(20,32,40,.08) !important;}
  .container-header{min-height:64px;padding-left:14px;padding-right:14px;}
  .siteTitle{margin:0 !important;}
  .siteTitle__link{font-size:21px !important;line-height:1.2;white-space:nowrap;}
  .globalNavi{display:none !important;}
  .searchBtn,.menuBtn{transform:scale(.9);}

  .bon-media-intro{margin:8px auto 18px;padding:0 10px;}
  .bon-media-intro__inner{
    padding:18px 14px 14px;border:0;border-radius:18px;
    background:radial-gradient(circle at 90% 0%,rgba(32,121,161,.10),transparent 34%),linear-gradient(180deg,#f8fbfc 0%,#fff 65%);
    box-shadow:none;
  }
  .bon-media-intro__eyebrow{margin-bottom:5px;font-size:10px;letter-spacing:.16em;}
  .bon-media-intro h2{max-width:310px;font-size:27px;line-height:1.3;}
  .bon-media-intro__inner > p:not(.bon-media-intro__eyebrow){margin:10px 0 14px;font-size:13.5px;line-height:1.65;}

  .bon-mobile-visual{
    position:relative;display:block;overflow:hidden;margin:8px 0 14px;min-height:150px;
    border:1px solid rgba(31,91,120,.10);border-radius:16px;background:#edf8fb;color:#17313d;
    box-shadow:0 8px 22px rgba(20,72,93,.075);
  }
  .bon-mobile-visual img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.88;
    filter:saturate(.92) brightness(1.06);
  }
  .bon-mobile-visual:after{
    content:"";position:absolute;inset:0;
    background:linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(248,253,255,.82) 46%,rgba(248,253,255,.20) 78%,rgba(255,255,255,.05) 100%);
  }
  .bon-mobile-visual span{
    position:relative;z-index:2;display:flex;min-height:150px;padding:20px;
    flex-direction:column;justify-content:flex-end;color:#17313d;
  }
  .bon-mobile-visual small{margin-bottom:5px;color:var(--bon-accent);font-size:9px;font-weight:900;letter-spacing:.16em;}
  .bon-mobile-visual strong{max-width:220px;font-size:20px;line-height:1.4;text-shadow:0 1px 0 rgba(255,255,255,.8);}
  .bon-mobile-visual em{margin-top:6px;color:#526b77;font-size:11px;font-style:normal;}

  .bon-media-hubs{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
    margin:0;
    padding:0;
    overflow:visible;
  }
  .bon-media-hubs a{min-width:0;min-height:78px;padding:12px 13px;border-radius:14px;}
  .bon-media-hubs strong{font-size:13px;}
  .bon-media-hubs span{margin-top:4px;font-size:10.5px;}

  .archive__item{
    display:grid;grid-template-columns:112px minmax(0,1fr);min-height:112px;
    margin-bottom:12px !important;border:0;border-bottom:1px solid var(--bon-border);
    border-radius:0;box-shadow:none;background:#fff;
  }
  .archive__item .eyecatch{aspect-ratio:1/1;align-self:start;border-radius:12px;}
  .archive__item .eyecatch__cat{display:none;}
  .archive__contents{padding:2px 0 12px 14px;}
  .archive__contents .heading-secondary{margin:0 0 6px;font-size:15.5px;line-height:1.5;}
  .archive__contents .phrase-secondary{display:none;}
  .archive__contents .btn{display:none;}
  .archive__item .the__ribbon{transform:scale(.8);transform-origin:top left;}
}


/* Minimal mobile header spacing fix — preserve previous visual design */
@media (max-width:768px){
  .container-header{
    position:relative;
    padding-left:58px !important;
    padding-right:58px !important;
  }
  .searchBtn{
    left:8px !important;
    right:auto !important;
    transform:scale(.88) !important;
  }
  .menuBtn{
    right:8px !important;
    left:auto !important;
    transform:scale(.88) !important;
  }
  .siteTitle{
    max-width:100% !important;
    overflow:hidden;
  }
  .siteTitle__link{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}

/* Branded fallback until dedicated phishing featured image is uploaded */
.eyecatch__link[href*="phishing-sagi-2026"]{
  position:relative;
  display:block;
  overflow:hidden;
  background:linear-gradient(135deg,#102a36 0%,#18485d 58%,#1f5b78 100%);
}
.eyecatch__link[href*="phishing-sagi-2026"] img[alt="NO IMAGE"]{opacity:0 !important;}
.eyecatch__link[href*="phishing-sagi-2026"]:before{
  content:"SECURITY";
  position:absolute;
  left:8%;
  top:18%;
  z-index:2;
  color:#8fd1e5;
  font-size:10px;
  font-weight:900;
  letter-spacing:.18em;
}
.eyecatch__link[href*="phishing-sagi-2026"]:after{
  content:"フィッシング詐欺対策";
  position:absolute;
  left:8%;
  right:8%;
  bottom:18%;
  z-index:2;
  color:#fff;
  font-size:clamp(13px,2vw,23px);
  font-weight:850;
  line-height:1.35;
}

/* Series navigation */
.bon-series-back{
  margin:0 0 1.4em !important;
  padding:.8em 1em;
  border:1px solid #dce5e9;
  border-radius:12px;
  background:#f7fafb;
  font-size:.92em;
}
.bon-series-back a{color:var(--bon-accent);font-weight:700;text-decoration:none;}

/* Lightweight branded archive cards until dedicated featured images are uploaded */
.eyecatch__link[href*="sonota-05"],
.eyecatch__link[href*="amerikakabu-27"]{
  position:relative;
  display:block;
  overflow:hidden;
  background:linear-gradient(135deg,#153849 0%,#1f5b78 58%,#2c7896 100%);
}
.eyecatch__link[href*="sonota-05"] img,
.eyecatch__link[href*="amerikakabu-27"] img{
  opacity:.18 !important;
  filter:saturate(.5);
}
.eyecatch__link[href*="sonota-05"]:before,
.eyecatch__link[href*="amerikakabu-27"]:before{
  position:absolute;
  left:8%;
  top:18%;
  z-index:2;
  color:#9bd2e4;
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
}
.eyecatch__link[href*="sonota-05"]:after,
.eyecatch__link[href*="amerikakabu-27"]:after{
  position:absolute;
  left:8%;
  right:8%;
  bottom:18%;
  z-index:2;
  color:#fff;
  font-size:clamp(13px,2vw,22px);
  font-weight:850;
  line-height:1.35;
}
.eyecatch__link[href*="sonota-05"]:before{content:"INDEX INVESTING";}
.eyecatch__link[href*="sonota-05"]:after{content:"ETF vs 投資信託";}
.eyecatch__link[href*="amerikakabu-27"]:before{content:"NASDAQ 100";}
.eyecatch__link[href*="amerikakabu-27"]:after{content:"QQQ 長期投資";}

/* Reusable lightweight visual blocks inside investment articles */
.bon-kpi-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin:1.4em 0 1.8em;
}
.bon-kpi{
  padding:15px 13px;
  border:1px solid var(--bon-border);
  border-radius:13px;
  background:#fff;
  text-align:center;
}
.bon-kpi small{
  display:block;
  margin-bottom:5px;
  color:var(--bon-muted);
  font-size:11px;
  font-weight:700;
}
.bon-kpi strong{
  display:block;
  color:#183542;
  font-size:20px;
  line-height:1.3;
}
.bon-insight{
  margin:1.4em 0 1.8em;
  padding:16px 18px;
  border-left:4px solid var(--bon-accent);
  border-radius:10px;
  background:#f5f9fa;
}
.bon-flow{
  display:flex;
  gap:8px;
  align-items:stretch;
  margin:1.4em 0 1.8em;
}
.bon-flow span{
  position:relative;
  flex:1;
  padding:14px 12px;
  border:1px solid var(--bon-border);
  border-radius:12px;
  background:#fff;
  text-align:center;
  font-size:13px;
  font-weight:700;
}
.bon-flow span:not(:last-child):after{
  content:"→";
  position:absolute;
  right:-10px;
  top:50%;
  z-index:2;
  transform:translateY(-50%);
  color:var(--bon-accent);
}
@media (max-width:768px){
  .bon-kpi-grid{grid-template-columns:1fr 1fr;gap:8px;}
  .bon-kpi{padding:13px 10px;}
  .bon-kpi strong{font-size:18px;}
  .bon-flow{overflow-x:auto;padding-bottom:4px;scrollbar-width:none;}
  .bon-flow::-webkit-scrollbar{display:none;}
  .bon-flow span{flex:0 0 132px;}
}

/* --- Featured image cards: restore stronger visual top page --- */
.bon-featured-posts{
  max-width:1140px;
  margin:0 auto 38px;
  padding:0 15px;
}
.bon-featured-posts__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin:0 0 15px;
}
.bon-featured-posts__head span{
  display:block;
  margin-bottom:4px;
  color:var(--bon-accent);
  font-size:10px;
  font-weight:900;
  letter-spacing:.17em;
}
.bon-featured-posts__head h2{
  margin:0;
  color:#17232b;
  font-size:25px;
  line-height:1.35;
  letter-spacing:-.02em;
}
.bon-featured-posts__head > a{
  color:var(--bon-accent);
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}
.bon-featured-posts__grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr;
  gap:16px;
}
.bon-featured-card{
  overflow:hidden;
  border:1px solid rgba(31,91,120,.10);
  border-radius:17px;
  background:#fff;
  box-shadow:0 8px 24px rgba(23,35,43,.055);
}
.bon-featured-card__image{
  display:block;
  overflow:hidden;
  aspect-ratio:16/10;
  background:#edf2f4;
}
.bon-featured-card--lead .bon-featured-card__image{
  aspect-ratio:16/9;
}
.bon-featured-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.bon-featured-card:hover .bon-featured-card__image img{
  transform:scale(1.025);
}
.bon-featured-card__body{
  padding:16px 17px 18px;
}
.bon-featured-card__tag{
  display:inline-block;
  margin-bottom:7px;
  color:var(--bon-accent);
  font-size:10px;
  font-weight:800;
  letter-spacing:.04em;
}
.bon-featured-card h3{
  margin:0;
  font-size:16px;
  line-height:1.55;
}
.bon-featured-card--lead h3{
  font-size:19px;
}
.bon-featured-card h3 a{
  color:#202b31;
  text-decoration:none;
}
.bon-featured-card p{
  margin:9px 0 0;
  color:var(--bon-muted);
  font-size:13px;
  line-height:1.7;
}

@media (max-width:768px){
  .bon-featured-posts{
    margin:4px auto 28px;
    padding:0 10px;
  }
  .bon-featured-posts__head{
    margin:0 2px 11px;
  }
  .bon-featured-posts__head h2{
    font-size:20px;
  }
  .bon-featured-posts__head > a{
    font-size:10.5px;
  }
  .bon-featured-posts__grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .bon-featured-card--lead{
    grid-column:1 / -1;
  }
  .bon-featured-card{
    border-radius:14px;
    box-shadow:0 5px 16px rgba(23,35,43,.055);
  }
  .bon-featured-card--lead .bon-featured-card__image{
    aspect-ratio:16/9;
  }
  .bon-featured-card:not(.bon-featured-card--lead) .bon-featured-card__image{
    aspect-ratio:16/10;
  }
  .bon-featured-card__body{
    padding:11px 12px 13px;
  }
  .bon-featured-card__tag{
    margin-bottom:4px;
    font-size:9px;
  }
  .bon-featured-card h3{
    display:-webkit-box;
    overflow:hidden;
    margin:0;
    font-size:12.5px;
    line-height:1.45;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
  }
  .bon-featured-card--lead h3{
    font-size:16px;
  }
  .bon-featured-card p{
    display:-webkit-box;
    overflow:hidden;
    margin-top:6px;
    font-size:12px;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
  }
}

/* Snapshot comparison modes */
.bon-variant-initial .swiper-carousel{
  overflow:visible;
}
.bon-variant-initial .swiper-wrapper{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  transform:none !important;
}
.bon-variant-initial .swiper-slide{
  width:auto !important;
  margin:0 !important;
  overflow:hidden;
  border:1px solid rgba(31,91,120,.10);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 24px rgba(23,35,43,.055);
}
.bon-variant-initial .swiper-slide .eyecatch{
  border-radius:0;
  aspect-ratio:16/10;
}
.bon-variant-initial .swiper-slide .eyecatch img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.bon-variant-initial .heading-carousel{
  margin:0;
  padding:14px 15px 16px;
  font-size:15px;
  line-height:1.5;
}
.bon-variant-initial .swiper-pagination,
.bon-variant-initial .swiper-button-prev,
.bon-variant-initial .swiper-button-next{
  display:none !important;
}
@media (max-width:768px){
  .bon-variant-initial .container.divider{
    padding-left:10px;
    padding-right:10px;
  }
  .bon-variant-initial .swiper-wrapper{
    display:flex;
    gap:10px;
    overflow-x:auto;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    padding-bottom:4px;
  }
  .bon-variant-initial .swiper-wrapper::-webkit-scrollbar{display:none;}
  .bon-variant-initial .swiper-slide{
    flex:0 0 78%;
    scroll-snap-align:start;
  }
}

/* --- SEO / circulation polish for image variant --- */
.category .archiveHead .phrase-secondary{
  max-width:860px;
  margin:12px 0 0;
  padding:15px 18px;
  border:1px solid rgba(31,91,120,.10);
  border-radius:14px;
  background:#f8fbfc;
  color:#52636c;
  font-size:14px;
  line-height:1.75;
}
.related{
  margin-top:34px;
  padding:24px;
  border:1px solid rgba(31,91,120,.10);
  border-radius:18px;
  background:#f8fbfc;
}
.related .heading-sub{
  margin:0 0 16px;
  color:#1b303b;
  font-size:20px;
  line-height:1.4;
}
.related__list{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.related__item{
  overflow:hidden;
  margin:0 !important;
  border:1px solid #e6ecef;
  border-radius:13px;
  background:#fff;
}
.related__item .eyecatch{
  border-radius:0;
  aspect-ratio:16/10;
}
.related__item .eyecatch img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.related__item .heading{
  margin:0;
  padding:10px 11px 12px;
  font-size:13px;
  line-height:1.5;
}
.bon-visual-figure{
  margin:1.55em 0 2em;
}
.bon-visual-figure img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
}
.bon-visual-figure figcaption{
  margin-top:8px;
  color:#748087;
  font-size:11px;
  line-height:1.6;
  text-align:center;
}
@media (max-width:768px){
  .category .archiveHead .phrase-secondary{
    margin-top:8px;
    padding:12px 13px;
    border-radius:12px;
    font-size:12.5px;
  }
  .related{
    margin-top:28px;
    padding:17px 12px;
    border-radius:15px;
  }
  .related .heading-sub{font-size:18px;}
  .related__list{
    grid-template-columns:1fr 1fr;
    gap:9px;
  }
  .related__item .heading{
    padding:9px 9px 10px;
    font-size:12px;
  }
  .bon-visual-figure{
    margin:1.25em 0 1.65em;
  }
  .bon-visual-figure img{
    border-radius:12px;
  }
}

/* --- Homepage circulation blocks: portfolio / 20 years / seed money / curated guides --- */
.bon-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin:0 0 17px;
}
.bon-section-head > div{min-width:0;}
.bon-section-head > div > span,
.bon-seed__copy > span{
  display:block;
  margin-bottom:5px;
  color:var(--bon-accent);
  font-size:10px;
  font-weight:900;
  letter-spacing:.17em;
}
.bon-section-head h2,
.bon-seed h2{
  margin:0;
  color:#17232b;
  font-size:25px;
  line-height:1.38;
  letter-spacing:-.02em;
}
.bon-section-head p{
  margin:7px 0 0;
  color:var(--bon-muted);
  font-size:13px;
  line-height:1.7;
}
.bon-section-head > a{
  flex:0 0 auto;
  color:var(--bon-accent);
  font-size:12px;
  font-weight:750;
  text-decoration:none;
}

.bon-holdings,
.bon-longthemes,
.bon-curated-latest{
  max-width:1140px;
  margin:0 auto 42px;
  padding:0 15px;
}
.bon-holdings__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.bon-holding-card{
  overflow:hidden;
  border:1px solid rgba(31,91,120,.10);
  border-radius:17px;
  background:#fff;
  box-shadow:0 8px 24px rgba(23,35,43,.05);
  color:#203039;
  text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.bon-holding-card:hover{
  transform:translateY(-3px);
  border-color:rgba(31,91,120,.24);
  box-shadow:0 13px 28px rgba(23,35,43,.085);
}
.bon-holding-card__visual{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/9;
  background:linear-gradient(135deg,#eff8fb,#dfeef3);
}
.bon-holding-card__visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.bon-holding-card:hover .bon-holding-card__visual img{transform:scale(1.025);}
.bon-holding-card__ticker{
  position:absolute;
  left:18px;
  bottom:14px;
  z-index:2;
  color:#173746;
  font-size:30px;
  font-weight:900;
  letter-spacing:-.04em;
}
.bon-holding-card__visual i{
  position:absolute;
  right:-15px;
  top:-22px;
  width:110px;
  height:110px;
  border:18px solid rgba(255,255,255,.5);
  border-radius:50%;
}
.bon-holding-card__visual:after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:50%;
  height:2px;
  opacity:.35;
  background:linear-gradient(90deg,transparent 0%,#2c7896 18%,#2c7896 35%,transparent 35%,transparent 46%,#2c7896 46%,#2c7896 72%,transparent 72%);
  transform:rotate(-9deg);
}
.bon-holding-card--health .bon-holding-card__visual{background:#eaf8f5;}
.bon-holding-card--cyber .bon-holding-card__visual{background:#eef1fb;}
.bon-holding-card--data .bon-holding-card__visual{background:#f2effa;}
.bon-holding-card--safety .bon-holding-card__visual{background:#eef6fa;}
.bon-holding-card--ai .bon-holding-card__visual{background:#edf1fb;}
.bon-holding-card--resource .bon-holding-card__visual{background:#fff6df;}
.bon-holding-card--growth .bon-holding-card__visual{background:#eef8ef;}
.bon-holding-card__body{
  display:flex;
  min-height:112px;
  padding:15px 16px 17px;
  flex-direction:column;
}
.bon-holding-card__body small{
  color:var(--bon-accent);
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
}
.bon-holding-card__body strong{
  margin-top:3px;
  font-size:15px;
  line-height:1.4;
}
.bon-holding-card__body span{
  margin-top:6px;
  color:var(--bon-muted);
  font-size:11.5px;
  line-height:1.55;
}
.bon-holding-card--pending{
  cursor:default;
  border-style:dashed;
  box-shadow:none;
}
.bon-holding-card--pending:hover{
  transform:none;
  border-color:rgba(31,91,120,.10);
  box-shadow:none;
}
.bon-holding-card--pending:hover .bon-holding-card__visual img{transform:none;}
.bon-holding-card__status{
  display:inline-flex;
  width:max-content;
  margin-top:10px;
  padding:4px 8px;
  border-radius:999px;
  background:#f1f4f5;
  color:#6f7b81;
  font-size:9.5px;
  font-style:normal;
  font-weight:800;
  letter-spacing:.04em;
}

.bon-longthemes__grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:11px;
}
.bon-theme-card{
  position:relative;
  display:flex;
  min-height:158px;
  padding:18px 16px;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
  border:1px solid rgba(31,91,120,.10);
  border-radius:17px;
  color:#1e313b;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(23,35,43,.045);
}
.bon-theme-card:before,
.bon-theme-card:after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
.bon-theme-card:before{
  width:92px;
  height:92px;
  right:-20px;
  top:-22px;
  background:rgba(255,255,255,.72);
}
.bon-theme-card:after{
  width:38px;
  height:38px;
  right:29px;
  top:29px;
  border:8px solid rgba(31,91,120,.10);
}
.bon-theme-card--health{background:linear-gradient(145deg,#f4fbf9,#e7f6f2);}
.bon-theme-card--water{background:linear-gradient(145deg,#f2fbff,#e4f4fb);}
.bon-theme-card--resource{background:linear-gradient(145deg,#fffaf0,#fff0cf);}
.bon-theme-card--automation{background:linear-gradient(145deg,#f6f3fb,#eee9f8);}
.bon-theme-card--power{background:linear-gradient(145deg,#f3f7ff,#e7eefb);}
.bon-theme-card b{
  position:absolute;
  left:16px;
  top:15px;
  color:rgba(31,91,120,.55);
  font-size:10px;
  letter-spacing:.12em;
}
.bon-theme-card strong{
  position:relative;
  z-index:2;
  font-size:15px;
  line-height:1.45;
}
.bon-theme-card span{
  position:relative;
  z-index:2;
  margin-top:5px;
  color:#64747d;
  font-size:10.5px;
  line-height:1.5;
}

.bon-seed{
  max-width:1110px;
  margin:0 auto 42px;
  padding:27px 30px;
  display:grid;
  grid-template-columns:1.4fr 1fr auto;
  gap:24px;
  align-items:center;
  border:1px solid rgba(31,91,120,.10);
  border-radius:20px;
  background:linear-gradient(135deg,#fff 0%,#f8fbf7 45%,#f3faf8 100%);
  box-shadow:0 10px 28px rgba(23,35,43,.04);
}
.bon-seed__copy p{
  margin:8px 0 0;
  max-width:620px;
  color:var(--bon-muted);
  font-size:13px;
  line-height:1.75;
}
.bon-seed__copy p small{
  display:block;
  margin-top:5px;
  color:#7a878d;
  font-size:10px;
}
.bon-seed__flow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  color:#355360;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
}
.bon-seed__flow span,
.bon-seed__flow a{
  padding:10px 11px;
  border:1px solid #e2ebE7;
  border-radius:999px;
  background:#fff;
  color:#355360;
  text-decoration:none;
}
.bon-seed__flow a:hover{border-color:#bfd2da;color:#1f5b78;}
.bon-seed__flow i{
  color:#83a095;
  font-style:normal;
}
.bon-seed__actions{
  display:flex;
  min-width:160px;
  flex-direction:column;
  gap:8px;
}
.bon-seed__actions a{
  display:flex;
  min-height:44px;
  padding:0 17px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#1f5b78;
  color:#fff;
  font-size:12px;
  font-weight:800;
  text-decoration:none;
}
.bon-seed__actions .bon-seed__sub{
  border:1px solid #dce6e9;
  background:#fff;
  color:var(--bon-accent);
}

.bon-curated-latest__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:13px;
}
.bon-curated-latest article{
  overflow:hidden;
  border:1px solid rgba(31,91,120,.10);
  border-radius:15px;
  background:#fff;
}
.bon-curated-latest__image{
  display:block;
  overflow:hidden;
  aspect-ratio:16/9;
  background:#edf2f4;
}
.bon-curated-latest__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.bon-curated-latest article > div{
  padding:13px 14px 15px;
}
.bon-curated-latest small{
  display:flex;
  align-items:center;
  gap:6px;
  color:#7d888e;
  font-size:9.5px;
}
.bon-curated-latest small b{
  display:inline-flex;
  align-items:center;
  min-height:18px;
  padding:0 6px;
  border-radius:999px;
  background:#1f5b78;
  color:#fff;
  font-size:8px;
  font-weight:900;
  letter-spacing:.08em;
}
.bon-curated-latest h3{
  margin:5px 0 0;
  font-size:13px;
  line-height:1.55;
}
.bon-curated-latest h3 a{
  color:#223039;
  text-decoration:none;
}

@media (max-width:980px){
  .bon-holdings__grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .bon-longthemes__grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .bon-seed{grid-template-columns:1fr 1fr;}
  .bon-seed__actions{grid-column:1 / -1;display:grid;grid-template-columns:1fr 1fr;}
  .bon-curated-latest__grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media (max-width:768px){
  .bon-section-head{
    margin:0 2px 12px;
    align-items:flex-start;
  }
  .bon-section-head h2,
  .bon-seed h2{font-size:20px;}
  .bon-section-head p{font-size:11.5px;}
  .bon-section-head > a{padding-top:22px;font-size:10px;}

  .bon-holdings,
  .bon-longthemes,
  .bon-curated-latest{
    margin-bottom:30px;
    padding:0 10px;
  }

  .bon-holdings__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
    margin:0;
    padding:0;
    overflow:visible;
  }
  .bon-holding-card{
    min-width:0;
    border-radius:14px;
  }
  .bon-holding-card__visual{aspect-ratio:16/10;}
  .bon-holding-card__body{min-height:86px;padding:10px 11px 12px;}
  .bon-holding-card__body strong{font-size:13px;line-height:1.35;}
  .bon-holding-card__body span{margin-top:4px;font-size:10px;line-height:1.45;}
  .bon-holding-card__ticker{left:12px;bottom:9px;font-size:24px;}

  .bon-longthemes__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
    margin:0;
    padding:0;
    overflow:visible;
  }
  .bon-theme-card{
    min-width:0;
    min-height:118px;
    padding:14px;
    border-radius:14px;
  }
  .bon-theme-card:last-child{grid-column:1 / -1;min-height:105px;}

  .bon-seed{
    margin:0 10px 30px;
    padding:20px 16px;
    grid-template-columns:1fr;
    gap:16px;
    border-radius:16px;
  }
  .bon-seed__copy p{font-size:12px;}
  .bon-seed__flow{
    justify-content:flex-start;
    overflow-x:auto;
    padding-bottom:2px;
  }
  .bon-seed__actions{
    grid-column:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    min-width:0;
  }
  .bon-seed__actions a{padding:0 12px;font-size:11px;}

  .bon-curated-latest__grid{
    grid-template-columns:1fr 1fr;
    gap:9px;
  }
  .bon-curated-latest article{border-radius:13px;}
  .bon-curated-latest article > div{padding:10px 10px 12px;}
  .bon-curated-latest h3{
    display:-webkit-box;
    overflow:hidden;
    margin-top:4px;
    font-size:12px;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
  }
}

/* --- Final responsive guard: prevent horizontal page overflow on phones/tablets --- */
@media (max-width:1024px){
  html,
  body{
    max-width:100%;
    overflow-x:hidden;
  }

  .l-headerBottom.bon-variant-image,
  .l-wrapper,
  .l-main,
  .bon-media-intro,
  .bon-featured-posts,
  .bon-holdings,
  .bon-longthemes,
  .bon-curated-latest,
  .bon-seed{
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
  }

  .bon-media-intro__inner,
  .bon-featured-posts__grid,
  .bon-holdings__grid,
  .bon-longthemes__grid,
  .bon-curated-latest__grid{
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
  }

  .bon-media-hubs{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    width:100%;
    max-width:100%;
    min-width:0;
    margin:0;
    padding:0;
    gap:9px;
    overflow:visible;
  }
  .bon-media-hubs a{min-width:0;}

  .bon-featured-posts__head,
  .bon-section-head{
    flex-wrap:wrap;
    width:100%;
    min-width:0;
  }
  .bon-featured-posts__head > a,
  .bon-section-head > a{
    max-width:100%;
    white-space:normal;
    overflow-wrap:anywhere;
  }

  .bon-featured-posts__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .bon-featured-card{min-width:0;}
  .bon-featured-card--lead{grid-column:1 / -1;}

  .bon-holdings__grid,
  .bon-longthemes__grid,
  .bon-curated-latest__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
    margin:0;
    padding:0;
    overflow:visible;
  }
  .bon-theme-card:last-child{grid-column:1 / -1;}

  .bon-seed__flow{
    flex-wrap:wrap;
    white-space:normal;
    overflow:visible;
  }

  .bon-featured-card img,
  .bon-holding-card img,
  .bon-curated-latest img,
  .bon-mobile-visual img{
    max-width:100%;
  }
}

@media (max-width:480px){
  .bon-media-intro,
  .bon-featured-posts,
  .bon-holdings,
  .bon-longthemes,
  .bon-curated-latest{
    padding-left:10px;
    padding-right:10px;
  }
  .bon-section-head,
  .bon-featured-posts__head{
    gap:6px 10px;
  }
  .bon-section-head > a,
  .bon-featured-posts__head > a{
    width:100%;
    padding-top:0;
  }
}
