/* =========================================================
   MAGAZINE THEME — HOME NEWS
========================================================= */

.home-news-v6{min-width:0}
.home-news-v6__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.home-news-v6__card{
  position:relative;
  display:grid;
  grid-template-rows:190px auto;
  overflow:hidden;
  min-width:0;
  border-bottom:4px solid #111;
  background:var(--surface);
  box-shadow:none;
}
.home-news-v6__thumb{
  position:relative;
  overflow:hidden;
  width:100%;
  height:190px;
  background:#ddd;
}
.home-news-v6__thumb picture,
.home-news-v6__thumb img,
.home-news-v6__img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.home-news-v6__thumb--empty{background:#e8e3d9}
.home-news-v6__body{padding:14px 0 10px;color:#111}
.home-news-v6__meta{
  margin-bottom:7px;
  color:var(--mag-red);
  font-size:10px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.home-news-v6__card-title{
  margin:0;
  color:#111;
  font-size:20px;
  font-weight:950;
  line-height:1.05;
}
.home-news-v6__excerpt{
  margin:10px 0 0;
  color:var(--muted);
  font-family:var(--font-serif);
  font-size:14px;
  line-height:1.5;
}
.home-news-v6__list{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0 26px;
  border-top:1px solid #111;
}
.home-news-v6__list a{
  display:grid;
  grid-template-columns:110px minmax(0,1fr);
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--border);
  color:#111;
  font-weight:850;
}
.home-news-v6__list small{
  color:var(--mag-red);
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}
@media (max-width:900px){
  .home-news-v6__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:650px){
  .home-news-v6__grid{grid-template-columns:1fr}
  .home-news-v6__list{grid-template-columns:1fr}
}
