
.fhd-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
  width:100%;
}
.fhd-card{
  background:#fff;
  border:1px solid #ebe8f4;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(27,31,62,.055);
  transition:transform .18s ease,box-shadow .18s ease;
}
.fhd-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(27,31,62,.09);
}
.fhd-card__image{
  display:block;
  height:185px;
  overflow:hidden;
  background:#f5f3fa;
}
.fhd-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.fhd-card__fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#f8f3ff,#fff8e9);
  color:#8757e8;
  font-weight:800;
  font-size:18px;
}
.fhd-card__body{
  padding:18px;
}
.fhd-card__category{
  display:inline-block;
  margin-bottom:9px;
  color:#8757e8!important;
  text-decoration:none!important;
  font-size:10px;
  font-weight:800;
  letter-spacing:.04em;
}
.fhd-card h3{
  margin:0 0 10px!important;
  font-size:18px!important;
  line-height:1.3!important;
  letter-spacing:-.015em!important;
}
.fhd-card h3 a{
  color:#17213f!important;
  text-decoration:none!important;
}
.fhd-card p{
  margin:0 0 13px;
  color:#687086;
  font-size:13px;
  line-height:1.6;
}
.fhd-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  color:#9097a7;
  font-size:10.5px;
  margin-bottom:12px;
}
.fhd-card__read{
  color:#7448df!important;
  text-decoration:none!important;
  font-size:12px;
  font-weight:800;
}
@media(max-width:980px){
  .fhd-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
  .fhd-grid{grid-template-columns:1fr}
  .fhd-card__image{height:220px}
}
