/* Jew Where - jw-single.css
   Fonte única de verdade para estilos da página interna (single jewish_site).
   Tudo fica escopado em #jw-single-app para não afetar o resto do site.
*/

/* ==================================================================
   0) Base + fallbacks de tokens (para não depender 100% do Tailwind config)
================================================================== */
#jw-single-app{
  background-color:#fff;
  color:#27272A;
  text-align:left;
  margin-top:0;
  padding-top:0;
}

/* Keep internal-page hero attached to the fixed header without extra top band. */
html body.single-jewish_site,
html body.single-jewish_site.admin-bar{
  padding-top: var(--jw-header-height);
}

/* Maior especificidade para zerar margens no primeiro elemento SEM usar !important */
html body #jw-single-app > section:first-child,
.single-jewish_site #jw-single-app > section:first-child{
  margin-top: 0;
  padding-top: 0;
}

/* Tokens JW usados no HTML (fallbacks seguros) */
#jw-single-app .bg-jw-blue{ background-color: var(--jw-blue, #1A365D); }
#jw-single-app .text-jw-blue{ color: var(--jw-blue, #1A365D); }
#jw-single-app .border-jw-blue{ border-color: var(--jw-blue, #1A365D); }

#jw-single-app .text-jw-gold{ color: var(--jw-gold, #B7791F); }
#jw-single-app .border-jw-gold{ border-color: var(--jw-gold, #B7791F); }

#jw-single-app .border-jw-border{ border-color: var(--jw-border, #E5E5E5); }
#jw-single-app .text-jw-gray{ color: var(--jw-gray, #52525B); }
#jw-single-app .text-jw-dark{ color: var(--jw-dark, #171717); }
#jw-single-app .bg-jw-light{ background-color: var(--jw-light, #FAFAFA); }

/* Status (usados nos badges e no botão) */
#jw-single-app .bg-status-open{ background-color: var(--jw-status-existing, #059669); }
#jw-single-app .bg-status-lost{ background-color: var(--jw-status-lost, #DC2626); }
#jw-single-app .bg-status-repurposed{ background-color: var(--jw-status-repurposed, #D97706); }

/* ==================================================================
   1) Tipografia "prose" (sem depender do plugin typography do Tailwind)
================================================================== */
#jw-single-app .prose{
  font-family: var(--jw-font-sans, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  color: var(--jw-dark, #171717);
  font-size: 16px;
  line-height: 1.85;
}

#jw-single-app .prose.prose-lg{
  font-family: var(--jw-font-serif, Georgia, "Times New Roman", serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.88;
  letter-spacing: 0.004em;
}

@media (max-width: 768px){
  #jw-single-app .prose.prose-lg{
    font-size: 17px;
    line-height: 1.82;
    letter-spacing: 0.003em;
  }
}

#jw-single-app .prose p{ margin: 0 0 1.22em; }

#jw-single-app .prose a{
  color: var(--jw-blue, #1A365D);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#jw-single-app .prose a:hover{ color: var(--jw-gold, #B7791F); }

#jw-single-app .prose h1,
#jw-single-app .prose h2,
#jw-single-app .prose h3,
#jw-single-app .prose h4{
  font-family: var(--jw-font-serif, Georgia, "Times New Roman", serif);
  color: var(--jw-dark, #171717);
  font-weight: 700;
  line-height: 1.2;
  margin: 1.65em 0 0.5em;
}

#jw-single-app .prose h1:first-child,
#jw-single-app .prose h2:first-child,
#jw-single-app .prose h3:first-child,
#jw-single-app .prose h4:first-child{
  margin-top: 0;
}

#jw-single-app .prose h2,
#jw-single-app .prose h3,
#jw-single-app .prose h4{
  position: relative;
  padding-bottom: 0.45em;
  margin-bottom: 0.75em;
}

#jw-single-app .prose h2::after,
#jw-single-app .prose h3::after,
#jw-single-app .prose h4::after{
  content: '';
  display: block;
  width: 3.25rem;
  height: 2px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--jw-blue, #1A365D) 0%, var(--jw-gold, #B7791F) 100%);
}

#jw-single-app .prose h2{ font-size: 1.55em; }
#jw-single-app .prose h3{ font-size: 1.25em; }
#jw-single-app .prose h4{ font-size: 1.08em; }

#jw-single-app .prose h2 + p,
#jw-single-app .prose h3 + p,
#jw-single-app .prose h4 + p{
  margin-top: 0.15em;
}

#jw-single-app .prose p:empty{
  display: none;
  margin: 0;
}

#jw-single-app .prose ul,
#jw-single-app .prose ol{ margin: 0 0 1.15em; padding-left: 1.4em; }

#jw-single-app .prose ul{
  list-style: disc outside;
}

#jw-single-app .prose ol{
  list-style: decimal outside;
}

#jw-single-app .prose ul ul{ list-style-type: circle; }
#jw-single-app .prose ul ul ul{ list-style-type: square; }

#jw-single-app .prose li{ margin: 0.35em 0; }
#jw-single-app .prose li::marker{ color: var(--jw-dark, #171717); }

#jw-single-app .prose blockquote{
  margin: 1.2em 0;
  padding-left: 1em;
  border-left: 3px solid var(--jw-border, #E5E5E5);
  color: var(--jw-gray, #52525B);
}

#jw-single-app .prose hr{
  border: 0;
  border-top: 1px solid var(--jw-border, #E5E5E5);
  margin: 2em 0;
}

/* ==================================================================
   2) Componentes do single (vinham do CSS inline antigo)
================================================================== */
#jw-single-app .hero-image{
  display: block;
  margin-top: 0;
  height: 60vh;
  min-height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

#jw-single-app .editorial-timeline{
  border-left: 1px solid #E5E5E5;
  padding-left: 2.5rem;
  margin-left: 0.5rem;
}

#jw-single-app .timeline-node{
  position: relative;
  margin-bottom: 1.75rem;
}

#jw-single-app .timeline-node p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.68;
  letter-spacing: 0.002em;
}

#jw-single-app .timeline-node::before{
  content:'';
  position:absolute;
  left:-2.8rem;
  top:0.4rem;
  width:10px;
  height:10px;
  border-radius:50%;
  background-color: var(--jw-blue, #1A365D);
  box-shadow: 0 0 0 4px #fff;
}

#jw-single-app .video-wrapper{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  background: #000;
}

#jw-single-app .video-wrapper iframe,
#jw-single-app .video-wrapper object,
#jw-single-app .video-wrapper embed,
#jw-single-app .video-wrapper video{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
}

/* Bibliografia Acadêmica (Hanging Indent) */
#jw-single-app .academic-bib li{
  padding-left: 2.5rem;
  text-indent: -2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

#jw-single-app .academic-bib a{ transition: color 0.2s; }
#jw-single-app .academic-bib a:hover{ color: var(--jw-blue, #1A365D); }
#jw-single-app .academic-bib .jw-bib-link{
  display: inline;
  text-decoration: none;
}

#jw-single-app .academic-bib .jw-bib-link-tail{
  display: inline-block;
  white-space: nowrap;
}

#jw-single-app .academic-bib .jw-bib-link-icon{
  display: inline-block;
  margin-left: 0.28rem;
  font-size: 0.9em;
  line-height: 1;
  vertical-align: middle;
  opacity: 0.72;
}

#jw-single-app .academic-bib .jw-bib-item{
  position: static;
  padding-right: 0;
}

#jw-single-app .academic-bib .jw-bib-item--linked .jw-bib-link{
  position: static;
  right: auto;
  top: auto;
  width: auto;
  height: auto;
  align-items: baseline;
  justify-content: flex-start;
  color: inherit;
  opacity: 1;
  transform: none;
}

#jw-single-app .academic-bib .jw-bib-item--linked:hover .jw-bib-link{
  color: var(--jw-blue, #1A365D);
}

/* Util: esconder scrollbar */
#jw-single-app .hide-scrollbar::-webkit-scrollbar{ display:none; }
#jw-single-app .hide-scrollbar{ -ms-overflow-style:none; scrollbar-width:none; }
/* Lightbox caption: keep long descriptions readable without breaking modal */
#jw-single-app #jw-lightbox .jw-lightbox-image{
  max-height:min(75vh, 900px);
}

#jw-single-app #jw-lightbox.jw-lightbox-has-caption .jw-lightbox-image{
  max-height:min(58vh, 680px);
}

#jw-single-app #lightbox-caption{
  width:min(100%, 68rem);
  margin-top:1rem;
  padding:0 0.5rem;
}

#jw-single-app #lightbox-caption .jw-lightbox-caption-text{
  max-height:min(24vh, 230px);
  overflow-y:auto;
  padding-right:0.35rem;
  color:rgba(255,255,255,0.95);
  text-align:center;
  font-family:var(--jw-font-serif, Georgia, "Times New Roman", serif);
  font-size:clamp(1rem, 2vw, 1.25rem);
  line-height:1.6;
  overflow-wrap:anywhere;
  word-break:break-word;
}

#jw-single-app #lightbox-caption .jw-lightbox-caption-note{
  margin-top:0.75rem;
  color:rgba(255,255,255,0.75);
  text-align:center;
  font-family:var(--jw-font-serif, Georgia, "Times New Roman", serif);
  font-style:italic;
  font-size:clamp(0.9rem, 1.6vw, 1rem);
  line-height:1.45;
  overflow-wrap:anywhere;
}

#jw-single-app #lightbox-caption .jw-lightbox-caption-text::-webkit-scrollbar{
  width:6px;
}

#jw-single-app #lightbox-caption .jw-lightbox-caption-text::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,0.45);
  border-radius:999px;
}

@media (max-width: 767px){
  #jw-single-app .timeline-node p{
    font-size: 14px;
    line-height: 1.62;
  }

  #jw-single-app #jw-lightbox.jw-lightbox-has-caption .jw-lightbox-image{
    max-height:min(52vh, 520px);
  }

  #jw-single-app #lightbox-caption .jw-lightbox-caption-text{
    max-height:min(28vh, 220px);
  }
}

/* ==================================================================
   3) Drop-cap robusto para conteúdo do WordPress (normalmente vem em <p>)
================================================================== */
#jw-single-app .drop-cap > p:first-of-type::first-letter,
#jw-single-app .drop-cap > .wp-block-paragraph:first-of-type::first-letter,
#jw-single-app .drop-cap::first-letter{
  font-family: 'Playfair Display', serif;
  float: left;
  font-size: 4.5rem;
  line-height: 0.8;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  color: var(--jw-blue, #1A365D);
  font-weight: 700;
}

/* ==================================================================
   4) Botão Add to Route
================================================================== */
#jw-single-app #btn-add-route i,
#jw-single-app #btn-add-route svg,
#jw-single-app .jw-back-map-button i,
#jw-single-app .jw-back-map-button svg{
  color: currentColor;
}

#jw-single-app .jw-single-meta-chips--right{
  display: none;
}

#jw-single-app .jw-single-meta-link{
  border-bottom: 1px solid transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

#jw-single-app .jw-single-meta-link:hover,
#jw-single-app .jw-single-meta-link:focus-visible{
  border-color: currentColor;
  color: var(--jw-blue, #1A365D);
  outline: none;
}

#jw-single-app .jw-single-heading-grid{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#jw-single-app .jw-single-text-actions{
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

#jw-single-app .jw-pin-context-map{
  display: none;
  text-decoration: none;
  color: inherit;
}

#jw-single-app .jw-pin-context-map__canvas{
  width: 100%;
  height: 0;
  pointer-events: none;
}

#jw-single-app .jw-single-actions{
  width: fit-content;
  max-width: 100%;
}

#jw-single-app .jw-single-primary-actions{
  display:flex;
  align-items:stretch;
  gap:0.75rem;
  width:auto;
}

#jw-single-app .jw-single-primary-actions > *{
  flex:0 0 auto;
  min-width: 0;
}

#jw-single-app .jw-single-secondary-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
  width:100%;
}

#jw-single-app .jw-secondary-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.35rem;
  line-height:1;
}

@media (max-width: 767px){
  #jw-single-app .jw-single-primary-actions{
    flex-direction:column;
  }
}

@media (min-width: 768px){
  #jw-single-app .jw-single-actions{
    align-self:flex-end;
  }
}

@media (min-width: 1024px){
  #jw-single-app .jw-single-breadcrumb-row{
    width: 100%;
    margin-bottom: 1.35rem;
  }

  #jw-single-app .jw-single-heading-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, min(540px, 42vw));
    align-items: start;
    gap: 2rem;
  }

  #jw-single-app .jw-single-heading-left{
    max-width: none;
  }

  #jw-single-app .jw-single-meta-chips--left{
    display: none;
  }

  #jw-single-app .jw-single-meta-chips--right{
    display: flex;
    margin: 0;
  }

  #jw-single-app .jw-single-text-actions{
    margin-top: 1.5rem;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.25rem;
  }

  #jw-single-app .jw-single-actions{
    width: 100%;
    align-self: flex-start;
  }

  #jw-single-app .jw-pin-context-map{
    display: block;
    width: 100%;
    border: 1px solid var(--jw-border, #E5E5E5);
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  #jw-single-app .jw-pin-context-map:hover{
    border-color: var(--jw-blue, #1A365D);
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.14);
  }

  #jw-single-app .jw-pin-context-map__canvas{
    height: 248px;
  }

  #jw-single-app .jw-pin-context-map__canvas .leaflet-control-container{
    display: none;
  }

  #jw-single-app .jw-back-map-mobile{
    display: none;
  }

  #jw-single-app .jw-single-text-actions .jw-single-primary-actions{
    width: auto;
    flex: 0 0 auto;
  }

  #jw-single-app .jw-single-text-actions .jw-single-secondary-actions{
    width: auto;
    justify-content: flex-start;
    gap: 1.1rem;
    flex: 0 0 auto;
  }
}

@media (max-width: 1023px){
  #jw-single-app .jw-single-text-actions{
    margin-top: 1.1rem;
  }

  #jw-single-app .jw-single-actions{
    display: none;
  }

  #jw-single-app .jw-pin-context-map{
    display: none;
  }
}

#jw-single-app .jw-site-details__section + .jw-site-details__section{
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(229,229,229,0.75);
}

#jw-single-app .jw-site-details__eyebrow{
  margin-bottom: 0.85rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jw-gray, #52525B);
}

#jw-single-app .jw-site-detail-stack{
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

#jw-single-app .jw-site-detail-item{
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

#jw-single-app .jw-site-detail-icon{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--jw-border, #E5E5E5);
  color: var(--jw-blue, #1A365D);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

#jw-single-app .jw-site-detail-item--location .jw-site-detail-icon{
  color: var(--jw-gold, #B7791F);
}

#jw-single-app .jw-site-detail-copy{
  min-width: 0;
  flex: 1;
}
#jw-single-app .jw-site-detail-hours{
  gap: 0;
}

#jw-single-app .jw-site-detail-item--hours{
  align-items: flex-start;
  gap: 0.72rem;
  padding: 0;
  border-bottom: 0;
}

#jw-single-app .jw-site-detail-item--hours:last-child{
  padding-bottom: 0;
}

#jw-single-app .jw-site-detail-item--hours .jw-site-detail-icon{
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-top: 0.08rem;
}

#jw-single-app .jw-site-detail-item--hours .jw-site-detail-icon i{
  font-size: 16px;
  line-height: 1;
}

#jw-single-app .jw-site-detail-item--hours .jw-site-detail-copy{
  display: block;
}

#jw-single-app .jw-site-detail-hours__copy{
  display: grid;
  gap: 0.1rem;
}

#jw-single-app .jw-site-detail-hours__line{
  font-size: 13px;
  line-height: 1.44;
  color: var(--jw-dark, #171717);
  font-weight: 400;
  white-space: normal;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

#jw-single-app .jw-site-detail-hours__line--label{
  font-weight: 600;
}

#jw-single-app .jw-site-detail-hours__line--muted{
  font-size: 12px;
  line-height: 1.38;
  color: #5b6674;
  font-weight: 400;
}

#jw-single-app .jw-site-detail-hours__line--text-only{
  font-style: italic;
}

#jw-single-app .jw-site-detail-hours__lead{
  font-weight: 600;
}

#jw-single-app .jw-site-detail-hours__tail{
  font-weight: 400;
}

#jw-single-app .jw-site-detail-label{
  display: block;
  margin-bottom: 0.15rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jw-gray, #52525B);
}

#jw-single-app .jw-site-detail-value{
  font-size: 15px;
  line-height: 1.65;
  color: var(--jw-gray, #52525B);
  word-break: break-word;
}

#jw-single-app .jw-site-detail-value--strong{
  color: var(--jw-dark, #171717);
  font-weight: 500;
}

#jw-single-app .jw-site-detail-value a{
  color: var(--jw-blue, #1A365D);
  font-size: 13px;
  text-decoration: none;
  word-break: break-word;
}

#jw-single-app .jw-site-detail-value a:hover{
  color: var(--jw-gold, #B7791F);
}

@media (max-width: 767px){
  #jw-single-app .jw-site-detail-value{
    font-size: 14px;
  }
}

#jw-print-sheet{
  display:none;
}

@page{
  size:A4;
  margin:16mm 14mm 18mm;
}

@media print{

  html,
  body{
    background:#fff;
    color:#111827;
    -webkit-print-color-adjust:exact;
    print-color-adjust:exact;
  }

  #wpadminbar,
  body > header,
  header.site-header,
  .site-header,
  #masthead,
  body > footer,
  footer.site-footer,
  .site-footer,
  #colophon,
  #jw-lightbox{
    display:none;
  }

  #jw-single-app{
    background:#fff;
    padding:0;
    margin:0;
  }

  #jw-single-app > section:not(#jw-print-sheet),
  #jw-single-app > main{
    display:none;
  }

  #jw-print-sheet{
    display:block;
    max-width:none;
    width:100%;
    color:#111827;
  }

  #jw-print-sheet .jw-print-hero{
    margin:0 0 6mm;
    page-break-inside:avoid;
  }

  #jw-print-sheet .jw-print-hero img{
    display:block;
    width:100%;
    height:auto;
    max-height:46mm;
    object-fit:cover;
    border:1px solid #d4d4d8;
  }

  #jw-print-sheet .jw-print-head{
    margin:0 0 6mm;
    padding-bottom:5mm;
    border-bottom:1px solid #d4d4d8;
  }

  #jw-print-sheet .jw-print-kicker{
    font-size:8pt;
    font-weight:700;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:#8b5e0a;
    margin:0 0 2.5mm;
  }

  #jw-print-sheet .jw-print-title{
    font-family: Georgia, "Times New Roman", serif;
    font-size:24pt;
    line-height:1.04;
    font-weight:700;
    color:#111827;
    margin:0 0 3mm;
  }

  #jw-print-sheet .jw-print-summary{
    margin:0;
    padding-left:4mm;
    border-left:2px solid #b7791f;
    font-family: Georgia, "Times New Roman", serif;
    font-style:italic;
    font-size:11.5pt;
    line-height:1.5;
    color:#374151;
  }

  #jw-print-sheet .jw-print-meta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4mm 8mm;
    margin:0 0 7mm;
    padding:5mm 0 0;
    border-top:1px solid #d4d4d8;
    border-bottom:none;
    page-break-inside:auto;
  }

  #jw-print-sheet .jw-print-meta-row + .jw-print-meta-row{
    margin-top:0;
  }

  #jw-print-sheet .jw-print-meta-label{
    display:block;
    margin-bottom:1.2mm;
    font-size:8pt;
    font-weight:700;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:#6b7280;
  }

  #jw-print-sheet .jw-print-meta-value{
    font-size:10.5pt;
    line-height:1.55;
    color:#111827;
  }

  #jw-print-sheet .jw-print-body{
    font-size:10.8pt;
    line-height:1.68;
    color:#111827;
  }

  #jw-print-sheet .jw-print-body > :first-child{
    margin-top:0;
  }

  #jw-print-sheet .jw-print-body h2,
  #jw-print-sheet .jw-print-body h3,
  #jw-print-sheet .jw-print-gallery h2,
  #jw-print-sheet .jw-print-timeline h2,
  #jw-print-sheet .jw-print-bibliography h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size:18pt;
    line-height:1.2;
    font-weight:700;
    color:#111827;
    margin:0 0 5mm;
    page-break-after:avoid;
  }

  #jw-print-sheet .jw-print-body p,
  #jw-print-sheet .jw-print-body li,
  #jw-print-sheet .jw-print-body blockquote,
  #jw-print-sheet .jw-print-timeline li,
  #jw-print-sheet .jw-print-bibliography li{
    orphans:3;
    widows:3;
  }

 #jw-print-sheet .jw-print-gallery,
 #jw-print-sheet .jw-print-timeline,
  #jw-print-sheet .jw-print-bibliography,
  #jw-print-sheet .jw-print-additional,
  #jw-print-sheet .jw-print-credits{
    margin-top:8mm;
  }

  #jw-print-sheet .jw-print-gallery-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:3mm;
  }

  #jw-print-sheet .jw-print-gallery-item{
    margin:0;
    page-break-inside:avoid;
  }

  #jw-print-sheet .jw-print-gallery-item img{
    display:block;
    width:100%;
    height:auto;
    max-height:48mm;
    object-fit:cover;
    border:1px solid #d4d4d8;
  }

  #jw-print-sheet .jw-print-timeline ul{
    margin:0;
    padding:0;
  }

  #jw-print-sheet .jw-print-bibliography ol{
    margin:0;
    padding-left:5mm;
  }

  #jw-print-sheet .jw-print-timeline li{
    list-style:none;
    margin:0 0 4mm;
    padding:0;
    page-break-inside:avoid;
  }

  #jw-print-sheet .jw-print-timeline strong{
    display:block;
    margin-bottom:1mm;
    font-family: Georgia, "Times New Roman", serif;
    font-size:12pt;
    color:#8b5e0a;
  }

  #jw-print-sheet .jw-print-timeline span{
    display:block;
    font-size:10.3pt;
    line-height:1.6;
    color:#374151;
  }

  #jw-print-sheet .jw-print-bibliography li{
    list-style:decimal;
    margin:0 0 3mm;
    padding-left:0;
    font-size:10pt;
    line-height:1.55;
    color:#374151;
  }

  #jw-print-sheet .jw-print-additional{
    padding-top:6mm;
    border-top:1px solid #d4d4d8;
  }

  #jw-print-sheet .jw-print-additional h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size:16pt;
    line-height:1.2;
    font-weight:700;
    color:#111827;
    margin:0 0 4mm;
  }

  #jw-print-sheet .jw-print-additional-content{
    font-size:9.7pt;
    line-height:1.6;
    color:#4b5563;
  }

  #jw-print-sheet .jw-print-credits{
    padding-top:6mm;
    border-top:1px solid #d4d4d8;
    font-size:9.8pt;
    line-height:1.6;
    color:#4b5563;
    page-break-inside:avoid;
  }

  #jw-print-sheet a{
    color:#1A365D;
    text-decoration:none;
  }
}
