/* UIowa Paragraph Styles */
.paragraph {
  margin-bottom: 1rem;
}
.paragraph--type--section {
  position: relative;
  display: flex;
  overflow: hidden;
  padding-top: 1rem;
  margin-bottom: 0;
}
.paragraph--type--section.has-section-image {
  min-height: 600px;
  background-color: transparent !important;
}
.paragraph--type--section.has-section-image .section-content {
  min-height: 600px;
}
.paragraph--type--section > picture/*,
.paragraph--type--section > .contextual-region > picture*/ {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@supports (object-fit: cover) {
  .paragraph--type--section > picture > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* Overrides for IE10 & IE11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .paragraph--type--section > picture > img {
    width: auto;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
