.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;
}

:host {
  display: flex;
  box-sizing: border-box;
  transition: all 300ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :host {
    transition: none !important;
  }
}
:host * {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  :host * {
    transition: none !important;
  }
}

ux-iws-link-wrapper {
  width: 100%;
  display: flex;
}

.tile-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 799px) {
  .tile-container {
    min-height: 300px;
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(279deg, rgba(0, 80, 116, 0) 7.97%, #005074 99.51%);
  transition: opacity 300ms ease-in-out;
  pointer-events: none;
}

:host(:hover) .gradient-overlay {
  opacity: 0;
}

.content {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 799px) {
  .content {
    padding: 20px;
  }
}

.text-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title-container ::slotted([slot=title]) {
  font-family: "Frutiger-Light", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
@media (max-width: 1024px) {
  .title-container ::slotted([slot=title]) {
    font-size: 20px;
  }
}
@media (max-width: 799px) {
  .title-container ::slotted([slot=title]) {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .title-container ::slotted([slot=title]) {
    font-size: 16px;
  }
}

.copy-container ::slotted([slot=copy]) {
  font-family: "Frutiger-Light", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  max-width: 450px;
}
@media (max-width: 1024px) {
  .copy-container ::slotted([slot=copy]) {
    font-size: 18px;
  }
}
@media (max-width: 799px) {
  .copy-container ::slotted([slot=copy]) {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .copy-container ::slotted([slot=copy]) {
    font-size: 14px;
  }
}

.link-container {
  margin-top: auto;
  padding-top: 20px;
}

:host(.is-wide) .tile-container {
  min-height: 500px;
}
:host(.is-wide) .copy-container ::slotted([slot=copy]) {
  max-width: 660px;
}
@media (max-width: 799px) {
  :host(.is-wide) .tile-container {
    min-height: 400px;
  }
}