/* ============================================================
   Nordic Sports e-shop - styly pro SEO popisy kategorií (.ns-seo)
   Vkládá HONZA do Shoptetu (Vzhled a obsah > Editor CSS / vlastní CSS).
   Markéta s tímto souborem nepracuje.
   Akcent: #0A5BA6 (modrá) + odstíny šedé. Žádné jiné barvy.
   ============================================================ */

.ns-seo {
  margin: 30px 0 10px;
  color: #333;
  font-size: 15px;
  line-height: 1.65;
}

/* Úvodní shrnutí - šedý box s modrou linkou */
.ns-seo__lead {
  background: #f4f6f8;
  border-left: 4px solid #0A5BA6;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-bottom: 28px;
}
.ns-seo__lead p { margin: 0; font-size: 16px; }
.ns-seo__lead p + p { margin-top: 10px; }

/* Sekce a nadpisy */
.ns-seo__section { margin-bottom: 26px; }
.ns-seo__section h2 {
  color: #0A5BA6;
  font-size: 21px;
  line-height: 1.3;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e6ea;
}
.ns-seo__section h3 {
  color: #444;
  font-size: 17px;
  margin: 18px 0 8px;
}
.ns-seo__section p { margin: 0 0 12px; }
.ns-seo__section ul,
.ns-seo__section ol { margin: 0 0 12px; padding-left: 22px; }
.ns-seo__section li { margin-bottom: 6px; }
.ns-seo__section a { color: #0A5BA6; text-decoration: underline; }
.ns-seo__section a:hover { text-decoration: none; }

/* Oddělovač sekcí */
.ns-seo__divider {
  height: 1px;
  background: #e2e6ea;
  margin: 26px 0;
}

/* Poznámka / tip */
.ns-seo__note {
  background: #eef3f8;
  border: 1px solid #d4dfe9;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 14px;
  color: #41505c;
}

/* FAQ */
.ns-seo__faq { margin-top: 6px; }
.ns-seo__faq-item {
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: #fafbfc;
}
.ns-seo__faq-q {
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  padding-left: 26px;
  position: relative;
}
.ns-seo__faq-q::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background: #0A5BA6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.ns-seo__faq-a p { margin: 0; color: #41505c; }

/* Dlaždice souvisejících kategorií */
.ns-seo__links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.ns-seo__links a {
  display: block;
  background: #f4f6f8;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  padding: 12px 14px;
  color: #0A5BA6;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background .15s, border-color .15s;
}
.ns-seo__links a:hover {
  background: #eef3f8;
  border-color: #0A5BA6;
}

/* Informační karty */
.ns-seo__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 6px;
}
.ns-seo__card {
  background: #fafbfc;
  border: 1px solid #e2e6ea;
  border-top: 3px solid #0A5BA6;
  border-radius: 8px;
  padding: 14px 16px;
}
.ns-seo__card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #0A5BA6;
}
.ns-seo__card p { margin: 0; font-size: 14px; color: #41505c; }

/* Tabulka */
.ns-seo__table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.ns-seo__table th,
.ns-seo__table td {
  border: 1px solid #e2e6ea;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
}
.ns-seo__table th { background: #f4f6f8; color: #0A5BA6; }
.ns-seo__table tr:nth-child(even) td { background: #fafbfc; }

/* Mobil */
@media (max-width: 600px) {
  .ns-seo__lead { padding: 14px 16px; }
  .ns-seo__section h2 { font-size: 19px; }
  .ns-seo__links,
  .ns-seo__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .ns-seo__links,
  .ns-seo__cards { grid-template-columns: 1fr; }
}
