/* ── V	ARIABLES ── */
:root {
  --green:        #2A5B28;
  --green-light:  #3D7A3A;
  --green-pale:   #EBF3EA;
  --gold:         #C4912A;
  --gold-light:   #F0D48A;
  --cream:        #F7F4ED;
  --cream-dark:   #EDE9DF;
  --ink:          #1A1A18;
  --muted:        #6B6B60;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(42,91,40,.10);
  --shadow-sm:    0 2px 10px rgba(42,91,40,.08);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, .heading { font-family: 'Nunito', sans-serif; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.section { padding: clamp(3rem,8vw,6rem) 0; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,237,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  padding: .75rem 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.nav__logo {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.1rem;
  color: var(--green); line-height: 1.2;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex; gap: .25rem; flex-wrap: wrap; list-style: none;
}
.nav__links a {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .85rem;
  color: var(--muted); padding: .4rem .7rem; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--green); background: var(--green-pale); }

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: clamp(3rem,8vw,5rem) 0 0;
  overflow: hidden;
  position: relative;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero__eyebrow {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  color: var(--gold); font-size: .95rem; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.hero__eyebrow::before { content:''; display:block; width:2rem; height:2px; background:var(--gold); }
.hero__title { color: var(--green); margin-bottom: 1.25rem; }
.hero__claim {
  font-size: 1.15rem; color: var(--muted); margin-bottom: 2rem;
  border-left: 3px solid var(--gold); padding-left: 1rem;
  font-style: italic;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem;
  padding: .8rem 1.6rem; border-radius: var(--radius); cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary { background: var(--green); color: var(--white); }
.btn--outline { border-color: var(--green); color: var(--green); }
.hero__visual {
  position: relative; display: flex; justify-content: center;
}
.hero__badge-wrap {
  width: clamp(220px,35vw,340px); aspect-ratio: 1;
  animation: floatBadge 5s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero__banner {
  position: relative; margin-top: 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.hero__banner img { width: 100%; display: block; }

/* ── DIVIDER ── */
.divider { width: 3rem; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0 1.5rem; }
.divider--center { margin: 1rem auto 1.5rem; }

/* ── SECTION HEADER ── */
.sec-header { text-align: center; margin-bottom: clamp(2rem,5vw,3.5rem); }
.sec-header .eyebrow {
  font-family: 'Nunito', sans-serif; font-size: .85rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem;
}
.sec-header h2 { color: var(--green); }

/* ── KANDIDÁTI ── */
.kandidati { background: var(--white); }
.kandidati-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.kandidat-card {
  background: var(--cream); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.kandidat-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: var(--green-pale);
}
.kandidat-card__photo {
  aspect-ratio: 3/4; background: var(--green-pale);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.kandidat-card__photo img { width:100%; height:100%; object-fit:cover; }
.kandidat-card__photo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--green); opacity: .4;
}
.kandidat-card__photo-placeholder svg { width: 3rem; height: 3rem; }
.kandidat-card__photo-placeholder span {
  font-family: 'Nunito', sans-serif; font-size: .75rem; font-weight: 700;
}
.kandidat-card__num {
  position: absolute; top: .6rem; left: .6rem;
  background: var(--green); color: var(--white);
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: .85rem;
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.kandidat-card__body { padding: .9rem 1rem 1rem; }
.kandidat-card__name {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.35rem;
  color: var(--green); margin-bottom: .15rem;
}
.kandidat-card__meta {
  font-size: .78rem; color: var(--muted); margin-bottom: .5rem;
  font-family: 'Nunito', sans-serif;
}
.kandidat-card__positioning {
  font-size: .82rem; color: var(--ink); line-height: 1.5;
  font-style: italic; border-left: 2px solid var(--gold); padding-left: .6rem;
}
.kandidat-card__more {
  display: inline-flex; align-items: center; gap: .3rem; margin-top: .75rem;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .8rem;
  color: var(--green); text-transform: uppercase; letter-spacing: .05em;
}
.kandidat-card__more svg { width: .9rem; height: .9rem; }

/* Candidate detail modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26,26,24,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  transform: translateY(20px); transition: transform .25s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal__header{
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem;
  padding: 1.5rem; border-bottom: 1px solid var(--cream-dark); 
  align-items: center;
}

/* Oprava vybledlé fotky v modálním okně */
.modal__photo {
  width: 120px; height: 150px; border-radius: var(--radius);
  background: transparent !important;
  padding: 0 !important;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  opacity: 1 !important;
}
.modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 1 !important;
  filter: none !important;
}

.modal__name {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.6rem;
  color: var(--green); line-height: 1.1; margin-bottom: .35rem;
}
.modal__meta {
  font-family: 'Nunito', sans-serif; font-size: .9rem; color: var(--muted); margin-bottom: .6rem;
}
.modal__tag {
  display: inline-block; background: var(--green-pale); color: var(--green);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .8rem;
  padding: .3rem .7rem; border-radius: 20px; margin-bottom: .75rem;
}
.modal__quote {
  font-style: italic; color: var(--muted); font-size: .95rem;
  border-left: 3px solid var(--gold); padding-left: .75rem; display: block;
}
.modal__body { padding: 1.5rem; }
.modal__video {
  aspect-ratio: 16/9; background: var(--ink); border-radius: var(--radius);
  margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: 'Nunito', sans-serif; font-weight: 700;
  position: relative; overflow: hidden;
}
.modal__video-placeholder {
  text-align: center; opacity: .6;
}
.modal__video-placeholder svg { width: 3rem; margin: 0 auto .5rem; display: block; }
.modal__qa { margin-bottom: 1rem; }
.modal__qa h4 {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .9rem;
  color: var(--gold); margin-bottom: .35rem; text-transform: none; letter-spacing: 0;
}
.modal__qa p { font-size: .95rem; color: var(--muted); }
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--cream); border: none; width: 2.2rem; height: 2.2rem;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--ink); transition: background .15s;
}
.modal__close:hover { background: var(--cream-dark); }
.modal { position: relative; }

/* ── PROGRAM ── */
.program { background: var(--cream); }
.program-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.program-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green);
  transition: transform .2s;
}
.program-card:hover { transform: translateY(-3px); }
.program-card__icon {
  width: 3rem; height: 3rem; background: var(--green-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.4rem;
}
.program-card h3 { color: var(--green); margin-bottom: .6rem; font-size: 1.1rem; }
.program-card p { font-size: .9rem; color: var(--muted); }

.program-lead {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}
.program-lead--intro { margin-bottom: 2rem; }
.program-lead--outro { margin-top: 2rem; }

/* ── 100 DNÍ ── */
.hundred { background: var(--green); color: var(--white); }
.hundred .sec-header h2 { color: var(--white); }
.hundred .sec-header .eyebrow { color: var(--gold-light); }
.hundred__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.hundred__item {
  background: rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}
.hundred__item:hover { background: rgba(255,255,255,.14); }
.hundred__item__num {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.5rem;
  color: var(--gold-light); line-height: 1; margin-bottom: .5rem;
}
.hundred__item h3 { color: var(--white); margin-bottom: .4rem; font-size: 1rem; }
.hundred__item p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ── ROZHOVORY ── */
.rozhovory { background: var(--cream); }
.rozhovor-list { display: flex; flex-direction: column; gap: 1rem; }
.rozhovor-item {
  background: var(--white); border-radius: var(--radius-lg); scroll-margin-top: 60px;
  padding: 1.25rem 2rem; box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.rozhovor-item:hover { background: var(--green-pale); }
.rozhovor-item__header {
  display: flex; gap: 1.25rem; align-items: center; width: 100%;
}
.rozhovor-item__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.1rem;
  transition: background .2s;
}
.rozhovor-item:hover .rozhovor-item__avatar { background: var(--white); }
.rozhovor-item__name {
  font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--green); font-size: 1.5rem; flex: 1;
}
.rozhovor-item__arrow {
  margin-left: auto; font-size: 1.4rem; color: var(--green); transition: transform .2s;
  font-family: 'Nunito', sans-serif; font-weight: 700;
}
.rozhovor-item.open .rozhovor-item__arrow { transform: rotate(90deg); }

.rozhovor-content {
  display: none;
  padding: 1.5rem 1rem 0.5rem 1rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: 1.25rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--ink);
}
.rozhovor-item.open .rozhovor-content { display: block; }

.rozhovor-content p { 
  margin-bottom: 1.25rem; 
} 
.rozhovor-content p:nth-of-type(even) { 
  margin-bottom: 1.2rem; 
}
.rozhovor-content p:last-child { 
  margin-bottom: 0;
}

.rozhovor-content strong {
  display: block;
  font-weight: 800;
  font-style: italic;
  color: var(--green-light);
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
  margin-left: -0.75rem;
  margin-bottom: 0.25rem;
  margin-top: 0.15rem;
}

.rozhovor-content a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
  font-weight: 700;
  transition: color .15s, text-decoration-color .15s;
}
.rozhovor-content a:hover {
  color: var(--gold);
  text-decoration-color: var(--green);
}

.rozhovor-item__thumb {
  width: 60px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--green-pale);
}
.rozhovor-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── KONTAKT ── */
.kontakt { background: var(--green); }
.kontakt__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.kontakt h2 { color: var(--white); margin-bottom: .75rem; }
.kontakt p { color: rgba(255,255,255,.75); }
.kontakt__links { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.kontakt__link {
  display: flex; align-items: center; gap: .75rem;
  color: var(--white); font-family: 'Nunito', sans-serif; font-weight: 700;
  transition: opacity .15s;
}
.kontakt__link:hover { opacity: .8; }
.kontakt__link svg { width: 1.25rem; flex-shrink: 0; }
.kontakt__badge { display: flex; justify-content: center; align-items: center; }
.kontakt__badge img {
  width: clamp(140px,25vw,220px);
  filter: brightness(0) invert(1) opacity(.85);
}

/* ── FOOTER ── */
.footer {
  background: var(--ink); color: rgba(255,255,255,.45);
  text-align: center; padding: 1.5rem;
  font-family: 'Nunito', sans-serif; font-size: .8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__badge-wrap { width: clamp(160px,50vw,220px); }
  .kandidati-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }
  .kontakt__inner { grid-template-columns: 1fr; }
  .kontakt__badge { display: none; }
  .nav__links { gap: .1rem; }
  .nav__links a { font-size: .78rem; padding: .35rem .5rem; }
  .reakce-item { grid-template-columns: 1fr; gap: .5rem; }
}
@media (max-width: 480px) {
  .kandidati-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLL INDICATOR ── */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--green); color: var(--white); border: none; width: 2.8rem; height: 2.8rem;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: opacity .3s, transform .2s;
  opacity: 0; pointer-events: none;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); }

/* ── GOLD LINE DECORATION ── */
.gold-line {
  width: 100%;
  height: 3px;
  margin-top: 2rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Stylování kontejneru (černý rám) */
.modal__video {
  aspect-ratio: 16/9;
  background-color: var(--ink); /* Tmavé pozadí na okrajích */
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  display: flex;          /* ◄ AKTIVACE FLEXBOXU PRO CENTROVÁNÍ */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Stylování samotného videa uvnitř rámu */
.modal__video video {
  height: 100%;           /* ◄ Video se roztáhne přesně na celou výšku rámu */
  width: auto;            /* ◄ Šířka se přizpůsobí poměru stran videa */
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Prázdná karta – doplnění posledního řádku gridu */
.kandidat-card--empty {
  user-select: none;
  display: flex;
  flex-direction: column;
}
.kandidat-card--empty .kandidat-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
}
.kandidat-card--empty:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.kandidat-card--empty .kandidat-card__photo {
  background: var(--green-pale);
}

/* ===========================
   MOBIL
=========================== */
@media (max-width: 768px) {

  /* 1. Menu */
  .nav__inner {
    justify-content: center;
  }

  .nav__links {
    justify-content: center;
    gap: 0;
  }

  .nav__links a {
    font-size: 0.95rem;
    padding: .35rem .35rem;
  }

  /* 2. Hero */
  .hero__claim {
    font-size: 1.25rem;
    text-wrap: balance;
  }

  /* 3. Kandidáti */
  .kandidati-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .kandidat-card__name {
    font-size: 1.5rem;
  }

  .kandidat-card__meta {
    font-size: .9rem;
  }

  .kandidat-card__photo {
      aspect-ratio: 4 / 4.8;
  }

  .kandidat-card__positioning {
    font-size: .95rem;
  }

  /* 4. Nadpis rozhovorů */
  .rozhovory h2 {
    max-width: 220px;
    margin: 0 auto;
  }

  /* 5. Rozhovory */
  .rozhovor-item {
    padding: 1rem;
  }

  .rozhovor-item__header {
    gap: .7rem;
  }

  .rozhovor-item__name {
    font-size: 1.15rem;
    line-height: 1.15;
  }

  /* === OPRAVA: kotvy se zobrazí pod sticky menu === */
  #kandidati, #program, #sto-dni, #rozhovory, #kontakt {
    scroll-margin-top: 80px;
  }
  .rozhovor-item {
    scroll-margin-top: 80px;
  }

  /* === MODAL – nové pořadí prvků === */
  .modal {
    display: flex;
    flex-direction: column;
  }

  /* 3. Jméno až pod video – zmenšené */
  .modal__header {
    order: 2;
    display: block;
    padding: 1.25rem;
    border-bottom: none;
    border-top: 1px solid var(--cream-dark);
  }
  .modal__photo {
    display: none;                 /* malá fotka v hlavičce pryč */
  }
  .modal__name {
    font-size: 1.25rem;            /* zmenšené jméno */
    margin-bottom: .2rem;
  }

  /* 1. Video nahoru */
  .modal__body {
    order: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem 0;
  }
  .modal__video {
    order: 1;
    aspect-ratio: unset;
    background: transparent;
    margin-bottom: 0.25rem;   /* zúžená mezera pod videem */
  }
  .modal__video video {
    width: 80%;              /* video přes celou šířku, okraje pryč */
    height: 70%;
    border-radius: var(--radius);
    display: block;
  }

  /* Odkaz na rozhovor – těsně za videem */
  .kandidat-card__more {
    order: 2;
    margin: 0 0 0.5rem;       /* zúžená mezera pod odkazem */
  }

  /* Křížek lépe klikatelný – nad vším ostatním */
  .modal__close {
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.3rem;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
  }

  /* Text (QA) – až jako poslední */
  .modal__body > div:not(.modal__video):not(.kandidat-card__more) {
    order: 3;
  }

}

/* ── PROGRAM CARDS – clickable ── */
.program-card {
  cursor: pointer;
  position: relative;
}
.program-card::after {
  content: 'Více ▸';
  display: block;
  margin-top: 0.75rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .05em;
  opacity: 0.85;
}
.program-card:hover::after {
  opacity: 1;
}

/* ── PROGRAM MODAL ── */
.program-modal {
  max-width: 680px;
}
.program-modal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.75rem 0.85rem;
  border-bottom: 1px solid var(--cream-dark);
}
.program-modal__icon {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.program-modal__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--green);
  margin: 0;
  line-height: 1.2;
}
.program-modal__body {
  padding: 1.4rem 1.75rem 2rem;
}
.program-modal__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.program-modal__body li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}
.program-modal__body li:last-child {
  margin-bottom: 0;
}
.program-modal__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 768px) {
  .program-modal {
    max-width: 100%;
  }
  .program-modal__header {
    padding: 1.25rem 1.25rem 0.5rem;
  }
  .program-modal__title {
    font-size: 1.25rem;
  }
  .program-modal__body {
    padding: 1.1rem 1.25rem 1.5rem;
  }
  .program-modal__body li {
    font-size: 1.08rem;
  }
}


/* ── 100 DNÍ – clickable ── */
.hundred__item {
  cursor: pointer;
  position: relative;
}

.hundred__item:hover::after {
  opacity: 1;
}

/* ── 100 DNÍ – seznam bodů přímo v kartě ── */
.hundred__list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.hundred__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.hundred__list li:last-child {
  margin-bottom: 0;
}
.hundred__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold-light);
}

.hundred__item::after {
  display: none;
}
.hundred__item {
  cursor: default;
}

.rozhovor-content p.q {
  margin-bottom: 0.5rem;
  margin-top: 0.8rem;
}

.rozhovor-item {
  cursor: default;
}

.rozhovor-item__header {
  cursor: pointer;
}

.rozhovor-content {
  cursor: auto;
}

/* Úprava kontaktního bloku */
.kontakt__links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

/* Hlavní e-mailový odkaz */
.kontakt__link--primary {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* Řada tlačítka sociálních sítí */
.kontakt__socials {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  transition: background .2s, transform .15s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-2px);
}