/* ~czarny*/
.article-body__header-lead .embed.embed-photo .embed-thumbnail {
  width: fit-content;
  width: -moz-fit-content;
  background-color: #eee;
  height: calc((var(--article-width-large) - var(--image-width-space-large)) / var(--image-proportion));
  overflow: hidden;
}
@media only screen and (max-width: 1279px) {
  .article-body__header-lead .embed.embed-photo .embed-thumbnail {
    height: calc((620px - var(--image-width-space-desktop)) / var(--image-proportion));
  }
}
@media only screen and (max-width: 999px) {
  .article-body__header-lead .embed.embed-photo .embed-thumbnail {
    height: calc((748px - var(--image-width-space-tablet)) / var(--image-proportion));
  }
}
@media only screen and (max-width: 767px) {
  .article-body__header-lead .embed.embed-photo .embed-thumbnail {
    height: calc(100vw / var(--image-proportion));
  }
}
p.article-lead + aside.embed.embed-photo div.embed-thumbnail {
  width: fit-content;
  width: -moz-fit-content;
  background-color: #eee;
  height: calc((var(--article-width-large) - var(--image-width-space-large)) / var(--image-proportion));
  overflow: hidden;
}
@media only screen and (max-width: 1279px) {
  p.article-lead + aside.embed.embed-photo div.embed-thumbnail {
    height: calc((620px - var(--image-width-space-desktop)) / var(--image-proportion));
  }
}
@media only screen and (max-width: 999px) {
  p.article-lead + aside.embed.embed-photo div.embed-thumbnail {
    height: calc((748px - var(--image-width-space-tablet)) / var(--image-proportion));
  }
}
@media only screen and (max-width: 767px) {
  p.article-lead + aside.embed.embed-photo div.embed-thumbnail {
    height: calc(100vw / var(--image-proportion));
  }
}
