 /* Zákaz tisku – při tisku se stránka skryje */
  @media print {
    body {
      display: none !important;
    }
  }
   /* Styl jedné „knižní stránky“ */
  .kram-page {
    max-width: 52rem;
    margin: 0 auto;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #3b2c20;
  }

  .kram-page h1 {
    font-size: 1.5rem;
    margin: 0 0 0.4rem;
    color: #4e3c2a;
  }

  .kram-page .kram-subtitle {
    font-size: 0.9rem;
    color: #7a6a56;
    margin: 0 0 1.1rem;
  }

  .kram-page p {
    margin: 0 0 0.9rem;
    text-align: justify;
  }

 
  .kram-figure-left {
    float: left;
    width: 20%;
    margin: 0.3rem 1.1rem 0.6rem 0;
    
  }

  .kram-figure-left img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.35rem;
    border: 1px solid #ccbba0;
    background: #f8f1e2;
    padding: 3px;
  }

  .kram-figure-left figcaption {
    font-size: 0.8rem;
    color: #7a6a56;
    text-align: center;
    margin-top: 0.3rem;
  }

  .kram-page .dropcap::first-letter {
    float: left;
    font-size: 2.6rem;
    line-height: 1;
    padding-right: 0.2rem;
    padding-top: 0.1rem;
    font-weight: 600;
    color: #a48b5b;
  }

  /* >>> PATIČKA KAPITOLY – MIMO @media <<< */
  .kram-footer-note {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #d3c7b2;
    font-size: 0.85rem;
    font-style: italic;
    text-align: left;
    color: #6a5a46;
  }
  
/* Rámovaný nadpis ve stylu kroniky */

.hasici-nadpis {
  max-width: 720px;
  margin: 2rem auto 0.5rem;
  text-align: center;
  font-family: "Georgia", serif;
}

.hasici-nadpis span {
  display: inline-block;
  padding: 0.4rem 1.8rem;
  border: 1px solid #b9a993;
  border-radius: 999px;
  background: linear-gradient(to bottom, #f6efe0, #e8ddc7);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3f3123;
}

/* Styl historické tabulky pro hasičský spolek – bez hover efektu */

.hasici-tabulka {
  width: 100%;
  max-width: 720px;
  margin: 0.8rem auto 1.5rem;
  border-collapse: collapse;
  font-family: "Georgia", serif;
  font-size: 1.05rem;
  background: #fcf8ef;
  border: 1px solid #c6b79e;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.hasici-tabulka thead th {
  background: linear-gradient(to bottom, #e9dfcc, #dcd1bb);
  padding: 0.75rem;
  border-bottom: 2px solid #b9a993;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4a3c2c;
  text-align: left;
}

.hasici-tabulka td {
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid #e0d6c4;
  color: #4b3a2a;
  vertical-align: top;
}

.hasici-tabulka tbody tr:nth-child(even) {
  background: #f6f1e6;
}

/* Okrasné iniciály u jmen */

.hasici-tabulka td.inic::first-letter {
  font-size: 1.25rem;
  font-weight: bold;
  color: #7a4936;       /* sladěno s hřbetem knihy */
  letter-spacing: 0.03em;
}

/* malé poznámky v buňkách */

.hasici-tabulka td small {
  color: #7a6d5c;
  font-size: 0.85em;
}



  @media (max-width: 700px) {
    .kram-page {
      font-size: 0.95rem;
    }
  }