:root {
  font-size: 62.5%;
}

.backend a {
  pointer-events: none !important;
}

.block-header-image {
  position: relative;
  height: clamp(440px, 40vw, 580px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.block-header-image::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: #4F1D46;
  background: linear-gradient(360deg, rgba(79, 29, 70, 0.6) 5.77%, rgba(79, 29, 70, 0.54873) 29.81%, rgba(79, 29, 70, 0.36379) 67.79%, rgba(79, 29, 70, 0) 100%);
}
.block-header-image .header-title {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}
.block-header-image .ribbon {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 30%;
}
@media screen and (max-width: 781px) {
  .block-header-image .ribbon {
    width: 50%;
  }
}
.block-header-image .ribbon svg {
  display: block;
  width: 100%;
  height: auto;
}
