/**
 * Systémové dodávky & Expresné dodanie — design layer.
 *
 * The page shell (breadcrumb, leaf headline, lead, content card, eco h2, teal
 * CTA band, feature strip) is the Ekomateriály layer: pages/ekomaterialy.css is
 * enqueued alongside this file. Only what this page adds lives here, scoped
 * under .sysdod so nothing leaks.
 *
 * The page has no sticky anchor nav, so .eko-content is a standalone card with
 * no .eko-layout grid parent — it needs the grid's top margin restored, and the
 * lead needs the same breathing room the layout used to give it.
 */

/* ---- Standalone content card (no .eko-layout wrapper) -------------------- */
.sysdod .eko-content { margin-top: var(--space-7); }

/* ---- Fact cards (three-up, teal-50 icon tile + copy) ---------------------
   Same recipe as the Eko štart benefit cards; each card restates one promise
   of the paragraph above it. */
.sysdod .sd-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.sysdod .sd-fact {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.sysdod .sd-fact-ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sysdod .sd-fact-ico svg { width: 24px; height: 24px; }
.sysdod .sd-fact h3 {
  margin: var(--space-1) 0 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
}
.sysdod .sd-fact p { margin: 0; font-size: 14px; line-height: 1.6; }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .sysdod .sd-facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .sysdod .sd-facts { grid-template-columns: 1fr; }
}
