.row--gutter {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}

a {
  color: #727272;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: color 0.5s ease;
}
.ux-info-banner[type=info] a:hover {
  color: #fff;
}
.ux-info-banner[type=error] a:hover {
  color: #ff0201;
}
a:hover {
  color: #131313;
}

.row--gutter {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}

ux-iws-teaser-download-tile {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  height: 100%;
}

.ux-iws-teaser-download-tile {
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(19, 19, 19, 0.08);
  width: 100%;
}
.ux-iws-teaser-download-tile h3,
.ux-iws-teaser-download-tile h4,
.ux-iws-teaser-download-tile h5,
.ux-iws-teaser-download-tile p,
.ux-iws-teaser-download-tile ux-tag {
  margin: 0;
}
.ux-iws-teaser-download-tile__inner {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: stretch;
  flex-flow: row nowrap;
  width: 100%;
  height: 100%;
}
.ux-iws-teaser-download-tile__image {
  box-sizing: border-box;
  display: none;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 auto;
  width: 130px;
  min-height: 180px;
  height: 100%;
  border: 5px solid #fff;
}
.ux-iws-teaser-download-tile__image:empty {
  display: none;
}
.ux-iws-teaser-download-tile__image > *,
.ux-iws-teaser-download-tile__image img {
  flex: 1 1 auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}
@media screen and (min-width: 768px) {
  .ux-iws-teaser-download-tile__image {
    display: flex;
  }
}
.ux-iws-teaser-download-tile__header {
  flex: 0 0 auto;
  margin: 0 0 10px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 30px;
}
.ux-iws-teaser-download-tile__content {
  box-sizing: border-box;
  flex: 1 1 auto;
  padding: 20px 30px;
}
@media screen and (min-width: 768px) {
  .ux-iws-teaser-download-tile__content {
    padding-left: 25px;
    max-width: calc(100% - 130px);
  }
}
.ux-iws-teaser-download-tile__info {
  font-size: 13px;
  color: #727272;
  display: inline-block;
}
.ux-iws-teaser-download-tile__description {
  line-height: 1.3;
  padding-right: 60px;
  hyphens: auto;
}
.ux-iws-teaser-download-tile__description [slot=title] {
  font-size: 1.125rem;
  margin: 5px 0;
}
.ux-iws-teaser-download-tile__description [slot=description] {
  margin: 0;
  color: #727272;
}
.ux-iws-teaser-download-tile__actions {
  flex: 0 0 auto;
  align-self: flex-end;
  padding: 0 30px 30px 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

@supports (display: grid) {
  .ux-iws-teaser-download-tile-grid {
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 100%;
  }
  @media screen and (min-width: 1200px) {
    .ux-iws-teaser-download-tile-grid {
      grid-template-columns: calc(50% - 15px) calc(50% - 15px);
    }
  }
}
@supports not (display: grid) {
  .ux-iws-teaser-download-tile-grid {
    display: flex;
    flex-flow: row wrap;
    margin: -15px;
  }
  .ux-iws-teaser-download-tile-grid ux-iws-teaser-download-tile {
    flex: 1 0 auto;
    padding: 15px;
  }
}