.teasertile {
  overflow: hidden;
  filter: blur(0.000001px);
  position: relative;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  cursor: pointer;
  min-height: 340px;
  width: var(--baseWidth);
  max-width: var(--maxWidth);
  margin: 0 auto;
  margin-bottom: 15px;
  clip-path: var(--imageEdgeClipPath);
}
.teasertile.reduced-height {
  min-height: 233px;
}
.teasertile > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.teasertile > a:before {
  content: none !important;
  display: none !important;
}
.teasertile:hover, .teasertile:focus {
  opacity: 1;
}
.teasertile:hover:after, .teasertile:focus:after {
  height: 100%;
}
.teasertile:hover .text, .teasertile:focus .text {
  min-height: 100%;
  max-height: 100vh;
}
.teasertile:hover .text .text_inner, .teasertile:focus .text .text_inner {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.teasertile:hover .text h2:after, .teasertile:hover .text h3:after, .teasertile:hover .text h4:after, .teasertile:hover .text h5:after, .teasertile:hover .text h6:after, .teasertile:focus .text h2:after, .teasertile:focus .text h3:after, .teasertile:focus .text h4:after, .teasertile:focus .text h5:after, .teasertile:focus .text h6:after {
  transform: translate(200%, -50%);
  opacity: 0;
}
.teasertile:hover .image:before, .teasertile:focus .image:before {
  transform: translateX(-50%);
  opacity: 1;
}
.teasertile .text {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: auto;
  transform: none;
  width: 100%;
  background: rgba(0, 68, 148, 0.8);
  padding: 10px 15px;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: 0.4s ease;
  max-height: 100px;
  min-height: 1px;
  color: #fff !important;
}
.teasertile .text .headline {
  position: relative;
  z-index: 2;
}
.teasertile .text .text_inner {
  margin-top: 10px;
  position: absolute;
  font-size: 0.85em;
  line-height: 150%;
  transition: 0.4s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  max-width: calc(100% - 30px);
  z-index: 2;
}
.teasertile .text :is(h2, h3, h4, h5, h6, p, a) {
  color: #fff !important;
}
.teasertile .text h5 {
  font-size: 17px;
}
.teasertile .text :is(h2, h3, h4, h5, h6) {
  padding: 0;
  display: block;
  padding-right: 10px;
  box-sizing: border-box;
  position: relative;
  font-weight: 400;
}
.teasertile .text :is(h2, h3, h4, h5, h6):after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url("../../img/arrow-right-white.svg") no-repeat center center / 100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 1;
  transition: 0.4s ease;
  z-index: 1;
}
.teasertile .image {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.teasertile .image:before {
  content: "";
  display: block;
  width: 36px;
  height: 64px;
  background: url("../../img/arrow-right-white-sleak.svg") no-repeat center center / 100% auto;
  position: absolute;
  top: auto;
  right: auto;
  box-shadow: none;
  bottom: 20%;
  left: 50%;
  transform: translateX(-100px);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 3;
}
.teasertile .image img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 450px) {
  .teasertile:has(.text_inner):hover .image:before {
    opacity: 0.3;
  }
}
.wp-block-columns .teasertile, .px-frame-layout .teasertile, .accordion-content .teasertile, .tab_wrapper .teasertile {
  width: 100%;
}
