/* TOP latest article carousel — Human Decision 2026-09-08. */
.home .chot-discovery{display:none}

.chot-top-latest{
  padding:8px 0 56px;
  background:#fff;
}
.chot-top-latest__shell{
  width:min(calc(100% - 40px),var(--chot-shell,1120px));
  margin-inline:auto;
}
.chot-top-latest__heading-row{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:16px;
}
.chot-top-latest__title{
  margin:0;
  font-family:"Yu Mincho","Hiragino Mincho ProN",serif;
  font-size:clamp(24px,2.2vw,32px);
  line-height:1.35;
  color:var(--chot-text);
}
.chot-top-latest__hint{
  flex:0 0 auto;
  font-size:12px;
  color:var(--chot-muted);
}
.chot-top-latest__track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(280px,340px);
  gap:16px;
  overflow-x:auto;
  padding:2px 2px 14px;
  overscroll-behavior-inline:contain;
  scroll-snap-type:x proximity;
  scrollbar-width:thin;
}
.chot-top-latest-card{
  min-width:0;
  scroll-snap-align:start;
}
.chot-top-latest-card__link{
  display:grid;
  grid-template-rows:180px 1fr;
  height:100%;
  overflow:hidden;
  border:1px solid var(--chot-border);
  border-radius:18px;
  background:var(--chot-surface);
  color:inherit;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(60,44,36,.06);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.chot-top-latest-card--text-only .chot-top-latest-card__link{grid-template-rows:1fr}
.chot-top-latest-card__link:hover,
.chot-top-latest-card__link:focus-visible{
  transform:translateY(-2px);
  border-color:#dfcfc6;
  box-shadow:0 10px 28px rgba(60,44,36,.09);
  outline:none;
}
.chot-top-latest-card__link:focus-visible{box-shadow:0 0 0 3px rgba(233,121,145,.24),0 10px 28px rgba(60,44,36,.09)}
.chot-top-latest-card__media{
  display:block;
  overflow:hidden;
  background:var(--chot-pink-soft);
}
.chot-top-latest-card__img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}
.chot-top-latest-card__body{
  display:grid;
  align-content:start;
  gap:8px;
  padding:16px 17px 18px;
}
.chot-top-latest-card__date{
  font-size:12px;
  line-height:1.4;
  color:var(--chot-muted);
}
.chot-top-latest-card__title{
  font-size:18px;
  font-weight:700;
  line-height:1.5;
  color:var(--chot-text);
}
.chot-top-latest-card__excerpt{
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  font-size:13px;
  line-height:1.7;
  color:var(--chot-muted);
}
@media(max-width:620px){
  .chot-top-latest{padding:4px 0 42px}
  .chot-top-latest__shell{width:min(calc(100% - 30px),100%)}
  .chot-top-latest__heading-row{align-items:center;margin-bottom:12px}
  .chot-top-latest__hint{font-size:11px}
  .chot-top-latest__track{
    grid-auto-columns:min(82vw,310px);
    gap:12px;
    margin-right:-15px;
    padding-right:15px;
  }
  .chot-top-latest-card__link{grid-template-rows:165px 1fr;border-radius:16px}
  .chot-top-latest-card__body{padding:14px 15px 16px}
  .chot-top-latest-card__title{font-size:16px}
}
