/* Kandidátka — dokumentová stránka */

.doc-body { background: var(--paper); }

.doc {
  padding: clamp(50px, 8vw, 90px) 0 clamp(80px, 10vw, 120px);
}
.doc__inner { max-width: 1100px; }
.doc__back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
}
.doc__back:hover { color: var(--blue-dark); }

.doc__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--blue-deep);
  margin: 8px 0 20px;
}
.doc__title em { font-style: italic; color: var(--yellow); }

.doc__lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 44px;
}

.doc__table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 14.5px;
}
.doc__table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  background: var(--blue);
  padding: 14px 16px;
}
.doc__table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink);
}
.doc__table tbody tr:last-child td { border-bottom: none; }
.doc__table tbody tr:nth-child(odd) { background: var(--sand); }
.col-num {
  width: 44px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--yellow);
  text-align: center;
}
.col-name { width: 260px; font-weight: 600; color: var(--blue-dark); }
.col-job { color: var(--ink-soft); }

.doc__footnote {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Program document */
.doc__program {
  display: grid;
  gap: 28px;
}
.doc__section {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.doc__section h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--blue-dark);
  margin: 0 0 16px;
}
.doc__section h2 span {
  font-style: italic;
  color: var(--yellow);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.doc__section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.doc__section li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.doc__section li:before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

@media (max-width: 900px) {
  .doc__table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media print {
  .nav, .footer, .doc__back { display: none; }
  .doc { padding: 0; }
}
