@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;
  }
}
.related-pages {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--normal);
  list-style: none;
  margin: var(--wp--preset--spacing--l) 0 0 0;
  padding: 0;
  position: relative;
}
h2 + .related-pages {
  margin-top: var(--wp--preset--spacing--m);
}
.related-pages::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
  pointer-events: none;
}
.related-pages::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%);
  pointer-events: none;
}
.related-pages li {
  margin: 0;
}
.related-pages li a {
  padding: 2.5rem;
  background: rgba(45, 41, 63, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 4px;
  display: block;
  position: relative;
}
.related-pages li a:hover .btn::before, .related-pages li a:active .btn::before, .related-pages li a:focus .btn::before {
  animation: arrow-shoot 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.related-pages li.title {
  flex: 1;
  width: 100%;
  padding: 20px 0 0 0;
}
.related-pages h3 {
  font-size: var(--wp--preset--font-size--font-20);
  margin: 0;
}
.related-pages h4 {
  font-size: var(--wp--preset--font-size--font-20);
  margin: 0;
  color: #fff;
  display: flex;
  align-items: center;
}
.related-pages .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 2.5rem;
  top: 0;
  margin: auto;
}
.related-pages .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;
  z-index: 2;
}
.related-pages .btn:after {
  content: "";
  background-color: #C5964C;
  border-radius: 2px;
  width: 37px;
  height: 37px;
  position: absolute;
}
@media (max-width: 599px) {
  .related-pages li {
    flex: 1 1 100%;
  }
}
@media (min-width: 600px) {
  .related-pages li {
    flex: calc(50% - var(--wp--preset--spacing--normal));
  }
}/*# sourceMappingURL=block-related-pages.css.map */