.posts{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
  margin-bottom:70px;
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:22px 22px 22px 44px;
  padding:26px;
  display:flex; flex-direction:column;
  transition:transform .2s ease, border-color .2s ease, opacity .6s ease;

  opacity:0;
  transform:translateY(24px);
}
.card.in-view{opacity:1; transform:translateY(0);}
.card:hover{transform:translateY(-6px); border-color:var(--accent-2);}

.card .thumb{
  height:120px; border-radius:16px;
  margin-bottom:18px;
  background:linear-gradient(160deg, #103a1c, #081a0e);
  display:flex; align-items:center; justify-content:center;
  font-size:34px;
  overflow:hidden;
}
.card .thumb img{width:100%; height:100%; object-fit:cover;}

.card h3{font-size:19px; color:var(--mint); margin-bottom:8px;}
.card p{color:var(--text-dim); font-size:14.5px; margin-bottom:16px; flex:1;}

@media (max-width:860px){
  .posts{grid-template-columns:1fr;}
}
