/* ==========================================================================
   DYSFÁZKA — PORTÁL LÉKAŘE
   Design system v identitě Dysfázka (Ivory / Indigo / Hrušková / Inkoust)
   Fraunces (display) + Plus Jakarta Sans (text)
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Tokeny ---------- */
:root {
  /* Plochy */
  --bg:        #FFFEEC;   /* Ivory */
  --bg-card:   #FFFFFF;
  --bg-deep:   #2A2540;
  --ink:       #1A1530;

  /* Text */
  --text:       #1A1530;
  --text-muted: #3D3658;
  --text-soft:  #6B6485;

  /* Indigo */
  --accent:       #A88AED;
  --accent-hover: #8E6DD9;
  --accent-text:  #7A55C9;  /* čitelné jako text na ivory */
  --accent-deep:  #5E3DA6;

  /* Hrušková */
  --pear: #CBD83B;

  --line: #1A1530;

  /* Typografie */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Rozestupy */
  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;   --sp-7: 3rem;   --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --container: 1200px;
  --container-wide: 1400px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --t-fast: 150ms ease;
  --t: 250ms ease;
}

/* ---------- Základ ---------- */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

h1 { font-size: clamp(2.2rem, 5vw + 1rem, 3.8rem); font-weight: 400; letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem, 3vw + 1rem, 2.6rem); font-weight: 400; letter-spacing: -.025em; }
h3 { font-size: clamp(1.3rem, 1.5vw + 1rem, 1.7rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; }

::selection { background: var(--pear); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Podpis značky: hruškový tah pod zvýrazněným slovem */
h1 em, h2 em, .page-title em, .home-hero-title em, .section-title em {
  font-style: normal;
  color: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M3 10C38 4 74 12 108 6c26-4 52 2 89 4' stroke='%23CBD83B' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% .32em;
  padding-bottom: .10em;
  transition: background-size 700ms cubic-bezier(.2,.7,.2,1) 200ms;
}
.reveal:not(.is-visible) em { background-size: 0% .32em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--sp-5); }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 3rem) 0; }

.skip-link {
  position: absolute; top: -100px; left: 0; z-index: 1000;
  background: var(--ink); color: #fff; padding: var(--sp-3) var(--sp-5);
  transition: top var(--t);
}
.skip-link:focus { top: 0; }

/* ---------- Horní lišta ---------- */
.topbar {
  background: var(--bg-deep);
  color: rgba(255,255,255,.92);
  font-size: .86rem;
  border-bottom: 2px solid var(--ink);
}
.topbar-inner {
  display: flex; justify-content: flex-end; align-items: center;
  gap: var(--sp-5); flex-wrap: wrap;
}
.topbar a {
  color: #fff; font-weight: 600;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding-block: .45rem;
  transition: color var(--t-fast);
}
.topbar a:hover { color: var(--pear); }
.topbar-divider { color: rgba(255,255,255,.55); }
.topbar :focus-visible { outline-color: var(--pear); }

@media (max-width: 640px) {
  .topbar { font-size: .8rem; }
  .topbar-inner { gap: var(--sp-4); justify-content: center; }
  .topbar-divider { display: none; }
}

/* ---------- Hlavička ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow var(--t);
}
.header.is-scrolled { box-shadow: 0 4px 0 0 var(--ink); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  max-width: var(--container-wide); margin: 0 auto;
}

.logo { display: inline-flex; align-items: center; gap: .7rem; padding: 4px 0; flex-shrink: 0;
  position: relative; z-index: 95; }
.logo-img { height: 34px; width: auto; display: block; transition: transform var(--t-fast); }
.logo:hover .logo-img { transform: scale(1.03); }
.logo-sub {
  font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-text); border-left: 2px solid var(--ink); padding-left: .7rem;
  line-height: 1.3; white-space: nowrap;
}
@media (max-width: 1200px) { .logo-sub { display: none; } }
@media (max-width: 700px) { .logo-img { height: 27px; } }

/* ---------- Navigace ---------- */
.nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }

.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: var(--sp-2) 10px;
  font-size: .95rem; font-weight: 600; color: var(--text);
  border-radius: var(--radius-sm); white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { background: var(--accent); color: var(--ink); }
.nav-link[aria-current="page"] { color: var(--accent-text); }
.nav-link svg { width: 11px; height: 11px; transition: transform var(--t-fast); }
.nav-item:hover .nav-link svg,
.nav-item:focus-within .nav-link svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 290px;
  background: var(--bg-card);
  border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: 4px 4px 0 0 var(--ink);
  padding: var(--sp-3); margin-top: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  pointer-events: none;
  max-height: min(70vh, 620px); overflow-y: auto; overscroll-behavior: contain;
  transition: opacity 160ms ease 160ms, visibility 160ms ease 160ms, transform 160ms ease 160ms;
}
.nav-dropdown a {
  display: block; padding: .6rem var(--sp-3);
  font-size: .94rem; line-height: 1.35; color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: var(--accent); color: var(--ink); }

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto; transition-delay: 0ms;
}

/* neviditelný můstek přes 8px mezeru pod položkou menu */
@media (min-width: 1025px) {
  .nav-item::after {
    content: ""; position: absolute; top: 100%; left: 0; right: 0;
    height: 14px; display: none;
  }
  .nav-item:hover::after, .nav-item:focus-within::after { display: block; }
}

.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: var(--sp-2) var(--sp-4);
  border-radius: 100px; font-size: .88rem; font-weight: 700;
  border: 2px solid var(--ink);
  transition: all var(--t);
}
.nav-cta:hover { background: var(--pear); color: var(--ink) !important; }

.menu-toggle {
  display: none; width: 44px; height: 44px; padding: 10px;
  position: relative; z-index: 95;
  border: 2px solid var(--ink); border-radius: 10px; background: var(--bg-card);
}
.menu-toggle span {
  display: block; width: 100%; height: 2px; background: var(--ink);
  border-radius: 1px; transition: all var(--t);
}
.menu-toggle span:nth-child(2) { margin: 5px 0; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: block; }

  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(420px, 92vw);
    background: var(--bg);
    border-left: 2px solid var(--ink);
    padding: 5.5rem var(--sp-5) var(--sp-6);
    overflow-y: auto; gap: 0; z-index: 90;
  }
  .nav.is-open .nav-item { border-bottom: 2px solid rgba(26,21,48,.12); }
  .nav.is-open .nav-link {
    width: 100%; padding: var(--sp-4) var(--sp-2);
    font-size: 1.05rem; justify-content: space-between;
  }
  .nav.is-open .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    pointer-events: auto; box-shadow: none; border: none; background: transparent;
    padding: 0 0 var(--sp-3) var(--sp-4); display: none; max-height: none;
  }
  .nav.is-open .nav-item.is-expanded .nav-dropdown { display: block; }
  .nav.is-open .nav-item.is-expanded .nav-link svg { transform: rotate(180deg); }
  .nav.is-open .nav-cta { margin-top: var(--sp-4); text-align: center; justify-content: center; }
}

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(26,21,48,.4);
  z-index: 80; display: none;
}
.nav-backdrop.is-visible { display: block; }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: .85rem 1.6rem;
  font-size: .95rem; font-weight: 700; white-space: nowrap;
  border: 2px solid var(--ink); border-radius: 999px;
  box-shadow: 4px 4px 0 0 var(--ink);
  background: var(--bg-card); color: var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.btn:hover, .btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
  background: var(--pear); color: var(--ink);
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--pear); color: var(--ink); }
.btn-ghost { background: var(--bg-card); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent-text); font-weight: 700; font-size: .95rem;
  transition: gap var(--t-fast);
}
.link-arrow:hover { gap: 9px; }

/* ---------- Eyebrow / popisky ---------- */
.eyebrow {
  display: inline-block;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-text);
}

/* ---------- Hero (domovská) ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(2rem, 5vw, 4rem); }
.hero-inner {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.35fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05; font-weight: 400; letter-spacing: -.02em;
  margin: 1.2rem 0 1.4rem;
}
.hero-lead { font-size: 1.15rem; line-height: 1.6; color: var(--text-muted); max-width: 54ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-aside { display: flex; flex-direction: column; gap: 1.4rem; }

.stat-card {
  padding: 1.8rem;
  background: var(--bg-card);
  border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--ink);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem; line-height: 1; font-weight: 500;
  color: var(--accent-text); margin-bottom: .5rem;
}
.stat-num span { font-size: 1.4rem; color: var(--text-soft); font-style: italic; }
.stat-label { font-size: .95rem; color: var(--text-muted); line-height: 1.5; }
.stat-source { display: block; margin-top: 6px; font-size: .78rem; opacity: .75; }

.quote-card {
  background: var(--bg-card);
  border: 2px solid var(--ink); border-left: 6px solid var(--accent);
  border-radius: 12px; padding: 1rem 1.25rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; line-height: 1.5; color: var(--text);
}

/* ---------- Pásy sekcí ---------- */
.band-indigo {
  background: var(--accent);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.band-pear {
  background: var(--pear);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.band-ink {
  background: var(--ink); color: rgba(255,255,255,.88);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.band-ink h2, .band-ink h3 { color: #fff; }
.band-ink .eyebrow, .band-ink .link-arrow { color: var(--pear); }
.band-indigo .eyebrow, .band-pear .eyebrow,
.band-indigo .link-arrow, .band-pear .link-arrow { color: var(--ink); }
.band-indigo .section-lead, .band-pear .section-lead { color: var(--ink); }

/* ---------- Hlavička sekce ---------- */
.section-header { text-align: center; max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15; font-weight: 400; letter-spacing: -.01em;
  margin-top: .5rem;
}
.section-lead { font-size: 1.05rem; color: var(--text-muted); margin-top: 1rem; }

/* ---------- Karty ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.card {
  display: block; padding: 1.9rem;
  background: var(--bg-card); color: inherit;
  border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
a.card:hover, a.card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
  background: var(--pear);
}
.card-num {
  display: inline-block; background: var(--ink); color: var(--bg);
  padding: 4px 11px; border-radius: 999px;
  font-family: var(--font-display); font-size: .9rem; font-weight: 600;
  margin-bottom: 1rem;
}
.card h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  line-height: 1.25; margin-bottom: .6rem;
}
.card p { font-size: .95rem; line-height: 1.55; color: var(--text-muted); margin: 0; }
.card .link-arrow { margin-top: 1rem; }

/* karta s ikonou (rozcestník) */
.card-icon-wrap {
  width: 52px; height: 52px; margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent); color: var(--ink);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
}
.card--center { text-align: center; }
.card--center .card-icon-wrap { margin-left: auto; margin-right: auto; }

/* dlaždice s barevnou hlavou */
.tile {
  display: block; overflow: hidden; color: inherit;
  background: var(--bg-card);
  border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.tile:hover, .tile:focus-visible {
  transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink);
}
.tile-head {
  aspect-ratio: 5 / 3; background: var(--pear);
  border-bottom: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; text-align: center;
}
.tile-head span {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink);
}
.tile--indigo .tile-head { background: var(--accent); }
.tile-body { padding: 1.4rem; }
.tile-cat {
  display: block; font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: .5rem;
}
.tile h3 { font-size: 1.2rem; font-weight: 500; line-height: 1.25; margin-bottom: .5rem; }
.tile p { font-size: .93rem; line-height: 1.5; color: var(--text-muted); margin: 0; }

/* statistika na tmavém */
.band-ink .stat-card {
  background: rgba(255,255,255,.08);
  border: 2px solid var(--pear);
  box-shadow: none;
}
.band-ink .stat-num { color: var(--pear); }
.band-ink .stat-num span { color: rgba(255,255,255,.6); }
.band-ink .stat-label { color: rgba(255,255,255,.8); }

/* ---------- Záhlaví obsahové stránky ---------- */
.page-header {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.page-header-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: .4rem;
  font-size: .88rem; color: var(--text-muted); margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--accent-text); }
.breadcrumb-sep { color: var(--text-soft); }
.breadcrumb > span:last-child { color: var(--text); font-weight: 600; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05; font-weight: 400; letter-spacing: -.02em; margin: 0;
}
.page-lead { font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; margin-top: 1.2rem; }
.page-meta {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  margin-top: 1.25rem; font-size: .88rem; color: var(--text-muted);
}
.page-meta-item { display: inline-flex; align-items: center; gap: .4rem; }
.page-meta-item svg { width: 14px; height: 14px; opacity: .8; }

/* ---------- Obsah (prose) ---------- */
.prose-wrap { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.prose-layout {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5);
}
@media (min-width: 1100px) {
  .prose-layout.has-toc { grid-template-columns: minmax(0,1fr) 250px; }
}

.prose {
  max-width: 100%;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
}
/* Text drží komfortní délku řádku (cca 60–70 znaků),
   strukturované bloky smějí být širší. */
.prose > p,
.prose > ul,
.prose > ol,
.prose > h2,
.prose > h3,
.prose > h4,
.prose > blockquote,
.prose > dl,
.prose > .tip-box,
.prose > .pozor-box,
.prose > .quote-box,
.prose > .lead-note { max-width: 56ch; }

.prose > .steps,
.prose > .do-dont,
.prose > .myth,
.prose > table,
.prose > figure { max-width: 940px; }

@media (max-width: 700px) { .prose { font-size: 1.08rem; } }

.prose > p:first-child, .prose > p.lead {
  font-size: 1.2rem; line-height: 1.55; font-weight: 500; color: var(--text);
  margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--ink);
}
.prose p { margin: 0 0 1.15em; }
.prose p:last-child { margin-bottom: 0; }

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 500;
  margin-top: 2.6em; margin-bottom: .7em; padding-top: .5rem;
  scroll-margin-top: 110px;
}
.prose h2::before {
  content: ''; display: block; width: 36px; height: 4px;
  background: var(--accent); border-radius: 2px; margin-bottom: 1rem;
}
.prose > h2:first-of-type, .prose > p:first-child + h2 { margin-top: 1.6em; }
.prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.4rem); font-weight: 600;
  margin-top: 1.9em; margin-bottom: .5em; scroll-margin-top: 110px;
}
.prose h4 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0; margin-top: 1.6em; margin-bottom: .4em;
}
.prose strong { font-weight: 700; color: var(--text); }
.prose em { font-style: italic; font-family: var(--font-display); }

.prose a:not(.btn):not(.link-arrow) {
  color: var(--accent-text); font-weight: 600;
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px;
  padding: 0 2px; border-radius: 2px;
  transition: background var(--t-fast), color var(--t-fast);
}
.prose a:not(.btn):not(.link-arrow):hover { background: var(--pear); color: var(--ink); }
.prose a:visited:not(.btn):not(.link-arrow) { color: var(--accent-deep); }

.prose ul, .prose ol { margin: 1em 0 1.6em; padding-left: 0; list-style: none; }
.prose li { position: relative; padding-left: 2rem; margin-bottom: .75em; line-height: 1.7; }
.prose ul > li::before {
  content: ''; position: absolute; left: .3rem; top: .68rem;
  width: 8px; height: 8px; background: var(--accent); border-radius: 2px;
}
.prose ol { counter-reset: p-c; }
.prose ol > li { counter-increment: p-c; }
.prose ol > li::before {
  content: counter(p-c); position: absolute; left: 0; top: 0; width: 1.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  color: var(--accent-text); line-height: 1.6;
}
.prose ul ul, .prose ol ol, .prose ul ol, .prose ol ul { margin: .5em 0; }

.prose blockquote {
  margin: 2rem 0; padding: 1rem 0 1rem 1.5rem;
  border-left: 4px solid var(--accent);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; line-height: 1.45; color: var(--text);
}
.prose blockquote p { margin: 0; }
.prose blockquote cite {
  display: block; margin-top: .6rem; font-size: .88rem; font-style: normal;
  font-family: var(--font-body); font-weight: 600; color: var(--text-muted);
}

.prose hr { border: none; border-top: 2px solid var(--ink); margin: 3rem auto; max-width: 80px; }

.prose table {
  width: 100%; border-collapse: collapse; margin: 1.6rem 0;
  font-size: .95rem; border: 2px solid var(--ink); border-radius: 8px;
  overflow: hidden; box-shadow: 4px 4px 0 0 var(--ink);
}
.prose th, .prose td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--ink); }
.prose th { background: var(--accent); color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--ink); }
.prose tr:last-child td { border-bottom: none; }
.prose tr:nth-child(even) td { background: rgba(26,21,48,.04); }

/* ---------- Boxy v obsahu ---------- */
.tip-box, .pozor-box, .quote-box, .lead-note {
  border: 2px solid var(--ink); border-radius: 14px;
  padding: 1.2rem 1.5rem; margin: 1.9em 0;
}
.tip-box { background: var(--pear); }
.pozor-box { background: var(--bg-card); border-left-width: 10px; border-left-color: var(--accent); }
.quote-box {
  background: var(--bg-card); border-left-width: 10px; border-left-color: var(--pear);
  font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.5;
}
.lead-note { background: var(--pear); font-weight: 700; line-height: 1.5; }
.tip-box > :first-child, .pozor-box > :first-child, .quote-box > :first-child { margin-top: 0; }
.tip-box > :last-child, .pozor-box > :last-child, .quote-box > :last-child { margin-bottom: 0; }
.tip-box h3, .pozor-box h3 { margin-top: 0 !important; font-size: 1.05rem; }
.box-label {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .5rem; color: var(--ink);
}
.pozor-box .box-label { color: var(--accent-text); }

/* číslované kroky */
.steps { margin: 1.6rem 0; display: grid; gap: 1rem; }
.step {
  position: relative;
  padding: 1.4rem 1.5rem 1.4rem 4.4rem;
  background: var(--bg-card);
  border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: 4px 4px 0 0 var(--ink);
}
.step::before {
  content: attr(data-step);
  position: absolute; left: 1.15rem; top: 1.15rem;
  width: 2.25rem; height: 2.25rem;
  background: var(--accent); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.step h4 { margin: 0 0 .5rem !important; font-family: var(--font-display) !important; font-size: 1.12rem !important; }
.step p { margin: 0 0 .6rem; color: var(--text-muted); font-size: .95rem; line-height: 1.55; }
.step p:last-child { margin-bottom: 0; }
.step ul { margin: .6rem 0 0; }
.step li { font-size: .95rem; }

/* dvojice ANO / NE */
.do-dont { display: grid; gap: 1.25rem; margin: 1.8rem 0; }
@media (min-width: 820px) { .do-dont { grid-template-columns: 1fr 1fr; align-items: start; } }
.dd-col {
  border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--ink);
  background: var(--bg-card); overflow: hidden;
}
.dd-head {
  padding: .8rem 1.25rem; font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
}
.dd-do .dd-head { background: var(--pear); color: var(--ink); }
.dd-dont .dd-head { background: var(--accent); color: var(--ink); }
.dd-body { padding: 1.1rem 1.35rem; }
.dd-body ol, .dd-body ul { margin: 0; }
.dd-body li { font-size: .97rem; }
.dd-body li strong { display: block; margin-bottom: .2rem; }

/* citace pro lékaře */
.say {
  display: block; margin: .5rem 0 0;
  padding: .7rem .95rem;
  background: rgba(168,138,237,.16);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-display); font-style: italic;
  font-size: .98rem; line-height: 1.45; color: var(--text);
}

/* fakt vs. mýtus */
.myth {
  border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: 4px 4px 0 0 var(--ink);
  background: var(--bg-card);
  margin: 1.4rem 0; overflow: hidden;
}
.myth-q {
  padding: 1rem 1.3rem; margin: 0;
  background: rgba(26,21,48,.05);
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; line-height: 1.4; color: var(--ink);
}
.myth-a { padding: 1.1rem 1.3rem; }
.myth-a p { margin: 0 0 .7rem; font-size: .98rem; }
.myth-a p:last-child { margin-bottom: 0; }
.myth-a .real { font-weight: 700; }
.myth-a .real::before {
  content: 'Realita'; display: block;
  font-family: var(--font-body); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-text); margin-bottom: .25rem;
}

/* ---------- Obsah stránky (TOC) ---------- */
.toc { display: none; }
@media (min-width: 1100px) {
  .toc {
    display: block; position: sticky; top: 110px; align-self: start;
    font-size: .88rem; max-height: calc(100vh - 150px); overflow-y: auto;
    padding: 1.2rem 1rem;
    background: var(--bg-card);
    border: 2px solid var(--ink); border-radius: 12px;
    box-shadow: 4px 4px 0 0 var(--ink);
  }
}
.toc-title {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-soft); margin-bottom: .75rem; font-weight: 700;
}
.toc li { padding: 2px 0; }
.toc a {
  display: block; padding: 5px 8px; margin-left: -8px;
  color: var(--text-muted); line-height: 1.4;
  border-left: 2px solid transparent;
  transition: all var(--t-fast);
}
.toc a:hover { color: var(--accent-text); }
.toc a.is-active {
  background: var(--pear); color: var(--ink);
  border-left: 3px solid var(--ink); border-radius: 0 6px 6px 0; font-weight: 700;
}
.toc li.toc-h3 a { padding-left: 18px; font-size: .84rem; }

/* ---------- Redakční poznámka ---------- */
.editorial-note {
  max-width: 780px;
  margin: clamp(2.5rem,5vw,4rem) auto clamp(3rem,6vw,4.5rem);
  padding: 1.4rem 1.6rem;
  background: var(--bg-card);
  border: 2px solid var(--ink); border-left-width: 10px; border-left-color: var(--accent);
  border-radius: 14px; box-shadow: 4px 4px 0 0 var(--ink);
  display: flex; gap: 1rem; align-items: flex-start;
}
.editorial-note svg { width: 22px; height: 22px; flex: none; color: var(--accent-text); margin-top: 3px; }
.editorial-note-title { font-weight: 700; margin-bottom: .35rem; }
.editorial-note p { font-size: .94rem; line-height: 1.65; color: var(--text-muted); margin: 0; }
.editorial-note a { color: var(--accent-text); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Další kroky / související ---------- */
.next-steps { border-top: 2px solid var(--ink); }
.related-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); } }

/* ---------- CTA ---------- */
.cta { padding: clamp(3rem, 6vw, 5rem) var(--sp-5); }
.cta-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: clamp(2.2rem, 5vw, 3.5rem) 2rem;
  background: var(--accent);
  border: 2px solid var(--ink); border-radius: 24px;
  box-shadow: 8px 8px 0 0 var(--ink);
}
.cta-inner h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 400; margin-bottom: 1rem; color: var(--ink); }
.cta-inner p { font-size: 1.05rem; color: var(--ink); line-height: 1.6; margin: 0 auto 2rem; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ---------- Patička ---------- */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,.84);
  border-top: 5px solid var(--pear);
  padding: clamp(3rem, 6vw, 5rem) 0 var(--sp-5);
}
.footer a { color: rgba(255,255,255,.84); }
.footer a:hover, .footer a:focus-visible {
  color: var(--pear); text-decoration: underline; text-underline-offset: 3px;
}
.footer :focus-visible { outline-color: var(--pear); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
@media (min-width: 620px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-6); } }

.footer-brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: #fff; margin-bottom: 1rem;
}
.footer-logo { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer-tagline { color: rgba(255,255,255,.80); font-size: .95rem; line-height: 1.6; max-width: 320px; }
.footer-note { font-size: .8rem; margin-top: .6rem; color: rgba(255,255,255,.70); }
.footer-heading {
  color: var(--pear); font-family: var(--font-body);
  font-size: .92rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .95rem; }

.footer-legal {
  margin-top: 1.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: .4rem 1.8rem;
  font-size: .86rem; color: rgba(255,255,255,.74);
}
.footer-legal strong { color: #fff; font-weight: 600; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4);
  padding-top: var(--sp-5); margin-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .86rem; color: rgba(255,255,255,.74);
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  display: grid; place-items: center; color: rgba(255,255,255,.8);
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--pear); border-color: var(--pear); color: var(--ink); }

/* ---------- Ukazatel čtení ---------- */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: var(--accent); z-index: 9999;
  transition: width 80ms linear; pointer-events: none;
}

/* ---------- Vyhledávání ---------- */
.search-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; z-index: 95;
  padding: 7px 12px;
  background: var(--bg-card); color: var(--text);
  border: 2px solid var(--ink); border-radius: 999px;
  font-size: .85rem; font-weight: 600;
}
.search-trigger:hover { background: var(--pear); }
.search-trigger kbd {
  background: var(--bg); border: 1px solid var(--ink); border-radius: 4px;
  padding: 1px 6px; font-size: .72rem; font-family: inherit; color: var(--text-muted);
}

.search-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(26,21,48,.5); backdrop-filter: blur(8px);
  display: none; align-items: flex-start; justify-content: center; padding-top: 12vh;
}
.search-overlay.is-open { display: flex; }
.search-modal {
  width: 92%; max-width: 640px;
  background: var(--bg-card);
  border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 6px 6px 0 0 var(--ink);
  overflow: hidden;
}
.search-input {
  width: 100%; padding: 18px 20px; border: none;
  border-bottom: 2px solid var(--ink);
  font-size: 1rem; font-family: inherit; color: var(--text);
  background: transparent; outline: none;
}
.search-results { max-height: 52vh; overflow-y: auto; padding: 8px; }
.search-result { display: block; padding: 12px 14px; border-radius: 10px; }
.search-result:hover, .search-result.is-active { background: var(--pear); }
.search-result-title { font-weight: 700; font-size: .95rem; margin: 0 0 2px; }
.search-result-cat { font-size: .82rem; color: var(--accent-text); margin: 0; }
.search-empty { padding: 32px 20px; text-align: center; color: var(--text-soft); font-size: .92rem; }
.search-footer {
  padding: 10px 16px; background: var(--bg);
  border-top: 2px solid var(--ink);
  font-size: .78rem; color: var(--text-muted); display: flex; gap: 16px;
}
.search-footer kbd {
  background: var(--bg-card); border: 1px solid var(--ink);
  border-radius: 4px; padding: 1px 5px; font-size: .72rem; font-family: inherit;
}
@media (max-width: 900px) {
  .search-trigger-label, .search-trigger kbd { display: none; }
}

/* ---------- Zpět nahoru ---------- */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px;
  background: var(--accent); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 0 var(--ink);
  transition: all var(--t-fast); z-index: 998;
}
.back-to-top.is-visible { display: flex; }
.back-to-top:hover { background: var(--pear); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 0 var(--ink); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Animace odhalení ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .13s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .21s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .29s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .37s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .45s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .53s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .61s; }

html:not(.js) .reveal, html:not(.js) .reveal-stagger > * { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  h1 em, h2 em { background-size: 100% .32em !important; transition: none !important; }
}

/* ---------- Tisk ---------- */
@media print {
  .topbar, .header, .footer, .nav, .reading-progress, .toc,
  .search-trigger, .menu-toggle, .back-to-top, .cta, .next-steps { display: none !important; }
  body { background: #fff; color: #000; }
  .prose { max-width: 100%; font-size: 11pt; }
  .prose h2::before { background: #000 !important; }
  .step, .tip-box, .pozor-box, .myth, .dd-col { box-shadow: none !important; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
}

/* ==========================================================================
   SOCIÁLNÍ SÍTĚ
   ========================================================================== */
.social-band { padding: clamp(2.2rem, 4vw, 3.2rem) 0; }
.social-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.social-inner .section-title { margin-top: .3rem; }
.social-links { display: flex; flex-wrap: wrap; gap: .8rem; }

.social-btn {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .7rem 1.3rem .7rem .9rem;
  background: var(--bg-card); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  box-shadow: 4px 4px 0 0 var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.social-btn:hover, .social-btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
  background: var(--accent);
}
.social-btn-icon {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%; border: 2px solid var(--ink);
  background: var(--accent); color: var(--ink);
  display: grid; place-items: center;
}
.social-btn:hover .social-btn-icon { background: var(--bg-card); }
.social-btn-icon svg { width: 20px; height: 20px; }
.social-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.social-btn-text strong { font-size: 1rem; font-weight: 700; }
.social-btn-text span { font-size: .82rem; color: var(--text-muted); }
.social-btn:hover .social-btn-text span { color: var(--ink); }

/* ==========================================================================
   INSTAGRAM — vodorovná galerie
   ========================================================================== */
.ig-feed { padding: clamp(3rem, 6vw, 4.5rem) 0; border-top: 2px solid var(--ink); }

.ig-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.8rem; }

.ig-scroller { position: relative; }
.ig-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 260px);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 2px;
  padding: 6px 6px 1.1rem;
  margin: -6px -6px 0;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.ig-track::-webkit-scrollbar { height: 10px; }
.ig-track::-webkit-scrollbar-track { background: transparent; }
.ig-track::-webkit-scrollbar-thumb {
  background: var(--accent); border: 2px solid var(--ink); border-radius: 999px;
}

.ig-card {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--ink); border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--ink);
  overflow: hidden;
  background: var(--bg-card); color: var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.ig-card:hover, .ig-card:focus-visible {
  transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink);
}
.ig-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ig-card-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.4rem .9rem .95rem;
  background: linear-gradient(to top, rgba(26,21,48,.94) 55%, rgba(26,21,48,0));
  color: #fff; font-size: .84rem; line-height: 1.4;
  overflow: hidden;
}
.ig-card-caption > span { display: block; max-height: 2.85em; overflow: hidden; }
.ig-card-badge {
  position: absolute; top: .6rem; right: .6rem;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--ink);
  display: grid; place-items: center; color: var(--ink);
}
.ig-card-badge svg { width: 16px; height: 16px; }

/* dlaždice bez obrázku (fallback / načítání) */
.ig-card--plain {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; padding: 1.2rem; text-align: center;
}
.ig-card--plain strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; line-height: 1.25; }
.ig-card--plain span { font-size: .86rem; color: var(--text-muted); }
.ig-card--a { background: var(--accent); }
.ig-card--b { background: var(--pear); }
.ig-card--c { background: var(--bg-card); }
.ig-card--plain.ig-card--a span, .ig-card--plain.ig-card--b span { color: var(--ink); }

.ig-skeleton { background: rgba(26,21,48,.06); box-shadow: 4px 4px 0 0 rgba(26,21,48,.25); border-color: rgba(26,21,48,.3); }

.ig-nav { display: flex; gap: .5rem; }
.ig-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--ink); background: var(--bg-card); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 3px 3px 0 0 var(--ink);
  transition: all var(--t-fast);
}
.ig-nav button:hover:not(:disabled) { background: var(--pear); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 0 var(--ink); }
.ig-nav button:disabled { opacity: .35; box-shadow: none; cursor: default; }
.ig-nav svg { width: 18px; height: 18px; }
@media (max-width: 700px) { .ig-nav { display: none; } }

.ig-foot { margin-top: 1.4rem; }

/* ==========================================================================
   PARTNEŘI
   ========================================================================== */
.partners { padding: clamp(2.5rem, 5vw, 4rem) 0; border-top: 2px solid var(--ink); }
.partners-label {
  display: block; text-align: center;
  font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 1.8rem;
}
.partners-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.6rem, 5vw, 4rem);
}
.partner {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 72px; padding: .4rem;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.partner:hover, .partner:focus-visible { transform: translateY(-3px); opacity: .85; }
.partner img { height: 52px; width: auto; max-width: 240px; object-fit: contain; display: block; }
.partner img.partner-square { height: 76px; max-width: 100px; }
@media (max-width: 560px) {
  .partners-row { gap: 1.8rem; }
  .partner img { height: 42px; }
  .partner img.partner-square { height: 62px; }
}

/* Behold widget — nouzová varianta, když JSON feed není dostupný */
.ig-widget { width: 100%; }
.ig-widget behold-widget { display: block; width: 100%; }
