#larum-about-page {
  --larum-about-gold: #9a7d00;
  --larum-about-text: #2b2b2b;
  --larum-about-muted: #666666;
  --larum-about-soft: #f7f7f5;

  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--larum-about-text);
  background: #ffffff;
  font-family: inherit;
}

#larum-about-page *,
#larum-about-page *::before,
#larum-about-page *::after {
  box-sizing: border-box;
}

#larum-about-page .larum-about-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

#larum-about-page h1,
#larum-about-page h2,
#larum-about-page p,
#larum-about-page figure {
  margin-top: 0;
}

#larum-about-page p {
  margin-bottom: 12px;
  color: var(--larum-about-text);
  font-size: 16px;
  line-height: 1.58;
}

#larum-about-page p:last-child {
  margin-bottom: 0;
}

/* SEKCE */

#larum-about-page .larum-about-section {
  margin: 0;
  padding: 30px 0;
}

#larum-about-page .larum-about-section-alt {
  background: var(--larum-about-soft);
}

/* NADPISY */

#larum-about-page .larum-about-intro h1 {
  max-width: 920px;
  margin-bottom: 4px;
  color: var(--larum-about-gold);
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.08;
  font-weight: 400;
}

#larum-about-page .larum-about-section-heading {
  margin-bottom: 16px;
}

#larum-about-page .larum-about-section-heading h2,
#larum-about-page .larum-about-person-text h2 {
  margin-bottom: 4px;
  color: var(--larum-about-gold);
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.12;
  font-weight: 400;
}

#larum-about-page .larum-about-subheading {
  margin-bottom: 16px;
  color: var(--larum-about-muted);
  font-size: 16px;
}

/* OBSAH */

#larum-about-page .larum-about-content {
  max-width: 980px;
}

/* PROFILY */

#larum-about-page .larum-about-person {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .8fr);
  gap: 28px;
  align-items: center;
}

#larum-about-page .larum-about-person-reverse {
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.55fr);
}

#larum-about-page .larum-about-person-text {
  min-width: 0;
}

/* FOTOGRAFIE */

#larum-about-page .larum-about-photo {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0;
  justify-self: center;
}

#larum-about-page .larum-about-photo-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #ececec;
  cursor: zoom-in;
}

#larum-about-page .larum-about-photo-link::after {
  content: "↗";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, .72);
  font-size: 16px;
  line-height: 1;
}

#larum-about-page .larum-about-photo img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform .2s ease;
}

#larum-about-page .larum-about-photo-link:hover img {
  transform: scale(1.02);
}

#larum-about-page .larum-about-photo-close {
  display: none;
}

/* ZVĚTŠENÍ FOTOGRAFIE */

#larum-about-page .larum-about-photo:target {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px;
  background: rgba(0, 0, 0, .88);
}

#larum-about-page .larum-about-photo:target .larum-about-photo-link {
  width: auto;
  max-width: 94vw;
  max-height: 92vh;
  overflow: visible;
  background: transparent;
  cursor: default;
}

#larum-about-page .larum-about-photo:target .larum-about-photo-link::after {
  display: none;
}

#larum-about-page .larum-about-photo:target img {
  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  transform: none;
}

#larum-about-page .larum-about-photo:target .larum-about-photo-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, .72);
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
}

/* TABLET */

@media (max-width: 900px) {
  #larum-about-page .larum-about-person,
  #larum-about-page .larum-about-person-reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  #larum-about-page .larum-about-person-reverse .larum-about-photo {
    order: 2;
  }

  #larum-about-page .larum-about-person-reverse .larum-about-person-text {
    order: 1;
  }

  #larum-about-page .larum-about-photo {
    max-width: 420px;
    justify-self: start;
  }
}

/* MOBIL */

@media (max-width: 600px) {
  #larum-about-page .larum-about-container {
    width: calc(100% - 28px);
  }

  #larum-about-page .larum-about-section {
    padding: 24px 0;
  }

  #larum-about-page .larum-about-intro h1 {
    font-size: 34px;
  }

  #larum-about-page .larum-about-section-heading h2,
  #larum-about-page .larum-about-person-text h2 {
    font-size: 29px;
  }

  #larum-about-page p {
    font-size: 15px;
  }

  #larum-about-page .larum-about-photo img {
    height: auto;
  }

  #larum-about-page .larum-about-photo:target {
    padding: 14px;
  }
}