/* ===== HOME LAYOUT ===== */
.home-grid{
  display:grid;
  grid-template-columns: 2.2fr 1fr;
  gap:16px;
  align-items:start;
}

/* ===== HERO ===== */
.hero{
  padding:18px;
  display:block;
}

.hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:nowrap;
}

.hero-date{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  white-space:nowrap;
}

.hero-badges{
  display:flex;
  gap:10px;
  white-space:nowrap;
}

.hero-body{
  margin-top:20px;
}

.hero-image{
  float:right;
  width:min(520px, 46%);
  margin:4px 0 14px 28px;
}

.hero-image img{
  width:100%;
  height:auto;
  display:block;
}

.hero-body::after{
  content:"";
  display:block;
  clear:both;
}

.hero-title{
  font-weight:900;
  font-size:22px;
  margin:0 0 14px 0;
}

.hero-text{
  line-height:1.7;
  margin:0 0 14px 0;
}

.hero-foot{
  margin-top:16px;
  color:var(--muted);
  font-size:14px;
}

.hero-date-icon{
  width:18px !important;
  height:18px !important;
  display:inline-block !important;
  visibility:visible !important;
  opacity:1 !important;
  flex:0 0 auto;
}
.hero-date-icon path{
  stroke: currentColor !important;
}

/* ===== HOME NEWS (clean list) ===== */
.home-news-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:12px;
}

.home-news-item{
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}

.home-news-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.home-news-title{
  font-weight:900;
  font-size:16px;
  margin-bottom:6px;
}

.home-news-desc{
  color:var(--muted);
  font-size:14px;
  margin-bottom:8px;
}

/* Ссылка "Подробнее..." — синяя, без подчёркивания */
.home-news-more{
  color:var(--brand);
  font-weight:800;
  font-size:14px;
  text-decoration:none;
}

.home-news-more:hover{
  text-decoration:underline;
}

/* "Все новости" */
.home-news-all{
  display:inline-block;
  margin-top:14px;
  font-weight:800;
  color:var(--brand);
  text-decoration:none;
}
.home-news-all:hover{
  text-decoration:underline;
}