/* 026 Home latest update and simplified route cards */
.home-latest-update{
  display:grid;
  grid-template-columns:minmax(0,1fr) 230px;
  gap:22px;
  align-items:center;
  margin:20px 0 26px;
  padding:24px;
  border:1px solid #f0c68c;
  border-radius:20px;
  background:
    radial-gradient(circle at right top,rgba(242,154,25,.15),transparent 45%),
    linear-gradient(135deg,#fff 0%,#fff8ec 100%);
  box-shadow:0 10px 28px rgba(85,48,0,.08);
}
.home-latest-update .latest-kicker{
  color:#b66000;
  font-size:11px;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.home-latest-update h2{
  margin:7px 0 9px;
  color:#172233;
  font-size:clamp(25px,3vw,38px);
  letter-spacing:-.035em;
}
.home-latest-update p{
  margin:0;
  color:#5f6b7d;
  line-height:1.55;
}
.home-latest-actions{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:15px;
}
.home-latest-actions button{
  min-height:42px;
  padding:9px 14px;
  border:1px solid #d88512;
  border-radius:10px;
  font:inherit;
  font-weight:900;
  cursor:pointer;
}
.home-latest-actions .primary{
  color:#fff;
  background:#e3131b;
  border-color:#e3131b;
}
.home-latest-actions .secondary{
  color:#8c4f00;
  background:#fff;
}
.home-latest-update img{
  width:100%;
  max-height:190px;
  object-fit:cover;
  object-position:top;
  border:1px solid #e3c89d;
  border-radius:13px;
  background:#fff;
}
@media(max-width:760px){
  .home-latest-update{grid-template-columns:1fr}
  .home-latest-update img{max-height:300px}
}
