/* Small helper for inner pages */
.page-hero{
  padding-top:110px;
  padding-bottom:36px;
  background:#fff;
}
.page-hero h1{
  margin:0;
  font-size:46px;
  font-weight:900;
  color:#008a78;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.page-hero p{
  margin:12px 0 0;
  color:#444;
  line-height:1.8;
  max-width:900px;
}
.page-section{
  padding:50px 0 70px;
  background:#fff;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.page-card{
  background:#111;
  border-radius:10px;
  overflow:hidden;
  text-decoration:none;
  color:#fff;
}
.page-card img{width:100%;height:220px;object-fit:cover;display:block}
.page-card .pad{padding:16px}
.page-card h3{margin:0 0 8px;font-weight:900}
.page-card p{margin:0;color:rgba(255,255,255,.85);line-height:1.7;font-size:14px}

@media(max-width:900px){
  .card-grid{grid-template-columns:1fr}
}
