@keyframes arrow-shoot {
  0% {
    background-position: center;
    opacity: 1;
  }
  44% {
    background-position: 200% center;
    opacity: 0;
  }
  45% {
    background-position: -200% center;
    opacity: 0;
  }
  100% {
    background-position: center;
    opacity: 1;
  }
}
.image-cta {
  display: block;
  text-decoration: none;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 4px 4px 4px 50px;
}
.image-cta__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: transform 0.25s ease-in-out;
}
.image-cta__content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--wp--preset--spacing--normal);
  background: linear-gradient(175deg, rgba(17, 20, 23, 0) 44.85%, rgba(17, 20, 23, 0.75) 84.31%);
  position: relative;
  z-index: 3;
  height: 100%;
  border-radius: 4px 4px 4px 50px;
}
.image-cta h2 {
  font-size: var(--wp--preset--font-size--font-28);
  margin-bottom: 0.2ch;
  color: #fff;
}
.image-cta p {
  color: #fff;
}
.image-cta .btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-16);
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  color: #111417;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-cta .btn:before {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="18" height="15" viewBox="0 0 18 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.1345 14.1003L16.9705 7.26433L10.1305 0.424333M16.9705 7.26433H-5.20173e-05" stroke="%23F8F6F2" stroke-width="1.2" stroke-dasharray="40" stroke-dashoffset="0"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  width: 37px;
  height: 37px;
  display: block;
  margin-right: 1.4rem;
  z-index: 2;
}
.image-cta .btn:after {
  content: "";
  background-color: #C5964C;
  border-radius: 2px;
  width: 37px;
  height: 37px;
  position: absolute;
}
.image-cta .btn:hover::before, .image-cta .btn:active::before, .image-cta .btn:focus::before {
  animation: arrow-shoot 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.image-cta .btn {
  color: white;
  padding-bottom: 1rem;
}
.image-cta:hover .image-cta__image, .image-cta:active .image-cta__image, .image-cta:focus .image-cta__image {
  transform: scale(1.025);
}
.image-cta:hover .btn::before, .image-cta:active .btn::before, .image-cta:focus .btn::before {
  animation: arrow-shoot 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}/*# sourceMappingURL=block-image-cta.css.map */