/**
 * @file
 * Default module styling.
 *
 * This can be disabled in the block settings for this module.
 */
#instafeed img,
#instafeed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption styling */
.post {
  position: relative;
  margin-bottom: 1rem;
}
.post .caption {
  opacity: 0;
  position: absolute;
  width: 100%;
  color: #fff;
  left: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 2;
  -webkit-box-sizing: border-box;
  background-color: rgba(0,0,0,.4);
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  overflow: hidden;
  height: 100%;
  overflow-y: scroll;
  white-space: pre-wrap;
}
.post:hover .caption {
  opacity: 1;
}
