/* ═══════════════════════════════════════════════════════════════════
   Obsahové stránky (blog, FAQ, destinácie, právne texty).
   Stavia na premenných zo style.css, takže sa drží vzhľadu hry
   vrátane tmavého režimu.
   ═══════════════════════════════════════════════════════════════════ */

.content { padding-bottom: 64px; }

/* ─── Navigácia v hlavičke ─── */
.nav-content { display: flex; align-items: center; gap: 4px; }
.nav-content a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 8px 12px; border-radius: 10px;
}
.nav-content a:hover { background: var(--soft); }
.nav-content .nav-cta {
  background: var(--coral); color: #fff; margin-left: 6px;
}
.nav-content .nav-cta:hover { background: var(--coral-dark); }
@media (max-width: 560px) {
  .nav-content a { padding: 7px 9px; font-size: 14px; }
}

/* ─── Omrvinky ─── */
.crumbs { border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--soft) 55%, transparent); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 10px 0; font-size: 13px; }
.crumbs li + li::before { content: '›'; color: var(--muted); margin-right: 6px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--sea); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ─── Hlavička stránky ─── */
.page-head { padding: 36px 0 20px; max-width: 46rem; }
.page-head h1 { font-size: clamp(28px, 4.4vw, 42px); margin-bottom: .3em; }
.page-head .lead { font-size: 18px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─── Text článku ─── */
.prose { max-width: 42rem; font-size: 17px; line-height: 1.72; }
.prose h2 {
  font-size: clamp(22px, 2.6vw, 28px); margin: 1.9em 0 .5em;
  scroll-margin-top: 80px;
}
.prose h3 { font-size: 19px; margin: 1.5em 0 .4em; }
.prose p { margin: 0 0 1.05em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--coral); }
.prose a { color: var(--sea); text-underline-offset: 2px; }
.prose b, .prose strong { color: var(--ink); }
.prose table {
  width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: 15px;
}
.prose th, .prose td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); }
.prose th { background: var(--soft); font-weight: 700; }
.prose tr:last-child td { border-bottom: 0; }
.prose .note {
  background: var(--soft); border-left: 3px solid var(--coral);
  padding: 12px 16px; border-radius: 0 10px 10px 0; font-size: 15px;
}

/* ─── Obsah článku ─── */
.toc {
  max-width: 42rem; background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px; margin: 26px 0 34px;
}
.toc h2 { font-size: 14px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin: 0 0 .6em; }
.toc ol { margin: 0; padding-left: 1.2em; font-size: 15px; }
.toc li { margin-bottom: .35em; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--sea); text-decoration: underline; }

.article .page-head { padding-bottom: 8px; }
.tags { margin: 30px 0 0; display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  background: var(--soft); border: 1px solid var(--line); color: var(--muted);
  border-radius: 99px; padding: 4px 12px; font-size: 13px; font-weight: 600;
}

/* ─── Karty (zoznam článkov) ─── */
.card-grid {
  display: grid; gap: 16px; margin: 8px 0 40px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.post-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.post-card:hover { transform: translateY(-2px); }
.post-card h2, .post-card h3 { font-size: 19px; margin: 0 0 .45em; line-height: 1.3; }
.post-card h3 { font-size: 17px; }
.post-card a { color: var(--ink); text-decoration: none; }
.post-card a:hover { color: var(--sea); }
.post-card p { margin: 0 0 .6em; font-size: 15px; line-height: 1.55; }

/* ─── Destinácie ─── */
.dest-grid {
  display: grid; gap: 12px; margin: 8px 0 40px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.dest-card {
  display: flex; flex-direction: column; gap: 3px; text-decoration: none; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; box-shadow: var(--shadow); transition: transform .12s ease;
}
.dest-card:hover { transform: translateY(-2px); border-color: var(--coral); }
.dest-flag { font-size: 26px; line-height: 1; }
.dest-name { font-weight: 700; font-size: 17px; }

.stat-row {
  display: grid; gap: 12px; margin: 26px 0 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px; display: flex; flex-direction: column; gap: 3px;
}
.stat-k { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.stat-v { font-size: 22px; font-weight: 800; font-family: var(--font-head); }

.pill-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 12px 0 34px; }
.pill-list li {
  background: var(--soft); border: 1px solid var(--line); border-radius: 99px;
  padding: 6px 14px; font-size: 14px;
}
.pill-list a { text-decoration: none; color: var(--ink); }
.pill-list a:hover { color: var(--sea); }

.trip-list { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 14px; }
.trip-row {
  display: flex; gap: 16px; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px;
}
.trip-row h3 { font-size: 17px; margin: 0 0 .25em; }
.trip-row .stars { color: var(--sun); font-size: 14px; letter-spacing: -1px; }
.trip-row-price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; min-width: 130px; }
.trip-row-price b { font-size: 21px; font-family: var(--font-head); }
.btn-sm { padding: 6px 14px; font-size: 14px; margin-top: 5px; }
@media (max-width: 620px) {
  .trip-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trip-row-price { align-items: flex-start; }
}

/* ─── FAQ ─── */
.faq-block { max-width: 46rem; margin-bottom: 34px; }
.faq-block > h2 { font-size: 15px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 32px 0 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 8px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 20px; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; color: var(--muted); font-weight: 400; line-height: 1; flex: none;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary h3 { margin: 0; font-size: 16.5px; font-family: var(--font); font-weight: 600; }
.faq-item summary:hover h3 { color: var(--sea); }
.faq-a { padding: 0 20px 18px; font-size: 16px; line-height: 1.65; color: var(--muted); }
.faq-a p { margin: 0 0 .8em; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--sea); }
.faq-a b { color: var(--ink); }

/* ─── Výzva na hranie ─── */
.cta {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: #fff; border-radius: var(--radius); padding: 34px 36px;
  margin: 44px 0; max-width: 46rem;
}
.cta h2 { color: #fff; margin: 0 0 .4em; font-size: clamp(21px, 2.6vw, 27px); }
.cta p { margin: 0 0 22px; opacity: .92; line-height: 1.6; }
.cta .btn-primary { background: var(--sun); color: #12212f; }
.cta .btn-primary:hover { background: #ffd47a; }

.related { max-width: 60rem; }
.related > h2 { font-size: 21px; margin-bottom: 16px; }

/* ─── Pätička ─── */
.foot-cols {
  display: grid; gap: 26px; padding: 8px 0 22px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
@media (max-width: 720px) { .foot-cols { grid-template-columns: 1fr 1fr; } }
.foot-cols h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin: 0 0 .7em; }
.foot-cols ul { list-style: none; padding: 0; margin: 0; font-size: 15px; }
.foot-cols li { margin-bottom: .45em; }
.foot-cols a { color: var(--ink); text-decoration: none; }
.foot-cols a:hover { color: var(--sea); text-decoration: underline; }
.foot-note { border-top: 1px solid var(--line); padding-top: 16px; margin-bottom: 0; }

/* Na obsahových stránkach nepotrebujeme hernú šírku */
body.is-content .wrap { max-width: 1100px; }
