/* =====================================================
   PAPÍR / NOTOVÝ PODKLAD
===================================================== */

.paper {
  position: relative;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 22px,
      var(--line-faint) 23px
    ),
    var(--paper-2);

  padding: 1.5rem 2rem;
  border-radius: 2px;
  box-shadow:
    0 4px 12px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(0,0,0,.04);
}

.paper::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
  pointer-events: none;
}

.paper-image {
  display: block;
  width: 100%;
  height: auto;

  filter:
    grayscale(100%)
    contrast(1.05)
    brightness(1.05)
    sepia(10%);

  background: var(--paper);
  padding: .4rem;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

.osoba-foto {
  float:right;
  width:200px;
  margin:0 0 1.5rem 2rem;
}

.soubor-foto {
    float: right;
    width: 400px;
    margin: 0 0 1.5rem 2.5rem;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

  .osoba-foto {
    float: none;
    width: 100%;
    max-width: 240px;
    margin: 0 auto 1.5rem auto;
  }

  .osoba-foto img {
    margin: 0 auto;
    box-shadow: 0 3px 6px rgba(0,0,0,.2);
  }
    
  .soubor-foto {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem 0;
  }
}

/* =====================================
   HLEDÁNÍ
===================================== */

.search-group {
    margin-bottom: 3rem;
}

.search-group h2 {
    margin-bottom: 1rem;
}

.search-results {
    margin: 0;
    padding-left: 1.25rem;
}

.search-results li {
    margin-bottom: .35rem;
}

.search-meta {
    margin-top: .15rem;

    font-size: .9rem;
    color: var(--ink-light);

    font-family: "IBM Plex Mono", monospace;
}