/* ═══════════════════════════════════════════════════════════
   SPRÁVA SOCIÁLNÍCH SÍTÍ — page-specific styly
   (jen to, co není v style.css ani v page.css)
   ═══════════════════════════════════════════════════════════ */

/* ---------- Mřížka 6 karet = 3 + 3 (ne 4 + 2) ---------- */
.benefits-grid.ss-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}
@media (max-width: 900px) {
  .benefits-grid.ss-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .benefits-grid.ss-grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Kredibilita: strip se statistikami pod textem (bílá sekce) ----------
   Reuse .seo-proof-stats z page.css, jen odsazení nad ním. */
/* Proof sekce (mirror /ppc-reklama) — portrétní foto zarámované na výšku textu */
#dukaz .seo-proof-image img {
  height: 480px;
  object-fit: cover;
  object-position: center 15%;
}
@media (max-width: 768px) {
  #dukaz .seo-proof-image img { height: 320px; }
}
