
/*
 * image handling
 */
 
figcaption {
   display: none; /* pandoc wraps img alt text in figure/figcaption */
}

/* 
 * images with [optional] credits - height must be set on the image
 */

.photo-container-right {
  max-width: 30%;
  float: right;
  margin-left: 6px;
  text-align: right;
}

.photo-container-right img {
  height: auto;
  max-width: 100%;
}

.photo-container-left {
  max-width: 35%;
  float: left;
  margin-right: 6px;
  text-align: left;
}

.photo-container-left img {
  height: auto;
  max-width: 100%; 
}

credit::before {
  content: "credit: ©";
}

credit {
  font-size: 0.6rem;
  color: #666;
  display: block;
}

img.landscape {
  width: 100%;
  height: auto;
  object-fit: scale-down;
 }
