/* ============================================================
   Svět v pohybu — shared styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== TOKENS ===== */
:root {
  --c-primary:   #1A4E8A;   /* navy blue z loga */
  --c-accent:    #9EC010;   /* žlutozelená z loga */
  --c-accent-h:  #8AAB0C;
  --c-bg:        #F2F5F9;
  --c-surface:   #ffffff;
  --c-text:      #1A202C;
  --c-muted:     #64748B;
  --c-border:    #DDE3EC;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 14px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.13);

  --r: 8px;
  --r-lg: 12px;
  --max-w: 1240px;
  --sidebar-w: 300px;
  --gap: 24px;
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER AD (v místě vyhledávání) ===== */
.header-ad {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--c-primary);
  color: rgba(255,255,255,.8);
  font-size: 12px;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left { display: flex; gap: 14px; align-items: center; }
.topbar-right { display: flex; gap: 10px; align-items: center; }
.topbar-right a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .15s;
  line-height: 1;
}
.topbar-right a:hover { color: var(--c-accent); }
.sep { opacity: .35; }
.live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.35; } }

/* ===== HEADER ===== */
.site-header {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 24px;
}
.logo { flex-shrink: 0; display: block; }
.logo img { height: 46px; width: auto; }

/* Search icon + overlay */
.btn-search {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--c-muted);
  font-size: 16px;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}
.btn-search:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.search-overlay {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--c-surface);
  border-bottom: 2px solid var(--c-accent);
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  z-index: 99;
}
.search-overlay.open { display: block; }
.search-overlay form {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.search-overlay input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--c-text);
  outline: none;
  transition: border-color .15s;
}
.search-overlay input:focus { border-color: var(--c-primary); }
.search-overlay button[type="submit"] {
  padding: 10px 20px;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.header-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.topbar-right-social { display: flex; gap: 8px; }
.topbar-right-social a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  transition: background .15s;
}
.topbar-right-social a:hover { background: var(--c-accent); color: #fff; }
.btn-cta {
  padding: 8px 18px;
  background: var(--c-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  display: inline-block;
}
.btn-cta:hover { background: var(--c-accent-h); }

/* ===== NAVIGATION ===== */
.nav-bar {
  background: var(--c-primary);
}
.nav-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.nav-list { display: flex; list-style: none; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li:hover > a {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.nav-list > li:hover > a > .nav-chevron { transform: rotate(180deg); }
.nav-chevron { font-size: 10px; opacity: .7; transition: transform .2s; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-accent);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 6px 0;
  z-index: 200;
}
.nav-list > li:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--c-text);
  transition: background .12s, color .12s;
}
.dropdown li a:hover { background: var(--c-bg); color: var(--c-primary); padding-left: 22px; }

/* ===== BREAKING TICKER ===== */
.ticker {
  background: var(--c-accent);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  font-size: 13px;
  color: #fff;
}
.ticker-label {
  background: var(--c-primary);
  padding: 8px 16px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker-inner {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll-ticker 35s linear infinite;
  padding: 8px 0;
}
.ticker-item {
  padding: 0 32px 0 0;
}
.ticker-item::after {
  content: '·';
  margin-left: 32px;
  opacity: .5;
}
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== AD SLOTS ===== */
.ad-slot {
  background: var(--c-surface);
  border: 2px dashed #CBD5E0;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #CBD5E0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  gap: 4px;
}
.ad-slot::before {
  content: 'REKLAMA';
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #CBD5E0;
}
.ad-leaderboard   { height: 90px; width: 728px; max-width: 100%; }
.ad-billboard     { height: 90px; width: 100%; }
.ad-rect          { width: 300px; height: 250px; }
.ad-halfpage      { width: 300px; height: 600px; }

/* ===== HERO ===== */
.hero { padding: 24px 0 16px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--gap);
}
.hero-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  display: block;
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hero-main:hover img { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.08) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  color: #fff;
}
.hero-overlay .cat-tag { margin-bottom: 10px; }
.hero-main-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero-meta { font-size: 12.5px; opacity: .75; display: flex; gap: 14px; }
.hero-side { display: flex; flex-direction: column; gap: var(--gap); }
.hero-side .card { flex: 1; }

/* ===== CARD ===== */
.card {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { overflow: hidden; aspect-ratio: 16 / 9; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-title { font-size: 15px; font-weight: 700; line-height: 1.35; transition: color .15s; }
.card:hover .card-title { color: var(--c-primary); }
.card-excerpt {
  font-size: 13.5px; color: var(--c-muted); line-height: 1.5; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--c-muted); margin-top: auto; padding-top: 4px;
}
.card-meta-left { display: flex; gap: 10px; align-items: center; }

/* ===== CATEGORY TAG ===== */
.cat-tag {
  display: inline-block;
  padding: 3px 9px;
  background: var(--c-primary);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
}
.cat-tag.green  { background: var(--c-accent); color: #1a2c00; }
.cat-tag.teal   { background: #0891B2; }
.cat-tag.purple { background: #7C3AED; }

/* ===== SECTION HEADER ===== */
.section-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-hd-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--c-accent);
}
.section-hd-title::before {
  content: '';
  display: block;
  width: 4px; height: 18px;
  background: var(--c-primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-hd-link {
  font-size: 13px; font-weight: 600;
  color: var(--c-primary); display: flex; align-items: center; gap: 4px;
}
.section-hd-link:hover { color: var(--c-accent-h); text-decoration: underline; }

/* ===== ARTICLES GRID ===== */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

/* ===== ARTICLE LIST (horizontální karty jako na živém webu) ===== */
.articles-list { display: flex; flex-direction: column; gap: 16px; }
.card-h {
  display: flex;
  flex-direction: row;
  background: var(--c-surface);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card-h:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.card-h .card-img {
  width: 280px;
  flex-shrink: 0;
  aspect-ratio: unset;
  height: 160px;
}
.card-h .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card-h:hover .card-img img { transform: scale(1.05); }
.card-h .card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.card-h .card-title { font-size: 16px; font-weight: 700; line-height: 1.35; transition: color .15s; }
.card-h:hover .card-title { color: var(--c-primary); }
.card-h .card-excerpt { -webkit-line-clamp: 2; font-size: 13.5px; }

/* Card velká (featured v sekci) */
.card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-surface);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  margin-bottom: 16px;
}
.card-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-featured .card-img { aspect-ratio: unset; height: 220px; }
.card-featured .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card-featured:hover .card-img img { transform: scale(1.04); }
.card-featured .card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.card-featured .card-title { font-size: 19px; font-weight: 800; line-height: 1.3; transition: color .15s; }
.card-featured:hover .card-title { color: var(--c-primary); }
.card-featured .card-excerpt { -webkit-line-clamp: 3; font-size: 14px; }

/* ===== CONTENT LAYOUT ===== */
.content-wrap { padding: 28px 0 52px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 32px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }
.widget { background: var(--c-surface); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow-sm); }
.widget-title {
  font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  color: var(--c-primary); padding-bottom: 10px; border-bottom: 2px solid var(--c-border); margin-bottom: 14px;
}
.popular-list { list-style: none; counter-reset: pop; }
.popular-list li {
  display: flex; gap: 10px; padding: 9px 0;
  border-bottom: 1px solid var(--c-border); counter-increment: pop;
}
.popular-list li:last-child { border-bottom: none; padding-bottom: 0; }
.popular-list li::before {
  content: counter(pop);
  font-size: 20px; font-weight: 900; color: var(--c-border);
  flex-shrink: 0; line-height: 1.1; width: 22px;
}
.popular-list a { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.popular-list a:hover { color: var(--c-primary); }

/* Newsletter */
.newsletter-form { display: flex; flex-direction: column; gap: 9px; }
.newsletter-form p { font-size: 13px; color: var(--c-muted); }
.newsletter-form input[type="email"] {
  padding: 10px 13px; border: 1.5px solid var(--c-border);
  border-radius: 6px; font-family: var(--font); font-size: 14px;
  color: var(--c-text); outline: none; transition: border-color .15s;
}
.newsletter-form input:focus { border-color: var(--c-primary); }
.newsletter-note { font-size: 11px; color: var(--c-muted); }

/* ===== PARTNERS STRIP ===== */
.partners-strip {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 20px 0;
}
.partners-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.partners-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--c-muted);
  flex-shrink: 0;
}
.partners-logos-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.partners-logos-row img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .2s, transform .2s;
}
.partners-logos-row img:hover { filter: grayscale(0%); transform: scale(1.05); }

/* ===== ARTICLE DETAIL ===== */
.article-hero-band {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 32px 0 0;
}
.breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: 13px; color: var(--c-muted); margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--c-primary); }
.bc-sep { opacity: .4; }
.article-cats { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.article-headline {
  font-size: 30px; font-weight: 900; line-height: 1.2;
  letter-spacing: -.3px; max-width: 740px; margin-bottom: 12px;
}
.article-deck {
  font-size: 17px; color: var(--c-muted); line-height: 1.55;
  max-width: 680px; margin-bottom: 20px;
}
.article-byline {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-top: 1px solid var(--c-border); flex-wrap: wrap; gap: 12px;
}
.byline-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-primary); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.byline-name { font-size: 14px; font-weight: 700; }
.byline-date { font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.share-row { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1.5px solid var(--c-border);
  border-radius: 6px; font-size: 12px; font-weight: 700;
  cursor: pointer; background: #fff; color: var(--c-text);
  transition: border-color .15s, color .15s;
}
.share-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.share-btn.fb { border-color: #1877F2; color: #1877F2; }
.share-btn.li { border-color: #0A66C2; color: #0A66C2; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 40px; align-items: start; padding: 32px 0 56px;
}
.article-cover { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 28px; aspect-ratio: 16/9; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 17px; line-height: 1.78; color: var(--c-text); }
.article-body p { margin-bottom: 20px; }
.article-body h2 { font-size: 22px; font-weight: 800; color: var(--c-primary); margin: 32px 0 12px; }
.article-body h3 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.article-body ul, .article-body ol { margin: 8px 0 20px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--c-primary); }
.article-body blockquote {
  border-left: 4px solid var(--c-accent);
  background: var(--c-bg); padding: 16px 20px;
  border-radius: 0 var(--r) var(--r) 0; margin: 24px 0;
  font-style: italic; font-size: 16.5px; color: var(--c-primary); line-height: 1.65;
}
.article-body .ad-inline { margin: 28px 0; display: flex; justify-content: center; }
.article-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-top: 26px; margin-top: 26px; border-top: 1px solid var(--c-border);
}
.tag {
  padding: 5px 13px; background: var(--c-bg); border-radius: 20px;
  font-size: 13px; color: var(--c-muted); font-weight: 500; transition: background .15s, color .15s;
}
.tag:hover { background: var(--c-primary); color: #fff; }
.author-box {
  display: flex; gap: 18px; background: var(--c-bg);
  border-radius: var(--r); padding: 20px; margin-top: 36px; align-items: flex-start;
}
.author-box .avatar { width: 56px; height: 56px; font-size: 20px; flex-shrink: 0; }
.author-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.author-box p { font-size: 13.5px; color: var(--c-muted); line-height: 1.5; }
.related-section { padding: 36px 0 56px; border-top: 1px solid var(--c-border); }

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: linear-gradient(130deg, var(--c-primary) 0%, #1B6BC4 100%);
  color: #fff; padding: 72px 0 80px; text-align: center;
}
.page-hero h1 { font-size: 38px; font-weight: 900; margin-bottom: 14px; letter-spacing: -.5px; }
.page-hero p { font-size: 17px; opacity: .85; max-width: 540px; margin: 0 auto; line-height: 1.55; }

.mission-section { background: var(--c-surface); padding: 56px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mission-text h2 { font-size: 26px; font-weight: 800; color: var(--c-primary); margin-bottom: 14px; }
.mission-text p { font-size: 15.5px; color: var(--c-muted); line-height: 1.7; margin-bottom: 14px; }
.mission-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.mission-img img { width: 100%; height: 100%; object-fit: cover; }

.stats-strip {
  background: var(--c-primary); color: #fff; padding: 48px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); text-align: center; }
.stat-num { font-size: 42px; font-weight: 900; color: var(--c-accent); line-height: 1; }
.stat-label { font-size: 14px; opacity: .75; margin-top: 6px; }

.team-section { padding: 56px 0; }
.team-section > .container > h2 { font-size: 26px; font-weight: 800; color: var(--c-primary); margin-bottom: 8px; }
.team-section > .container > p { color: var(--c-muted); font-size: 15px; margin-bottom: 32px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.team-card {
  background: var(--c-surface); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-photo {
  height: 190px;
  background: linear-gradient(135deg, var(--c-primary), #1E6EC8);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-weight: 900; color: rgba(255,255,255,.15); letter-spacing: -2px;
}
.team-body { padding: 18px; }
.team-name { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.team-role { font-size: 12px; font-weight: 700; color: var(--c-primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 9px; }
.team-bio { font-size: 13px; color: var(--c-muted); line-height: 1.55; }

.partners-section { background: var(--c-surface); padding: 56px 0; border-top: 1px solid var(--c-border); }
.partners-section > .container > h2 { font-size: 24px; font-weight: 800; color: var(--c-primary); margin-bottom: 32px; text-align: center; }
.partners-logos-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center;
}
.partners-logos-grid img {
  height: 52px; width: auto; object-fit: contain;
  filter: grayscale(20%); transition: filter .2s, transform .2s;
}
.partners-logos-grid img:hover { filter: grayscale(0%); transform: scale(1.06); }

/* ===== FOOTER ===== */
.site-footer { background: var(--c-primary); color: rgba(255,255,255,.72); }
.footer-top { padding: 44px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-desc { font-size: 13.5px; line-height: 1.65; max-width: 280px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); border-radius: 7px; font-size: 15px;
  color: rgba(255,255,255,.75); transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--c-accent); color: #1a2c00; }
.footer-col h4 {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .7px; color: #fff; margin-bottom: 13px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul li a:hover { color: var(--c-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 14px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.38); flex-wrap: wrap; gap: 8px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,.38); transition: color .15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ===== HERO STRIP (3 equal cards, lives inside main-col) ===== */
.hero-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hcard {
  display: flex; flex-direction: column;
  background: var(--c-surface); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.hcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hcard-img { overflow: hidden; aspect-ratio: 16/9; }
.hcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hcard:hover .hcard-img img { transform: scale(1.05); }
.hcard-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hcard-title { font-size: 17px; font-weight: 800; line-height: 1.3; transition: color .15s; }
.hcard:hover .hcard-title { color: var(--c-primary); }
.hcard-excerpt { font-size: 14px; color: var(--c-muted); line-height: 1.5; flex: 1; }
.hcard-meta { font-size: 12px; color: var(--c-muted); display: flex; align-items: center; gap: 5px; margin-top: auto; }

/* ===== PAGE LAYOUT (main + sidebar) ===== */
.page-body { padding: 20px 0 56px; }
.page-grid {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 32px;
  align-items: start;
}
.side-col { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }

/* ===== ARTICLE GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* ===== HALF BOXES (Doprava + Logistika dark navy) ===== */
.half-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.half-box {
  background: var(--c-primary);
  border-radius: var(--r);
  overflow: hidden;
  color: #fff;
}
.hb-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 14px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px;
}
.hb-head a { font-size: 11px; opacity: .65; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 3px; }
.hb-head a:hover { opacity: 1; }
.hb-featured {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.hb-featured img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.hb-featured:hover img { transform: scale(1.05); }
.hb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.05) 65%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px 14px 12px; gap: 6px;
}
.hb-overlay h3 { font-size: 13.5px; font-weight: 700; line-height: 1.3; color: #fff; margin: 0; }
.hb-date { font-size: 11.5px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 4px; }
.hb-list { list-style: none; padding: 0 14px 10px; }
.hb-list li { border-top: 1px solid rgba(255,255,255,.12); }
.hb-list a {
  display: block; padding: 7px 0;
  font-size: 12.5px; font-weight: 600; line-height: 1.3;
  color: rgba(255,255,255,.82); transition: color .15s;
}
.hb-list a:hover { color: var(--c-accent); }

/* ===== SIDEBAR: media list (podcasty, videa) ===== */
.media-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.media-item {
  display: flex; gap: 10px; align-items: flex-start;
  transition: opacity .15s;
}
.media-item:hover { opacity: .8; }
.media-thumb {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden; position: relative;
}
.media-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-thumb-video { height: 48px; }
.media-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  background: rgba(0,0,0,.35);
}
.media-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.media-body strong { font-size: 12.5px; font-weight: 700; line-height: 1.3; color: var(--c-text); }
.media-body span { font-size: 11.5px; color: var(--c-muted); display: flex; align-items: center; gap: 4px; }

/* ===== PROMO CARD (komerční článek) ===== */
.card-promo {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--c-surface); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card-promo:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-promo-img { position: relative; overflow: hidden; min-height: 200px; }
.card-promo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card-promo:hover .card-promo-img img { transform: scale(1.04); }
.promo-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-primary); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 9px; border-radius: 4px;
}
.card-promo-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.card-promo-title { font-size: 20px; font-weight: 800; line-height: 1.3; transition: color .15s; }
.card-promo:hover .card-promo-title { color: var(--c-primary); }
.card-promo-excerpt { font-size: 14.5px; color: var(--c-muted); line-height: 1.55; }

/* ===== SIDEBAR: partner logos ===== */
.partner-stack { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.partner-stack img {
  height: 38px; width: auto; max-width: 100%;
  object-fit: contain; filter: grayscale(20%); transition: filter .2s;
}
.partner-stack img:hover { filter: grayscale(0%); }

/* ===== SIDEBAR: category list ===== */
.cat-list { list-style: none; }
.cat-list li { border-bottom: 1px solid var(--c-border); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 13.5px; font-weight: 500; transition: color .15s;
}
.cat-list a:hover { color: var(--c-primary); }
.cat-list span {
  font-size: 12px; color: var(--c-muted); background: var(--c-bg);
  border-radius: 10px; padding: 1px 7px; font-weight: 600; flex-shrink: 0;
}

/* ===== SIDEBAR: latest posts ===== */
.latest-list { list-style: none; }
.latest-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 9px 0; border-bottom: 1px solid var(--c-border);
}
.latest-list li:last-child { border-bottom: none; }
.latest-list a { font-size: 13.5px; font-weight: 600; line-height: 1.35; transition: color .15s; }
.latest-list a:hover { color: var(--c-primary); }
.latest-list span { font-size: 11.5px; color: var(--c-muted); }

/* ===== SIDEBAR: tag cloud ===== */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }

/* ===== UTILS ===== */
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --sidebar-w: 260px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { max-height: 360px; }
  .hero-side { flex-direction: row; }
  .hero-3col { grid-template-columns: repeat(2, 1fr); }
  .hero-3col .hcard:last-child { display: none; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .card-promo { grid-template-columns: 220px 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar > * { flex: 1; min-width: 260px; }
  .article-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .page-grid { grid-template-columns: 1fr; }
  .side-col { position: static; flex-direction: row; flex-wrap: wrap; }
  .side-col > * { flex: 1 1 260px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-bar { display: none; }
  .hero-side { flex-direction: column; }
  .hero-3col { grid-template-columns: 1fr; }
  .hero-3col .hcard:last-child { display: flex; }
  .half-boxes { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-promo { grid-template-columns: 1fr; }
  .card-promo-img { min-height: 200px; max-height: 220px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-headline { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 26px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .header-search { display: none; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-main-title { font-size: 18px; }
}
