/* Frontend styles for Lean Downloads */
.lean-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:24px;
}
.lean-card{
  background:#fafafa;
  border:1px solid #eee;
  border-radius:10px;
  padding:26px 18px 24px;
  text-align:center;
  box-shadow:0 1px 2px rgba(0,0,0,0.03);
}
.lean-card-title{
  font-size:18px;
  font-weight:600;
  color:#d97f3d; /* orange like screenshot */
  line-height:1.4;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  margin-bottom:18px;
}
.lean-card-btn{
  display:inline-block;
  background:#61ce70; /* green */
  color:#fff;
  padding:10px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}
.lean-card-btn.disabled{
  opacity:0.5;
  background:#999;
  cursor:not-allowed;
}
