
/* === GSP Home Cards Override (targets first .grid after <h2> 'Наши психологи') === */
.home h2 + .grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(260px,1fr));
  gap:24px;
  align-items:stretch;
}

.home h2 + .grid .card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(2,6,23,.06);
  display:flex;
  flex-direction:column;
}

.home h2 + .grid .card > img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center;
  display:block;
  background:#f8fafc;
}

.home h2 + .grid .card h3{
  margin:16px 16px 6px;
  font-size:18px;
  line-height:1.25;
  color:#0f172a;
  font-weight:700;
}

.home h2 + .grid .card p{
  margin:0 16px 10px;
  color:#475569;
  font-size:14px;
}

.home h2 + .grid .card .btn{
  margin:0 16px 16px;
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  background:#111827;
  color:#fff;
  text-decoration:none;
  border:1px solid #111827;
}

.home h2 + .grid .card .btn:hover{
  background:#0b1020;
}
