/* ============================
   News page
============================ */

.news-hero{padding:80px 0 40px}
.news-hero-title{
  font-family:"Noto Sans JP",sans-serif;
  font-weight:300;
  font-size:clamp(40px,6vw,72px);
  letter-spacing:.08em;
  line-height:1;
  margin-bottom:80px;
}
.news-hero-divider{height:1px;background:#e5e5e5;margin-bottom:24px}
.news-hero-meta{display:flex;gap:180px;font-size:12px}
.news-hero-meta dt{
  color:#aaa;letter-spacing:.15em;font-size:11px;margin-bottom:8px;
}
.news-hero-meta dd{color:#333;letter-spacing:.08em}

/* ===== News items ===== */
.news-body{padding:40px 0 120px}
.news-items{
  display:flex;
  flex-direction:column;
  gap:60px;
  padding-left:clamp(0px,6vw,80px);
}
.news-item a{
  display:block;
  max-width:760px;
  padding:6px 0 24px;
  position:relative;
}
.news-item a:hover{opacity:1}
.news-meta{
  display:flex;
  align-items:center;
  gap:30px;
  margin-bottom:14px;
}
.news-date{
  font-size:12px;
  letter-spacing:.06em;
  color:#888;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.news-date svg{width:14px;height:14px;opacity:.55}
.news-tag{
  font-size:10px;
  letter-spacing:.3em;
  color:#999;
  padding:6px 14px;
  border:1px solid #e1e1e1;
  border-radius:4px;
}
.news-item-title{
  font-family:"Noto Sans JP",sans-serif;
  font-weight:400;
  font-size:clamp(18px,2vw,22px);
  letter-spacing:.08em;
  line-height:1.5;
  color:#222;
  margin-bottom:18px;
}
.news-item-desc{
  font-size:13px;
  line-height:1.9;
  letter-spacing:.06em;
  color:#666;
  margin-bottom:18px;
}
.news-more{
  display:inline-block;
  font-size:10px;
  letter-spacing:.3em;
  color:#888;
  margin-bottom:24px;
  transition:color .3s ease,letter-spacing .3s ease;
}
.news-item a:hover .news-more{color:#222;letter-spacing:.35em}
.news-line{
  display:block;
  width:80px;
  height:1px;
  background:#e5e5e5;
}

@media (max-width:960px){
  .news-hero-meta{gap:60px}
  .news-body{padding:20px 0 80px}
  .news-items{gap:44px;padding-left:0}
  .news-meta{gap:18px;flex-wrap:wrap}
}
